/* =============================================
   EXTRAORDINARY AFRICAN — MAIN STYLESHEET
   ============================================= */

:root {
    --primary:   #4A1628;
    --primary-light: #6b2a3e;
    --gold:      #E8A020;
    --gold-light:#F5C060;
    --white:     #ffffff;
    --off-white: #f5f0eb;
    --light-bg:  #f9f6f2;
    --text-dark: #2c1a24;
    --text-mid:  #5a3a48;
    --text-light:#8a6a74;
    --border:    #e0d0d8;
    --shadow:    0 4px 24px rgba(74,22,40,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    top: 0 !important;
}

a { text-decoration: none; color: inherit; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 64px;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-left { display: flex; align-items: center; }

.logo { display: flex; align-items: center; gap: 12px; }

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 6px;
    cursor: pointer;
}

.logo-text .agenda {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo-text .a-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 900;
    vertical-align: super;
}

.logo-text .year {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.logo-text .tagline {
    font-size: 0.65rem;
    color: var(--text-mid);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    margin: 0 4px;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}


.header-right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    padding: 8px;
}

.search-bar {
    display: none;
    align-items: center;
    background: var(--off-white);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.search-bar.active { display: flex; }

.search-bar input {
    border: none;
    background: none;
    padding: 8px 12px;
    font-size: 0.9rem;
    outline: none;
    width: 200px;
    border-radius: 6px 0 0 6px;
}

.search-bar button {
    background: var(--gold);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: white;
    border-radius: 0 5px 5px 0;
}

.search-results {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 250;
    display: none;
    width: min(380px, calc(100vw - 24px));
    max-height: min(420px, calc(100vh - 88px));
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(44, 26, 36, 0.18);
}

.search-results.active {
    display: block;
}

.search-result,
.search-empty {
    width: 100%;
    display: block;
    padding: 12px 14px;
    border: none;
    border-bottom: 1px solid rgba(224, 208, 216, 0.72);
    background: var(--white);
    color: var(--text-dark);
    text-align: left;
    font: inherit;
}

.search-result {
    cursor: pointer;
}

.search-result:hover,
.search-result:focus {
    background: var(--light-bg);
    outline: none;
}

.search-result:last-child,
.search-empty:last-child {
    border-bottom: none;
}

.search-result strong {
    display: block;
    color: var(--primary);
    font-size: 0.92rem;
    line-height: 1.25;
}

.search-result span {
    display: block;
    margin-top: 4px;
    color: var(--text-mid);
    font-size: 0.78rem;
    line-height: 1.35;
}

.search-result mark {
    background: rgba(232, 160, 32, 0.28);
    color: inherit;
    padding: 0 2px;
    border-radius: 3px;
}

.search-empty {
    color: var(--text-mid);
    font-size: 0.84rem;
}

.search-hit-highlight {
    animation: searchHitPulse 1.4s ease;
}

@keyframes searchHitPulse {
    0% { color: var(--primary); text-shadow: 0 0 0 rgba(232, 160, 32, 0); }
    35% { color: var(--gold); text-shadow: 0 0 18px rgba(232, 160, 32, 0.34); }
    100% { color: var(--primary); text-shadow: 0 0 0 rgba(232, 160, 32, 0); }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: #050305;
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 56px 60px;
    flex: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5,3,5,0.86) 0%, rgba(5,3,5,0.56) 36%, rgba(5,3,5,0.18) 72%, rgba(5,3,5,0.28) 100%),
        linear-gradient(180deg, rgba(5,3,5,0.20) 0%, rgba(5,3,5,0.34) 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1180px;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
    max-width: 520px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.hero-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

.hero-text ul li {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--white);
}

.hero-text ul li .highlight {
    color: var(--gold);
}

.hero-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-language-control {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 24px;
    z-index: 760;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    max-width: calc(100vw - 40px);
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 8px;
    background: rgba(5,3,5,0.58);
    box-shadow: 0 12px 36px rgba(0,0,0,0.26);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    direction: ltr;
    transform: translateX(-50%);
    unicode-bidi: isolate;
}

.language-segment {
    display: flex;
    align-items: center;
    gap: 4px;
}

.language-option,
.hero-sound-toggle {
    border: none;
    border-radius: 6px;
    background: transparent;
    color: rgba(255,255,255,0.82);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: background 0.18s, color 0.18s, transform 0.18s;
}

.language-option {
    min-width: 86px;
    padding: 10px 12px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.language-option:hover,
.language-option:focus,
.hero-sound-toggle:hover,
.hero-sound-toggle:focus {
    background: rgba(255,255,255,0.14);
    color: var(--white);
    outline: none;
}

.language-option.is-active {
    background: var(--gold);
    color: var(--primary);
}

.hero-sound-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.98rem;
}

.hero-sound-toggle.is-on {
    background: rgba(232,160,32,0.22);
    color: var(--gold);
}

body.is-inner-page .hero-sound-toggle {
    display: none;
}

.translation-engine {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

body > .skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-menu-frame,
.goog-te-gadget-icon {
    display: none !important;
}

#goog-gt-tt {
    display: none !important;
}

.btn-apply {
    display: inline-block;
    background: var(--gold);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.btn-apply:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* =============================================
   INNER LAYOUT (Sidebar + Content)
   ============================================= */
.inner-layout {
    display: flex;
    flex: 1;
    min-height: calc(100vh - 64px - 200px);
}

/* Sidebar */
.sidebar {
    width: 310px;
    min-width: 260px;
    flex-shrink: 0;
    background: var(--white);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    position: relative;
}

.sidebar-scroll-up,
.sidebar-scroll-down {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 6px;
    transition: color 0.2s;
}

.sidebar-scroll-up:hover,
.sidebar-scroll-down:hover { color: var(--gold); }

.sidebar-nav { flex: 1; overflow-y: auto; }

.sidebar-nav ul { list-style: none; }

.sidebar-nav ul li {
    border-bottom: 1px solid var(--border);
}

.sidebar-nav ul li:first-child {
    border-top: 1px solid var(--border);
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
}

.nav-link .arrow {
    color: var(--text-light);
    font-size: 0.8rem;
    transition: color 0.2s, transform 0.2s;
}

.nav-home {
    color: var(--primary);
    font-weight: 700;
    background: var(--off-white);
    border-bottom: 2px solid var(--gold) !important;
}

.nav-home .arrow { color: var(--primary); }

.nav-home:hover {
    color: var(--gold) !important;
    background: rgba(232,160,32,0.08) !important;
}

.nav-home:hover .arrow { color: var(--gold) !important; transform: none !important; }

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: var(--off-white);
}

.nav-link.active .arrow,
.nav-link:hover .arrow {
    color: var(--gold);
    transform: translateX(4px);
}

/* Main content */
.main-content {
    flex: 1;
    padding: 40px 48px;
    overflow-y: auto;
    background: var(--white);
}

/* =============================================
   SECTION TYPOGRAPHY
   ============================================= */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.winners-title {
    font-size: 3.5rem;
}

.section-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    margin-top: 8px;
}

.section-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.about-body p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text-dark);
    text-align: justify;
    margin-bottom: 14px;
}

.highlight-text { background: rgba(232,160,32,0.15); padding: 0 3px; }

/* =============================================
   ABOUT — MISSION CARDS
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.about-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.about-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.about-card-icon {
    width: 52px; height: 52px;
    background: var(--primary);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}

.about-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* =============================================
   CATEGORIES CAROUSEL
   ============================================= */
.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    position: relative;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 0;
}

.carousel-slide {
    min-width: 33.333%;
    padding: 0 10px;
    flex-shrink: 0;
}

.category-card {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.category-card.pink    { background: linear-gradient(135deg, #e8a4c8 0%, #c4567c 100%); }
.category-card.teal    { background: linear-gradient(135deg, #2a7a8c 0%, #1a5a6c 100%); }
.category-card.purple  { background: linear-gradient(135deg, #7a4a9c 0%, #5a2a7c 100%); }
.category-card.orange  { background: linear-gradient(135deg, #e88a20 0%, #c46010 100%); }
.category-card.green   { background: linear-gradient(135deg, #4a9c5a 0%, #2a7c3a 100%); }
.category-card.blue    { background: linear-gradient(135deg, #4a6aac 0%, #2a4a8c 100%); }
.category-card.maroon  { background: linear-gradient(135deg, #7a2a3c 0%, var(--primary) 100%); }
.category-card.gold    { background: linear-gradient(135deg, #c89020 0%, #a07010 100%); }
.category-card.indigo  { background: linear-gradient(135deg, #4a4a9c 0%, #2a2a7c 100%); }

.cat-card-inner {
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    width: 100%;
}

.cat-tag {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cat-card-inner h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cat-card-inner p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

.carousel-btn {
    background: var(--primary);
    border: none;
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    z-index: 2;
}

.carousel-btn:hover { background: var(--gold); color: var(--primary); }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

/* =============================================
   NOMINATIONS — STEPS
   ============================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.step-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 18px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.step-card:hover { box-shadow: var(--shadow); }

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: 8px;
    line-height: 1;
}

.step-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.5;
}

/* Nomination Form */
.nomination-form-wrapper { margin-top: 8px; }

.nomination-form { margin-top: 16px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width { margin-bottom: 16px; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--light-bg);
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

.form-group input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.form-help {
    color: var(--text-mid);
    font-size: 0.78rem;
    line-height: 1.45;
}

.evidence-box {
    border: 1px solid rgba(232,160,32,0.24);
    border-radius: 8px;
    background: rgba(232,160,32,0.07);
    padding: 14px;
    margin-bottom: 16px;
}

.evidence-box .form-group:last-child {
    margin-bottom: 0;
}

.form-submit { margin-top: 8px; }

.btn-submit {
    background: var(--primary);
    color: var(--gold);
    border: none;
    padding: 13px 36px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.app-panel {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    margin: 18px 0;
}

.panel-copy {
    color: var(--text-mid);
    line-height: 1.6;
    margin-top: 6px;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.auth-grid-single {
    grid-template-columns: minmax(0, 640px);
}

.app-form {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.auth-status {
    color: var(--text-mid);
    background: rgba(232,160,32,0.12);
    border: 1px solid rgba(232,160,32,0.28);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.9rem;
    margin-top: 10px;
}

.auth-status.compact { margin: 14px 0; }
.auth-status.is-ok {
    color: #245b31;
    background: rgba(62,148,80,0.12);
    border-color: rgba(62,148,80,0.28);
}

.auth-status.with-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.auth-status-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 6px;
    background: var(--primary);
    color: var(--gold);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    padding: 10px 14px;
    text-transform: uppercase;
}

.auth-status-action:hover {
    background: var(--primary-light);
}

.form-message {
    min-height: 22px;
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.form-message.success { color: #245b31; }
.form-message.error { color: #b23434; }
.form-message.info { color: var(--primary); }

.nomination-success-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(28, 16, 20, 0.58);
}

.nomination-success-popup {
    position: relative;
    width: min(420px, 100%);
    border: 1px solid rgba(232,160,32,0.32);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(28, 16, 20, 0.28);
    padding: 30px 26px 26px;
    text-align: center;
}

.nomination-success-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--primary);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
}

.nomination-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(62,148,80,0.12);
    color: #245b31;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.nomination-success-popup h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.nomination-success-popup p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.5;
}

.nomination-reference {
    display: grid;
    gap: 6px;
    border: 1px dashed rgba(232,160,32,0.7);
    border-radius: 8px;
    background: rgba(232,160,32,0.1);
    margin: 20px 0;
    padding: 14px;
}

.nomination-reference span {
    color: var(--text-mid);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nomination-reference strong {
    color: var(--primary);
    font-size: 1.65rem;
    letter-spacing: 0;
}

.nomination-success-done {
    width: 100%;
}

.nomination-form.is-disabled {
    opacity: 0.75;
}

.nominee-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.nominee-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.nominee-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--primary);
}

.nominee-card-body {
    padding: 16px;
}

.nominee-card h3 {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.nominee-card p {
    color: var(--text-mid);
    line-height: 1.55;
    min-height: 72px;
}

.nominee-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gold);
    font-weight: 700;
    margin: 14px 0;
}

.vote-btn { width: 100%; }

.empty-state {
    grid-column: 1 / -1;
    border: 1px dashed var(--border);
    border-radius: 8px;
    color: var(--text-mid);
    background: var(--light-bg);
    padding: 22px;
    text-align: center;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.metric-card {
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    padding: 18px;
    min-height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-card span {
    color: rgba(255,255,255,0.72);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.metric-card strong {
    color: var(--gold);
    font-size: 1.55rem;
    line-height: 1.2;
}

.backoffice-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.bo-tab,
.bo-action {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary);
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 700;
    cursor: pointer;
}

.bo-tab.active,
.bo-action:hover:not(:disabled) {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--primary);
}

.bo-action:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bo-panel { display: none; margin-top: 16px; }
.bo-panel.active { display: block; }

.bo-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.bo-dashboard-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow);
    min-width: 0;
}

.bo-dashboard-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.bo-dashboard-card-head .section-subtitle {
    margin: 0;
}

.bo-card-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(232,160,32,0.14);
    color: var(--primary);
    font-weight: 900;
}

.bo-list {
    display: grid;
    gap: 10px;
}

.bo-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--light-bg);
    padding: 12px;
}

.bo-list-item strong,
.bo-list-item span {
    display: block;
}

.bo-list-item strong {
    color: var(--primary);
    font-size: 0.92rem;
    line-height: 1.35;
}

.bo-list-item span {
    color: var(--text-mid);
    font-size: 0.8rem;
    margin-top: 3px;
}

.bo-list-item em {
    flex-shrink: 0;
    border-radius: 999px;
    background: rgba(232,160,32,0.16);
    color: #8a5b08;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    padding: 4px 8px;
    text-transform: uppercase;
}

.bo-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.bo-panel-head select {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 9px 12px;
    background: var(--light-bg);
}

.compact-form {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
}

.bo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.bo-table th,
.bo-table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    font-size: 0.9rem;
}

.bo-table th {
    color: var(--primary);
    background: var(--light-bg);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.bo-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.status-pill {
    display: inline-flex;
    border-radius: 999px;
    padding: 4px 9px;
    background: var(--light-bg);
    color: var(--text-mid);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-pill.approved,
.status-pill.published { background: rgba(62,148,80,0.14); color: #245b31; }
.status-pill.pending { background: rgba(232,160,32,0.16); color: #8a5b08; }
.status-pill.rejected { background: rgba(178,52,52,0.12); color: #b23434; }

/* =============================================
   FLOW OF EVENTS — TIMELINE
   ============================================= */
.timeline {
    position: relative;
    padding: 16px 0;
    margin-top: 8px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    position: relative;
    margin-bottom: 36px;
}

.timeline-item.left { justify-content: flex-start; padding-right: calc(50% + 30px); }
.timeline-item.right { justify-content: flex-end; padding-left: calc(50% + 30px); }

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--gold);
    z-index: 1;
}

.active-dot {
    background: var(--gold);
    border-color: var(--primary);
    width: 18px;
    height: 18px;
    top: 18px;
}

.timeline-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 22px;
    max-width: 360px;
    transition: box-shadow 0.2s;
}

.timeline-card:hover { box-shadow: var(--shadow); }

.highlight-card {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(232,160,32,0.08) 0%, var(--light-bg) 100%);
}

.timeline-phase {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.timeline-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.55;
    margin-bottom: 10px;
}

.timeline-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(232,160,32,0.1);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* =============================================
   JUDGES
   ============================================= */
.judges-category { margin-bottom: 40px; }

.judges-category-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(232,160,32,0.25);
}

.judges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.judge-card { text-align: left; }

.judge-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 10px;
    background: var(--off-white);
}

.judge-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.judge-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.judge-title {
    font-size: 0.82rem;
    color: var(--text-mid);
}

/* =============================================
   WINNERS
   ============================================= */
.winners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.winner-card { position: relative; }

.winner-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--off-white);
    cursor: pointer;
}

.winner-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.winner-card:hover .winner-img-wrap img {
    transform: scale(1.04);
}

.winner-corner-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--gold);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 2;
}

.gold-tag { background: var(--gold); color: var(--primary); }

.winner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74,22,40,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.winner-card:hover .winner-overlay { opacity: 1; }

.winner-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.winner-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.winner-featured-label {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: rgba(74,22,40,0.85);
    padding: 14px 18px;
    z-index: 2;
}

.winner-label-text {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 4px;
}

.winner-featured-label p {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
}

/* =============================================
   SOCIAL FLOAT
   ============================================= */
.social-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 50;
}

.social-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.social-float a:hover { background: var(--gold); color: var(--primary); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--primary);
    color: var(--white);
    margin-top: auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 36px 60px;
}

.footer-nav {
    font-size: 0.88rem;
    line-height: 2.2;
    color: rgba(255,255,255,0.8);
}

.footer-nav a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}

.footer-nav a:hover,
.footer-highlight {
    color: var(--gold) !important;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 14px 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    transition: all 0.2s;
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

/* Tweets Widget */
.tweets-widget {
    background: var(--off-white);
    border-radius: 10px;
    padding: 20px 24px;
    min-width: 260px;
}

.tweets-widget h4 {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.tweet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.tweet-item:last-child { border-bottom: none; margin-bottom: 0; }

.tweet-item .at {
    font-weight: 700;
    color: var(--text-mid);
    font-size: 1rem;
}

.tweet-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.15);
    text-align: center;
    padding: 14px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: underline;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* ---- Large tablets ---- */
@media (max-width: 1024px) {
    .sidebar { width: 240px; min-width: 200px; }
    .main-content { padding: 30px 28px; }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .carousel-slide { min-width: 50%; }
}

/* ---- Tablets / small laptops ---- */
@media (max-width: 768px) {
    /* Header */
    .site-header { height: 56px; padding: 0 16px; }
    .logo-text .tagline { display: none; }
    .logo-divider { display: none; }
    .search-bar input { width: 140px; }

    /* Hamburger open → X */
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Hero */
    .hero-section { min-height: calc(100vh - 56px); padding: 32px 20px 104px; }
    .hero-content { text-align: center; justify-content: center; }
    .hero-text { max-width: 100%; }
    .hero-text ul li { font-size: 1.1rem; }
    .hero-language-control {
        left: 50%;
        right: auto;
        bottom: 24px;
        width: min(520px, calc(100vw - 40px));
        justify-content: center;
        max-width: none;
    }
    .language-segment { flex: 1; }
    .language-option { min-width: 0; flex: 1; }
    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(5,3,5,0.68) 0%, rgba(5,3,5,0.50) 48%, rgba(5,3,5,0.78) 100%),
            linear-gradient(90deg, rgba(5,3,5,0.48) 0%, rgba(5,3,5,0.24) 100%);
    }

    /* Inner layout — sidebar becomes slide-in drawer */
    .inner-layout { display: block; min-height: auto; }

    .sidebar {
        position: fixed;
        left: 0;
        top: 56px;
        bottom: 0;
        width: 280px;
        min-width: 0;
        z-index: 200;
        border-right: 1px solid var(--border);
        box-shadow: 4px 0 24px rgba(0,0,0,0.18);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        padding: 16px 0;
    }

    .sidebar.sidebar-open { transform: translateX(0); }

    .sidebar-scroll-up,
    .sidebar-scroll-down { display: none; }

    /* Backdrop overlay */
    .sidebar-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        top: 56px;
        background: rgba(0,0,0,0.45);
        z-index: 199;
    }
    .sidebar-backdrop.active { display: block; }

    /* Sidebar nav — vertical */
    .sidebar-nav ul { display: flex; flex-direction: column; }
    .sidebar-nav ul li { border-bottom: 1px solid var(--border); }
    .sidebar-nav ul li:first-child { border-top: 1px solid var(--border); }

    /* Main content full width */
    .main-content { padding: 20px 16px; width: 100%; }

    /* Grids */
    .about-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .judges-grid { grid-template-columns: repeat(2, 1fr); }
    .auth-grid { grid-template-columns: 1fr; }
    .nominee-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bo-dashboard-grid { grid-template-columns: 1fr; }
    .app-panel { align-items: stretch; flex-direction: column; }
    .winners-grid { grid-template-columns: 1fr; }

    /* Form — single column */
    .form-row { grid-template-columns: 1fr; }

    /* Carousel */
    .carousel-slide { min-width: 100%; }

    /* Timeline */
    .timeline::before { left: 16px; }
    .timeline-item.left { padding-right: 0; padding-left: 48px; justify-content: flex-start; }
    .timeline-item.right { padding-left: 48px; justify-content: flex-start; }
    .timeline-dot { left: 16px; }

    /* Footer */
    .footer-inner { flex-direction: column; padding: 24px; gap: 24px; }
    .tweets-widget { min-width: auto; }

    /* Social float — hidden on mobile */
    .social-float { display: none !important; }

    /* Typography */
    .section-title { font-size: 2rem; }
    .winners-title { font-size: 2.5rem; }
}

/* ---- Mobile phones ---- */
@media (max-width: 480px) {
    /* Header */
    .site-header { height: 52px; padding: 0 12px; }
    .logo-text .agenda { font-size: 0.95rem; }
    .logo-text .year { font-size: 1.3rem; }
    .search-bar input { width: 110px; }

    /* Hero */
    .hero-section { min-height: calc(100vh - 52px); padding: 24px 16px 112px; }
    .sidebar { top: 52px; }
    .sidebar-backdrop { top: 52px; }
    .hero-text ul li { font-size: 1rem; }
    .hero-text p { font-size: 0.88rem; }
    .hero-language-control {
        left: 50%;
        right: auto;
        bottom: 18px;
        width: calc(100vw - 24px);
        padding: 6px;
        gap: 6px;
    }
    .language-option {
        padding: 9px 6px;
        font-size: 0.7rem;
    }
    .hero-sound-toggle {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    /* Grids */
    .steps-grid { grid-template-columns: 1fr; }
    .judges-grid { grid-template-columns: 1fr; }

    /* Typography */
    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 1.2rem; }
    .winners-title { font-size: 2rem; }

    /* Content */
    .main-content { padding: 16px 12px; }
    .timeline-card { padding: 14px 16px; }
    .btn-submit { width: 100%; }
    .nominee-grid { grid-template-columns: 1fr; }
    .metric-grid { grid-template-columns: 1fr; }
    .bo-panel-head { align-items: stretch; flex-direction: column; }
    .carousel-btn { width: 34px; height: 34px; }
}

/* ---- Very small phones ---- */
@media (max-width: 360px) {
    .logo-text .agenda { font-size: 0.85rem; }
    .logo-text .year { font-size: 1.1rem; }
    .hero-section { padding: 20px 12px 112px; }
    .main-content { padding: 12px 10px; }
    .search-bar input { width: 90px; }
    .language-option { font-size: 0.66rem; }
}

/* =============================================
   ENHANCED CARD HOVER EFFECTS
   ============================================= */

[data-modal] { cursor: pointer; }

/* About cards */
.about-card-icon { transition: background 0.25s, color 0.25s, transform 0.25s; }
.about-card:hover { box-shadow: 0 16px 48px rgba(74,22,40,0.18); transform: translateY(-8px); border-color: var(--gold); }
.about-card:hover .about-card-icon { background: var(--gold); color: var(--primary); transform: scale(1.12) rotate(-6deg); }

/* Category cards */
.category-card { transition: transform 0.25s, box-shadow 0.25s; }
.category-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.cat-card-inner { transition: background 0.25s; }
.category-card:hover .cat-card-inner { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%); }

/* Step cards */
.step-number { transition: opacity 0.25s, color 0.25s; }
.step-card { transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s; }
.step-card:hover { box-shadow: 0 16px 48px rgba(74,22,40,0.16); transform: translateY(-6px); border-color: var(--gold); }
.step-card:hover .step-number { opacity: 0.3; color: var(--gold); }

/* Judge cards */
.judge-name { transition: color 0.2s; }
.judge-card { transition: transform 0.25s; }
.judge-card:hover { transform: translateY(-6px); }
.judge-img-wrap { transition: box-shadow 0.25s; }
.judge-card:hover .judge-img-wrap { box-shadow: 0 12px 36px rgba(74,22,40,0.22); }
.judge-card:hover .judge-name { color: var(--gold); }

/* Timeline cards */
.timeline-card { transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s; }
.timeline-card:hover { box-shadow: 0 12px 36px rgba(74,22,40,0.16); transform: translateY(-3px); border-color: var(--gold); }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.62);
    z-index: 600;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.modal-overlay.active { display: flex; }

.modal-box {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.45);
    animation: modalIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.80) translateY(28px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,0.45);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.78); transform: scale(1.1) rotate(90deg); }

.modal-media {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    position: relative;
}
.modal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* gradient classes — mirrors category-card colours */
.modal-media.pink   { background: linear-gradient(135deg, #e8a4c8 0%, #c4567c 100%); }
.modal-media.teal   { background: linear-gradient(135deg, #2a7a8c 0%, #1a5a6c 100%); }
.modal-media.purple { background: linear-gradient(135deg, #7a4a9c 0%, #5a2a7c 100%); }
.modal-media.orange { background: linear-gradient(135deg, #e88a20 0%, #c46010 100%); }
.modal-media.green  { background: linear-gradient(135deg, #4a9c5a 0%, #2a7c3a 100%); }
.modal-media.blue   { background: linear-gradient(135deg, #4a6aac 0%, #2a4a8c 100%); }
.modal-media.maroon { background: linear-gradient(135deg, #7a2a3c 0%, #4A1628 100%); }
.modal-media.gold   { background: linear-gradient(135deg, #c89020 0%, #a07010 100%); }
.modal-media.indigo { background: linear-gradient(135deg, #4a4a9c 0%, #2a2a7c 100%); }

.modal-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 8px;
}
.modal-icon-wrap i { font-size: 4.5rem; color: var(--gold); }

.modal-big-number {
    font-size: 9rem;
    font-weight: 900;
    color: rgba(255,255,255,0.18);
    line-height: 1;
    user-select: none;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.modal-cat-label {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding: 0 20px;
}

.modal-body { padding: 28px 32px 32px; }

.modal-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(232,160,32,0.12);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.modal-subtitle {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 12px;
}

.modal-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.modal-date-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(232,160,32,0.1);
    padding: 4px 14px;
    border-radius: 20px;
}

@media (max-width: 480px) {
    .modal-box { border-radius: 14px; }
    .modal-media { height: 190px; }
    .modal-body { padding: 20px 20px 24px; }
    .modal-title { font-size: 1.2rem; }
    .modal-big-number { font-size: 6rem; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.section-content { animation: fadeInUp 0.35s ease; }
