/* ===================================
   Black & Gold Formal Awards Theme
   1st Cheerleading Popularity Awards
   =================================== */

:root {
    --base-pure: #050505;
    --base-rich: #0B0B0B;
    --base-warm: #0F0E0C;
    --gold-primary: #C9A24A;
    --gold-soft: #D7B76B;
    --gold-dim: rgba(201,162,74,0.75);
    --rose: #E94B8A;
    --panel-surface: rgba(255,255,255,0.03);
    --panel-border: rgba(201,162,74,0.22);
    --divider: rgba(201,162,74,0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: var(--base-pure);
}

/* Focus styles */
*:focus-visible {
    outline: 1px solid var(--gold-primary);
    outline-offset: 2px;
}

/* ===================================
   Navigation
   =================================== */

#navbar {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,162,74,0.1);
}

#navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    color: var(--gold-dim);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link.active {
    color: var(--gold-primary);
}

.nav-link-external {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    color: rgba(201,162,74,0.5);
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.nav-link-external:hover {
    color: var(--gold-primary);
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: var(--divider);
    margin: 0 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gold-dim);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold-primary);
}

.account-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--gold-dim);
    font-size: 0.8rem;
    border: 1px solid var(--panel-border);
    border-radius: 4px;
    transition: all 0.2s ease;
    background: transparent;
    cursor: pointer;
}

.account-btn:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    background: var(--base-pure);
    position: relative;
    overflow: hidden;
}

.curtain-bg {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(201,162,74,0.02) 60px,
        rgba(201,162,74,0.02) 61px
    );
    pointer-events: none;
}

.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--base-pure) 70%);
    pointer-events: none;
}

.hero-frame {
    position: relative;
}

.frame-outer {
    border: 1px solid var(--panel-border);
    background: var(--panel-surface);
    position: relative;
}

.frame-inner {
    border: 1px solid rgba(201,162,74,0.1);
    margin: 8px;
    box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
}

.corner-accent {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--gold-primary);
    border-style: solid;
    border-width: 0;
}

.corner-tl { top: -1px; left: -1px; border-top-width: 1px; border-left-width: 1px; }
.corner-tr { top: -1px; right: -1px; border-top-width: 1px; border-right-width: 1px; }
.corner-bl { bottom: -1px; left: -1px; border-bottom-width: 1px; border-left-width: 1px; }
.corner-br { bottom: -1px; right: -1px; border-bottom-width: 1px; border-right-width: 1px; }

.trophy-icon-container {
    display: inline-block;
}

/* ===================================
   Buttons
   =================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--base-pure);
    font-weight: 500;
    border: 1px solid var(--gold-primary);
    background: var(--gold-primary);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--gold-soft);
    border-color: var(--gold-soft);
    box-shadow: 0 0 20px rgba(201,162,74,0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gold-primary);
    font-weight: 500;
    border: 1px solid var(--gold-primary);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--base-pure);
}

.btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===================================
   Gold Divider
   =================================== */

.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
}

/* ===================================
   Section Titles
   =================================== */

.section-title {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    font-size: 1.75rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.section-subtitle {
    font-family: 'Cinzel', serif;
    color: rgba(201,162,74,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 0.5rem;
}

/* ===================================
   Timeline Section
   =================================== */

.timeline-section {
    background: linear-gradient(180deg, var(--base-pure) 0%, var(--base-warm) 50%, var(--base-pure) 100%);
}

.timeline-band {
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}

.timeline-step {
    text-align: center;
    padding: 1.5rem;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold-primary);
    font-size: 1.25rem;
    border: 1px solid var(--panel-border);
}

.step-title {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-date {
    color: var(--gold-dim);
    font-size: 0.8rem;
}

/* ===================================
   Announcement Cards
   =================================== */

.announcement-card {
    display: block;
    padding: 1.5rem;
    background: var(--panel-surface);
    border: 1px solid var(--panel-border);
    transition: all 0.2s ease;
}

.announcement-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 4px 20px rgba(201,162,74,0.1);
    transform: translateY(-2px);
}

.card-date {
    font-size: 0.75rem;
    color: rgba(201,162,74,0.5);
    margin-bottom: 0.75rem;
}

.card-title {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.announcement-card:hover .card-title {
    color: var(--gold-soft);
}

.card-excerpt {
    color: var(--gold-dim);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-link {
    color: var(--gold-primary);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
}

/* ===================================
   Sponsors
   =================================== */

.sponsors-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.sponsor-logo {
    padding: 1rem 2rem;
    color: rgba(201,162,74,0.3);
    font-size: 0.875rem;
    border: 1px solid rgba(201,162,74,0.1);
    transition: all 0.2s ease;
}

.sponsor-logo:hover {
    color: var(--gold-dim);
    border-color: var(--panel-border);
}

/* ===================================
   FAQ
   =================================== */

.faq-list {
    border-top: 1px solid var(--divider);
}

.faq-item {
    border-bottom: 1px solid var(--divider);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    text-align: left;
    color: var(--gold-dim);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    color: var(--gold-primary);
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1.25rem;
    color: rgba(201,162,74,0.6);
    font-size: 0.875rem;
    line-height: 1.7;
}

.faq-answer.show {
    display: block;
}

/* ===================================
   Footer
   =================================== */

.footer-social {
    color: rgba(201,162,74,0.4);
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-social:hover {
    color: var(--gold-primary);
}

/* ===================================
   Page Header
   =================================== */

.page-header {
    background: var(--base-rich);
    border-bottom: 1px solid var(--divider);
}

/* ===================================
   Filters
   =================================== */

.filter-select,
.filter-input {
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    background: var(--panel-surface);
    border: 1px solid var(--panel-border);
    color: var(--gold-dim);
    font-size: 0.875rem;
    min-width: 200px;
    transition: all 0.2s ease;
    appearance: none;
}

.filter-input {
    padding-left: 2.5rem;
    padding-right: 1rem;
}

.filter-select:focus,
.filter-input:focus {
    border-color: var(--gold-primary);
    outline: none;
}

.filter-select option {
    background: var(--base-rich);
    color: var(--gold-dim);
}

.filter-input::placeholder {
    color: rgba(201,162,74,0.4);
}

/* ===================================
   Nominee Cards
   =================================== */

.nominee-card {
    background: var(--panel-surface);
    border: 1px solid var(--panel-border);
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.nominee-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201,162,74,0.1);
}

.nominee-photo {
    aspect-ratio: 1;
    background: rgba(201,162,74,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--panel-border);
}

.nominee-info {
    padding: 1.25rem;
}

/* ===================================
   Modal
   =================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    position: relative;
    background: var(--base-rich);
    border: 1px solid var(--panel-border);
    padding: 2rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dim);
    border: 1px solid var(--panel-border);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--panel-border);
    color: var(--gold-dim);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: var(--gold-primary);
    color: var(--base-pure);
    border-color: var(--gold-primary);
}

/* ===================================
   Vote Page
   =================================== */

.voting-main-card {
    padding: 3rem 2rem;
    background: var(--panel-surface);
    border: 1px solid var(--panel-border);
}

.voting-rules-card {
    padding: 2rem;
    background: var(--panel-surface);
    border: 1px solid var(--panel-border);
}

.rule-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--panel-border);
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.coming-soon-card {
    padding: 2rem;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(201,162,74,0.1);
    opacity: 0.7;
}

.coming-soon-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(201,162,74,0.08);
}

.coming-soon-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,162,74,0.3);
    font-size: 1.25rem;
    border: 1px solid rgba(201,162,74,0.15);
}

/* ===================================
   Status Badges
   =================================== */

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.status-coming {
    color: var(--gold-dim);
    border: 1px solid var(--panel-border);
}

.status-live {
    color: var(--rose);
    border: 1px solid var(--rose);
    animation: pulse-live 2s infinite;
}

.status-ended {
    color: rgba(201,162,74,0.5);
    border: 1px solid rgba(201,162,74,0.2);
}

@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 0 rgba(233,75,138,0); }
    50% { box-shadow: 0 0 8px rgba(233,75,138,0.3); }
}

/* ===================================
   Winners Page
   =================================== */

.category-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: rgba(201,162,74,0.5);
    font-size: 0.875rem;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.category-nav-item:hover {
    color: var(--gold-dim);
}

.category-nav-item.active {
    color: var(--gold-primary);
    border-left-color: var(--gold-primary);
    background: rgba(201,162,74,0.05);
}

.category-nav-item i {
    width: 1.25rem;
    text-align: center;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(201,162,74,0.6);
    font-size: 0.75rem;
    white-space: nowrap;
    border: 1px solid rgba(201,162,74,0.2);
    transition: all 0.2s ease;
}

.category-pill:hover {
    color: var(--gold-dim);
    border-color: var(--panel-border);
}

.category-pill.active {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.winner-section {
    scroll-margin-top: 140px;
}

.winner-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--divider);
}

.winner-section-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1rem;
    border: 1px solid var(--panel-border);
}

.winner-card-highlight {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(201,162,74,0.03);
    border: 1px solid var(--gold-primary);
}

@media (min-width: 640px) {
    .winner-card-highlight {
        flex-direction: row;
    }
}

.winner-photo-frame {
    width: 8rem;
    height: 8rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--base-pure);
    border: 1px solid var(--panel-border);
}

.winner-details {
    flex: 1;
}

.winner-badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--base-pure);
    background: var(--gold-primary);
}

.nominees-accordion {
    margin-top: 1rem;
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,162,74,0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.accordion-trigger:hover {
    background: rgba(255,255,255,0.03);
}

.accordion-trigger i {
    transition: transform 0.2s ease;
}

.accordion-content {
    display: none;
    padding: 0.5rem;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(201,162,74,0.1);
    border-top: none;
}

.accordion-content.show {
    display: block;
}

.nominee-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    color: var(--gold-dim);
    font-size: 0.875rem;
}

.nominee-list-item:hover {
    background: rgba(255,255,255,0.02);
}

/* ===================================
   News Articles
   =================================== */

.news-article {
    padding: 2rem;
    background: var(--panel-surface);
    border: 1px solid var(--panel-border);
    scroll-margin-top: 120px;
}

.news-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-date {
    font-size: 0.8rem;
    color: rgba(201,162,74,0.5);
}

.news-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.tag-important { color: var(--gold-primary); border: 1px solid var(--gold-primary); }
.tag-tickets { color: var(--gold-soft); border: 1px solid rgba(215,183,107,0.5); }
.tag-rules { color: var(--gold-dim); border: 1px solid var(--panel-border); }
.tag-merch { color: var(--gold-soft); border: 1px solid rgba(215,183,107,0.5); }
.tag-partner { color: var(--gold-dim); border: 1px solid var(--panel-border); }
.tag-security { color: var(--rose); border: 1px solid rgba(233,75,138,0.5); }

.news-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.news-content {
    color: var(--gold-dim);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.news-content h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.news-content p {
    margin-bottom: 1rem;
}

.news-content ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 1rem;
}

.news-content li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.news-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
}

.news-content a {
    color: var(--gold-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.news-content a:hover {
    border-bottom-color: var(--gold-primary);
}

/* ===================================
   Utilities
   =================================== */

.rotate-180 {
    transform: rotate(180deg);
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* ===================================
   Rules Page
   =================================== */

.rules-card {
    background: var(--panel-surface);
    border: 1px solid var(--panel-border);
}

.rules-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--divider);
}

.rules-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.125rem;
    color: var(--gold-primary);
    letter-spacing: 0.05em;
}

.rules-card-content {
    padding: 2rem;
}

.info-block {
    padding: 1.25rem;
    background: rgba(201,162,74,0.03);
    border: 1px solid rgba(201,162,74,0.1);
}

.info-label {
    font-size: 0.75rem;
    color: rgba(201,162,74,0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.125rem;
    color: var(--gold-primary);
    font-weight: 500;
}

.info-note {
    font-size: 0.8rem;
    color: rgba(201,162,74,0.5);
    margin-top: 0.25rem;
}

.rules-list {
    list-style: none;
}

.rules-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(201,162,74,0.08);
    color: var(--gold-dim);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li i {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.rules-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(201,162,74,0.05);
    border-left: 2px solid var(--gold-primary);
}

.rules-note i {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.rules-note p {
    font-size: 0.875rem;
    color: rgba(201,162,74,0.8);
    line-height: 1.6;
    margin: 0;
}

.rules-note-warning {
    background: rgba(233,75,138,0.05);
    border-left-color: var(--rose);
}

.rules-note-warning p {
    color: rgba(233,75,138,0.9);
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.award-item {
    padding: 1.5rem;
    background: rgba(201,162,74,0.03);
    border: 1px solid rgba(201,162,74,0.12);
    text-align: center;
    transition: all 0.2s ease;
}

.award-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.award-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.25rem;
    border: 1px solid var(--panel-border);
}

.award-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9375rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.award-desc {
    font-size: 0.8rem;
    color: rgba(201,162,74,0.6);
    line-height: 1.5;
}

/* Scoring Breakdown */
.scoring-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .scoring-breakdown {
        flex-direction: row;
        align-items: stretch;
    }
}

.score-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(201,162,74,0.03);
    border: 1px solid rgba(201,162,74,0.12);
}

.score-percent {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold-primary);
    font-weight: 600;
    line-height: 1;
}

.score-detail h3 {
    font-size: 1rem;
    color: var(--gold-primary);
    margin-bottom: 0.25rem;
}

.score-detail p {
    font-size: 0.8rem;
    color: rgba(201,162,74,0.6);
    margin: 0;
    line-height: 1.5;
}

.score-divider {
    width: 1px;
    background: var(--divider);
    display: none;
}

@media (min-width: 640px) {
    .score-divider {
        display: block;
    }
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    width: 1.25rem;
    text-align: center;
}

.contact-item a {
    color: var(--gold-dim);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--gold-primary);
}

/* Registration Steps */
.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reg-step {
    display: flex;
    gap: 1.25rem;
}

.reg-step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-primary);
    color: var(--base-pure);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
}

.reg-step-content {
    flex: 1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201,162,74,0.1);
}

.reg-step:last-child .reg-step-content {
    border-bottom: none;
    padding-bottom: 0;
}

.reg-step-content h3 {
    font-size: 1rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.reg-step-content p {
    font-size: 0.9375rem;
    color: var(--gold-dim);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.reg-step-content a {
    color: var(--gold-primary);
    transition: color 0.2s ease;
}

.reg-step-content a:hover {
    color: var(--gold-soft);
}

.bank-info {
    background: rgba(201,162,74,0.05);
    border: 1px solid rgba(201,162,74,0.15);
    padding: 1rem 1.25rem;
    margin-top: 0.75rem;
}

.bank-info p {
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
}

.bank-info p:last-child {
    margin-bottom: 0;
}

.bank-label {
    color: rgba(201,162,74,0.6);
}

.reg-info-list {
    list-style: none;
    margin-top: 0.75rem;
    padding-left: 0;
}

.reg-info-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gold-dim);
}

.reg-info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: var(--gold-primary);
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 640px) {
    .news-article {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .voting-main-card {
        padding: 2rem 1.5rem;
    }

    .frame-inner {
        padding: 2rem 1.5rem !important;
    }
}
