/* UBA Project - Custom CSS */
/* Test notification commit - 2026-03-15 */
/* Additional Custom Styles for United Beauty Award */

/* Word wrapping for animated text */
[data-text-animate="reveal"] {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

[data-text-animate="reveal"] .word-wrapper {
    display: inline-block;
    white-space: nowrap;
}

/* GSAP Animation Initial States */
[data-text-animate="reveal"] .char,
[data-text-animate="reveal-words"] .word,
[data-text-animate="fade-up"],
[data-text-animate="fade-in"],
[data-text-animate="scale-up"] {
    opacity: 0;
}

[data-text-animate="reveal"] .char {
    transform: translateY(100px);
}

[data-text-animate="reveal-words"] .word {
    transform: translateY(100px);
}

[data-text-animate="fade-up"] {
    transform: translateY(60px);
}

[data-text-animate="scale-up"] {
    transform: scale(0.8);
}

/* Reset opacity when GSAP is initialized */
body.gsap-text-initialized [data-text-animate] {
    /* Animations will be handled by GSAP */
}

.custom-logo {
    max-width: 270px;
    width: 100%;
    max-height: 80px;
}

.btn_ru {
    padding: 8px 20px;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    overflow: hidden;
    background-color: var(--dark-bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #03030399;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 40px;
}

.hero-content {

    margin: 0 auto;
}

.hero-subtitle {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #C7D2E9;

}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-color);
    font-family: var(--font-heading);
}

.hero-description {
    font-size: 30px;
    font-style: italic;
}

.hero-meta {
    font-size: 24px;
    margin-bottom: 3.5rem;
    color: var(--text-color);
    font-weight: 400;
}

.hero-date,
.hero-location {
    display: inline;
}

.hero-buttons {
    margin-top: 3rem;
    gap: 20px;
    display: flex;
    justify-content: center;
}

.hero-buttons .btn {
    font-size: 1rem;
    padding: 8px 75px;
    font-weight: 600;
}

/* About Section */
.about-section {
    background: var(--dark-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.85);
    z-index: 1;
}

.about-wrapper {
    position: relative;
    z-index: 2;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.about-title {
    font-size: 54px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0%;
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.2;
    text-align: center;
}

.about-description {
    font-size: 2rem;
    text-align: center;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 300;
    width: 90%;
    margin: 0 auto 2.5rem;
}

.about-highlight {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 120px;
    max-width: 65%;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =============================================
   Partners Section — Redesigned (Figma)
   ============================================= */
.partners-section {
    background: #C7D2E9;
    padding: 80px 0 90px;
}

/* Section title */
.partners-section-title {
    font-family: var(--font-primary);
    font-size: 54px;
    font-weight: 700;
    color: #202224;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0 0 50px;
}

/* 4-column grid of partner cards */
.partners-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.partners-grid-new:last-of-type {
    margin-bottom: 0;
}

/* White rounded card */
.partner-card {
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 196px;
    padding: 20px 24px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

/* Logo link wrapper */
.partner-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Logo image — grayscale by default, color on hover */
.partner-card img {
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Row label (subtitle between rows) */
.partners-row-label {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: rgba(32, 34, 36, 0.5);
    text-align: center;
    margin: 6px 0 6px;
    display: none; /* hidden in Figma */
}

/* CTA button */
.partners-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-partners-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #202224;
    color: var(--primary-color);
    border: none;
    border-radius: 33px;
    padding: 0 48px;
    height: 78px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-partners-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-partners-cta:hover {
    background: #2e3235;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-partners-cta:hover svg {
    transform: translate(4px, -4px);
}

/* Responsive */
@media (max-width: 1200px) {
    .partners-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-section-title {
        font-size: 38px;
    }
    .partners-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .partner-card {
        min-height: 140px;
    }
    .btn-partners-cta {
        height: 62px;
        font-size: 20px;
        padding: 0 32px;
    }
}

@media (max-width: 480px) {
    .partners-grid-new {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive */
@media (max-width: 1440px) {
    .hero-title {
        font-size: 3.8rem;
    }

    .about-title {
        font-size: 2.7rem;
    }

    .partners-header .section-title {
        font-size: 2.7rem;
    }

    .partners-grid {
        gap: 40px;
    }

    .partner-item img {
        max-width: 120px;
        max-height: 110px;
    }
}

/* Nominations Section */
.nominations-section {
    background: var(--dark-bg);
    padding: 80px 0 100px;
}

.nominations-section .section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0%;
}

.nominations-accordion {
    max-width: 1000px;
    margin: 0 auto 60px;
}



.accordion-header {
    background: transparent;
    border: none;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}

.accordion-header:hover {
    opacity: 0.8;
    background: none;
    box-shadow: none;
}

.accordion-header.active {
    color: var(--primary-color);
}

.accordion-icon {
    width: 66px;
    height: 60px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon img,
.accordion-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.accordion-header.active .accordion-icon {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 10px 30px 10px;
}

.nominations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nominations-list li {
    padding: 5px 0;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-color);
    letter-spacing: 0%;
}

.nominations-apply-section {
    text-align: center;
    margin-top: 60px;
}

.nominations-apply-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 15px 100px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 10px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: inline-block;
}

.nominations-apply-btn:hover {
    background: #9ec230;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 214, 62, 0.4);
}

/* Responsive */
@media (max-width: 1440px) {
    .nominations-section .section-title {
        font-size: 2.2rem;
    }

    .accordion-header {
        font-size: 18px;
        padding: 0px 25px;
    }

    .nominations-list li {
        font-size: 14px;
    }
}


/* Participate Section */
.participate-section {
    background: var(--dark-bg);
    padding: 80px 0 100px;
}

.participate-section .section-title {
    font-size: 54px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0%;
}

.participate-description {
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-color);
    max-width: 1000px;
    margin: 0 auto 80px;
    line-height: 1.5;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.requirement-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-10px);
}

.requirement-image {
    width: 270px;
    height: 167px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 50%;
}

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

.requirement-item h3 {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    letter-spacing: 0%;
}

/* Responsive */
@media (max-width: 1440px) {
    .participate-section .section-title {
        font-size: 2.5rem;
    }

    .participate-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .requirements-grid {
        gap: 50px;
    }

    .requirement-image {
        width: 240px;
        height: 137px;
        margin-bottom: 25px;
    }

    .requirement-item h3 {
        font-size: 20px;
    }
}

/* ==========================================================================
   Jury Section — redesign 2026
   ========================================================================== */
.jury-section {
    background: #c7d2e9;
    padding: 64px 0 80px;
    overflow: hidden;
}

.jury-inner {
    padding: 0 43px;
}

/* --- Top bar: title + filter tabs --- */
.jury-top-bar {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 43px;
    flex-wrap: wrap;
}

.jury-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: #212123;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1;
    flex-shrink: 0;
}

/* --- Segmented filter control --- */
.jury-filter-bar {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.jury-filter-btn {
    height: 58px;
    padding: 0 32px;
    border: none;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #fff;
    color: #212123;
    transition: background 0.2s, color 0.2s;
}
.jury-filter-btn:first-child { border-radius: 50px 0 0 50px; }
.jury-filter-btn:last-child  { border-radius: 0 50px 50px 0; }
.jury-filter-btn.active,
.jury-filter-btn:hover {
    background: #212123;
    color: var(--primary-color);
}

/* --- Slider viewport --- */
.jury-slider-viewport {
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 -43px;
    padding: 0 43px;
}
.jury-slider-viewport::-webkit-scrollbar { display: none; }

.jury-slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding-bottom: 8px;
}

/* --- Card --- */
.jury-card {
    width: 586px;
    height: 467px;
    background: #fff;
    border-radius: 26px;
    display: flex;
    overflow: hidden;
    flex-shrink: 0;
    transition: opacity 0.3s, transform 0.3s;
}
.jury-card.hidden-by-filter {
    display: none;
}

.jury-card-photo {
    width: 218px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}
.jury-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.jury-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 28px 28px;
    min-width: 0;
}

.jury-card-info { display: flex; flex-direction: column; gap: 8px; }

.jury-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #070707;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.jury-card-position {
    font-size: 14px;
    color: #070707;
    line-height: 1.55;
    margin: 0;
}

.jury-card-socials {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
}
.jury-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212123;
    width: 18px;
    height: 18px;
    transition: color 0.2s;
}
.jury-social-link:hover { color: var(--primary-color); }
.jury-social-link svg { display: block; }

.jury-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jury-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54px;
    border-radius: 33px;
    border: none;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: opacity 0.2s;
    width: 100%;
}
.jury-btn:hover { opacity: 0.85; }

.jury-btn--primary {
    background: var(--primary-color);
    color: #000;
}
.jury-btn--dark {
    background: #212123;
    color: var(--primary-color);
}

/* --- Nav arrows (kept for popup compatibility) --- */
.jury-nav-arrows {
    display: flex;
    gap: 8px;
    margin-top: 32px;
}
.jury-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
    display: flex;
    transition: opacity 0.2s;
}
.jury-arrow:hover { opacity: 0.7; }

/* ==========================================================================
   Jury — homepage grid + CTA (new 2026 layout)
   ========================================================================== */

/* Container for the 3 cards */
.jury-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

/* Ensure the cards adapt slightly if container is narrow, but keep original horizontal layout */
.jury-cards-grid .jury-card {
    max-width: 100%;
}

/* CTA buttons row */
.jury-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.jury-cta-buttons .jury-btn {
    width: auto;
    min-width: 240px;
    padding: 0 40px;
    flex: 0 0 auto;
}

/* Empty notice */
.jury-empty-notice {
    text-align: center;
    color: #212123;
    font-size: 18px;
    padding: 48px 0;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .jury-inner { padding: 0 24px; }
    .jury-section-title { font-size: 48px; }
    .jury-cards-grid { grid-template-columns: repeat(2, 1fr); }
    /* legacy slider card sizes */
    .jury-card { width: 480px; height: auto; min-height: 380px; }
    .jury-card-photo { width: 180px; }
}

@media (max-width: 768px) {
    .jury-section { padding: 48px 0 60px; }
    .jury-inner { padding: 0 20px; }
    .jury-top-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
    .jury-section-title { font-size: 40px; }
    .jury-filter-bar { flex-wrap: wrap; gap: 4px; }
    .jury-filter-btn { height: 44px; padding: 0 20px; font-size: 13px; }
    .jury-filter-btn:first-child,
    .jury-filter-btn:last-child { border-radius: 22px; }
    .jury-filter-btn:not(:first-child):not(:last-child) { border-radius: 22px; }
    /* legacy slider card */
    .jury-card { width: 320px; min-height: 420px; flex-direction: column; height: auto; }
    .jury-card-photo { width: 100%; height: 220px; }
    /* CTA buttons */
    .jury-cta-buttons { flex-direction: column; align-items: center; }
    .jury-cta-buttons .jury-btn { min-width: 280px; }
    /* popup */
    .jury-popup-modal { flex-direction: column; }
    .jury-popup-photo-col { width: 100%; height: 240px; }
}


.jury-popup-wrap {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jury-popup-wrap[hidden] { display: none; }

.jury-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 49, 62, 0.4);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.jury-popup-modal {
    position: relative;
    background: #fff;
    border-radius: 32px;
    width: min(1124px, 96vw);
    max-height: 90vh;
    display: flex;
    overflow: hidden;
    z-index: 1;
}

.jury-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 2;
    display: flex;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.jury-popup-close:hover { opacity: 1; }

.jury-popup-photo-col {
    width: 280px;
    flex-shrink: 0;
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
}
.jury-popup-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    mix-blend-mode: multiply;
}

.jury-popup-content-col {
    flex: 1;
    padding: 36px 36px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    min-width: 0;
}

.jury-popup-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #070707;
    margin: 0;
    letter-spacing: 0.01em;
}

.jury-popup-credentials-box {
    background: #1e1e1e;
    border-radius: 24px;
    padding: 20px 24px;
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1.55;
    white-space: pre-line;
}

.jury-popup-socials {
    display: flex;
    gap: 8px;
    align-items: center;
}
.jury-popup-socials .jury-social-link { color: #212123; }

.jury-popup-bio {
    font-size: 15px;
    color: #212123;
    line-height: 1.65;
}
.jury-popup-bio p { margin: 0 0 12px; }
.jury-popup-bio p:last-child { margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .jury-inner { padding: 0 24px; }
    .jury-card { width: 480px; height: auto; min-height: 380px; }
    .jury-card-photo { width: 180px; }
    .jury-section-title { font-size: 48px; }
}

@media (max-width: 768px) {
    .jury-section { padding: 48px 0 60px; }
    .jury-inner { padding: 0 20px; }
    .jury-top-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
    .jury-section-title { font-size: 40px; }
    .jury-filter-bar { flex-wrap: wrap; gap: 4px; }
    .jury-filter-btn { height: 44px; padding: 0 20px; font-size: 13px; }
    .jury-filter-btn:first-child,
    .jury-filter-btn:last-child { border-radius: 22px; }
    .jury-filter-btn:not(:first-child):not(:last-child) { border-radius: 22px; }
    .jury-card { width: 320px; min-height: 420px; flex-direction: column; height: auto; }
    .jury-card-photo { width: 100%; height: 220px; }
    .jury-popup-modal { flex-direction: column; }
    .jury-popup-photo-col { width: 100%; height: 240px; }
}

/* Winners Section */
.winners-section {
    padding: 0;
    background: var(--dark-bg);
}

.winners-header {
    background: transparent;
    padding: 60px 0;
    text-align: center;
}

.winners-section .section-title,
.past-event-header .section-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0%;
}

.winners-content {
    background: var(--dark-bg);
    padding: 100px 0;
}

.winners-main-container {
    max-width: 100%;
    padding: 0 40px;
    /* Space for arrows on smaller screens before breakpoints hit */
}

.winners-slider-container {
    display: block;
    /* Removed flex so we can use absolute positioning nicely */
    position: relative;
    width: 80vw;
    max-width: 1400px;
    margin: 0 auto;
}

.winners-slider-wrapper {
    width: 100%;
    position: relative;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Optional edge padding */
}

.winners-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.winners-grid {
    display: flex;
    gap: 0;
    /* No gap between full slides */
    max-width: none;
    margin: 0;
}

.winner-slide {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: center;
}

.winner-slide-inner {
    display: flex;
    height: 100%;
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    margin: 0;
    /* Remove side margins, container already handles width */
}

.winner-photo {
    flex: 0 0 60%;
    background-color: #000;
    /* fallback */
    background-size: cover;
    background-position: center;
    position: relative;
}

.winner-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 20%, #000 100%);
}

.winner-photo .no-photo-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.winner-info {
    flex: 0 0 40%;
    padding: 60px 80px 60px 0;
    /* no left padding, content starts smoothly */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
    z-index: 2;
    /* keep above the photo gradient */
    position: relative;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* visually pull text to the left so it floats over gradient perfectly */
    margin-left: -60px;
}

.winner-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.winner-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
    margin-top: 10px;
}

.winner-text-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.winner-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.winner-nomination-name {
    color: #999;
    font-size: 0.95rem;
    font-weight: 400;
}

.winners-prev,
.winners-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
}

.winners-prev {
    left: -70px;
}

.winners-next {
    right: -70px;
}

.winners-prev:hover,
.winners-next:hover {
    transform: translateY(-50%) scale(1.2);
    color: #fff;
    background: transparent !important;
}

.winners-prev svg,
.winners-next svg {
    display: block;
    width: 48px;
    height: 48px;
}

.winners-prev svg path,
.winners-next svg path {
    stroke: var(--primary-color) !important;
    fill: none !important;
    stroke-width: 2px !important;
    transition: stroke 0.3s ease;
}

.winners-prev:hover svg path,
.winners-next:hover svg path {
    stroke: #fff !important;
}

/* Dots */
.winners-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.winners-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4a5a3a;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.winners-dot.active {
    background: var(--primary-color);
}

@media (max-width: 1440px) {
    .winners-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .winners-main-container {
        padding: 0 15px;
    }

    .winners-slider-container {
        width: 100%;
    }

    .winner-slide-inner {
        flex-direction: row;
        margin: 0;
        min-height: 420px;
    }

    .winners-slider-wrapper {
        margin: 0;
        padding: 0;
    }

    .winner-photo {
        height: auto;
        flex: 0 0 50%;
    }

    .winner-photo::after {
        background: linear-gradient(to right, transparent 0%, #000 100%);
    }

    .winner-info {
        flex: 0 0 50%;
        padding: 30px 15px 30px 0;
    }

    .winners-list {
        margin-left: 0px;
        gap: 25px;
    }

    .winner-name {
        font-size: 1.15rem;
    }

    .winner-nomination-name {
        font-size: 0.85rem;
    }

    .winner-bullet {
        width: 6px;
        height: 6px;
        margin-top: 6px;
    }

    .winners-prev,
    .winners-next {
        display: none;
    }
}

/* Past Event Section */
/* Past Event Section — gallery scroll redesign */
.past-event-section {
    background: var(--dark-bg);
    padding: 80px 0 100px;
    overflow: hidden;
}

.past-event-header {
    text-align: center;
    margin-bottom: 48px;
}

.past-event-title {
    font-family: 'Bebas Neue', 'Bebas Neue Cyrillic', sans-serif;
    font-size: 54px;
    line-height: 1;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

/* Row wrapper — clips track, hosts nav buttons */
.past-event-row-wrap {
    position: relative;
    margin-bottom: 19px;
}

.past-event-row-wrap:last-of-type {
    margin-bottom: 0;
}

/* Scrollable photo track */
.past-event-track {
    display: flex;
    gap: 19px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 64px; /* leave space for nav overlays */
}

.past-event-track::-webkit-scrollbar {
    display: none;
}

/* Individual photo card */
.past-event-card {
    flex: 0 0 440px;
    height: 392px;
    border-radius: 20px;
    overflow: hidden;
}

.past-event-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nav buttons — frosted glass overlay on left/right edge */
.past-event-nav {
    position: absolute;
    top: 0;
    width: 64px;
    height: 100%;
    background: rgba(248, 248, 248, 0.75);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
    z-index: 2;
}

.past-event-nav:hover {
    background: rgba(248, 248, 248, 0.9);
}

.past-event-nav--left {
    left: 0;
    border-radius: 0 20px 20px 0;
}

.past-event-nav--right {
    right: 0;
    border-radius: 20px 0 0 20px;
    transform: scaleX(-1);
}

.past-event-nav svg {
    flex-shrink: 0;
}

/* CTA button */
.past-event-cta {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.past-event-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #202224;
    font-family: 'Bebas Neue', 'Bebas Neue Cyrillic', sans-serif;
    font-size: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 48px;
    height: 78px;
    border-radius: 33px;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}

.past-event-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    color: #202224;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 767px) {
    .past-event-title {
        font-size: 36px;
    }

    .past-event-card {
        flex: 0 0 280px;
        height: 250px;
    }

    .past-event-nav {
        width: 48px;
    }

    .past-event-track {
        padding: 0 48px;
    }

    .past-event-btn {
        font-size: 18px;
        height: 60px;
        padding: 0 32px;
    }
}

/* Speakers Section */
.speakers-section {
    background: var(--dark-bg);
    padding: 80px 0 100px;
    overflow: hidden;
}

.speakers-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0%;
}

.speakers-header {
    /* Reverted to default block display for title */
    margin-bottom: 0;
}

.speakers-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 30px;
    margin-bottom: 40px;
}

.speakers-prev,
.speakers-next {
    width: 40px;
    height: 40px;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.speakers-prev:hover,
.speakers-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.speakers-prev:disabled,
.speakers-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.speakers-prev svg,
.speakers-next svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .speakers-nav {
        padding-top: 20px;
        margin-bottom: 30px;
    }
}

.speakers-timeline-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 40px 0 60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.speakers-timeline-wrapper .container {
    max-width: none;
    padding: 0;
}

.speakers-timeline-wrapper::-webkit-scrollbar {
    height: 8px;
}

.speakers-timeline-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}

.speakers-timeline-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0);
}

.speakers-timeline {
    display: flex;
    gap: 50px;
    position: relative;
    min-width: min-content;
    padding-bottom: 20px;
    padding-left: calc(50vw - 720px);
}

.speaker-item {
    display: flex;
    align-items: center;
    position: relative;
    gap: 30px;
}

.speaker-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.timeline-line {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    flex-shrink: 0;
}

.timeline-line::before {
    content: '';
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    display: block;
    border-radius: 5px;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0 20px;
}

.timeline-line::after {
    content: '';
    width: 150px;
    height: 5px;
    background: var(--primary-color);
    display: block;
}

.speaker-item:last-child .timeline-line::after {
    display: none;
}

.speaker-time {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 0%;
}

.speaker-info {
    text-align: left;
    flex-shrink: 0;
    width: 300px;
}

.speaker-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 8px 0;
    letter-spacing: 0%;
}

.speaker-title {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    letter-spacing: 0%;
}

.speaker-social {
    display: flex;
    margin-top: 15px;
}

.speaker-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.speaker-social .social-icon svg {
    width: 20px;
    height: 20px;
}

.speaker-social .social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.speaker-company,
.speaker-topic,
.speaker-bio {
    display: none;
}

/* Responsive */
@media (max-width: 1440px) {
    .speakers-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 70px;
    }

    .speakers-timeline {
        padding-left: calc(50vw - 640px);
    }

    .speaker-photo {
        width: 150px;
        height: 150px;
    }

    .timeline-line::before {
        width: 100px;
    }

    .timeline-line::after {
        width: 150px;
    }

    .speaker-info {
        width: 350px;
    }

    .speaker-time {
        font-size: 24px;
    }

    .speaker-name {
        font-size: 18px;
    }

    .speaker-title {
        font-size: 10px;
    }
}

.jury-social a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.jury-social a:hover {
    color: white;
}

/* Future Events Section */
.future-events-section {
    padding: 0;
    background: var(--dark-bg);
}

.future-events-header {
    background: linear-gradient(135deg, #c8d952 0%, #b4d63e 100%);
    padding: 60px 0;
    text-align: center;
}

.future-events-header .section-title {
    color: var(--dark-bg);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.future-events-content {
    background: #1a1a1a;
    padding: 80px 0 100px;
}

.events-date {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 80px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.events-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.event-item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0;
    position: relative;
}

.event-time-circle {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border: 3px solid #c8d952;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.event-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c8d952;
    text-align: center;
    line-height: 1.3;
}

.event-connector {
    display: flex;
    align-items: center;
    margin: 0 20px;
    position: relative;
}

.connector-line {
    width: 80px;
    height: 3px;
    background: #c8d952;
}

.connector-dot {
    width: 12px;
    height: 12px;
    background: #c8d952;
    border-radius: 50%;
    margin-left: 8px;
}

.event-details {
    text-align: left;
}

.event-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c8d952;
    margin: 0 0 10px 0;
    text-transform: capitalize;
}

.event-description {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.events-nav {
    display: none;
    /* Hidden on desktop */
}

.events-prev,
.events-next {
    width: 40px;
    height: 40px;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-prev:hover,
.events-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.events-prev svg,
.events-next svg {
    width: 20px;
    height: 20px;
}


/* Responsive */
@media (max-width: 1440px) {
    .future-events-header .section-title {
        font-size: 2.7rem;
    }

    .events-date {
        font-size: 1.2rem;
        margin-bottom: 60px;
    }

    .events-timeline {
        gap: 50px;
    }

    .event-time-circle {
        width: 120px;
        height: 120px;
    }

    .event-time {
        font-size: 0.95rem;
    }

    .connector-line {
        width: 60px;
    }

    .event-title {
        font-size: 1.5rem;
    }

    .event-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .future-events-header .section-title {
        font-size: 2rem;
    }

    .events-date {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .events-timeline {
        gap: 40px;
        overflow-x: scroll;
        scrollbar-width: none;
        flex-direction: row;
    }

    .event-item {
        text-align: center;
    }

    .event-time-circle {
        width: 100px;
        height: 100px;
    }

    .event-time {
        font-size: 0.85rem;
    }

    .events-nav {
        display: flex;
        gap: 15px;
        justify-content: center;
        padding-top: 30px;
        margin-bottom: 20px;
    }


    .event-details {
        text-align: center;
        min-width: 150px;
    }

    .event-title {
        font-size: 1.2rem;
    }

    .event-description {
        font-size: 0.9rem;
    }
}

/* =============================================
   Tickets Section — Redesigned (Figma)
   ============================================= */
.tickets-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: var(--dark-bg);
}

.tickets-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.tickets-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 3, 0.60);
    z-index: 1;
}

.tickets-inner {
    position: relative;
    z-index: 2;
    padding: 100px 0 120px;
}

.tickets-section-title {
    font-family: var(--font-primary);
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0 0 60px;
}

/* Tickets section uses full-width layout like Figma (62px side padding, no container cap) */
.tickets-section .container {
    max-width: none;
    padding-left: 62px;
    padding-right: 62px;
}

/* Grid */
.tickets-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Card */
.ticket-card-new {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Glassmorphism blur layer */
.ticket-card-blur {
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: rgba(3, 3, 3, 0.15);
    border: 1px solid rgba(210, 238, 78, 0.15);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    z-index: 0;
}

.ticket-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 36px 47px 36px;
    flex: 1;
}

/* Ticket icon */
.ticket-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-icon svg {
    opacity: 1;
    width: 225px;
    height: auto;
}

.ticket-card-new:not(.featured) .ticket-icon svg {
    opacity: 0.5;
}

/* Card name */
.ticket-card-name {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0;
    line-height: 1.1;
}

/* Features */
.ticket-features-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 283px;
}

.ticket-divider {
    width: 100%;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.15);
    margin: 13px 0;
}

.ticket-feature-item {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}

/* Price */
.ticket-price-new {
    font-family: var(--font-secondary);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* CTA Button */
.btn-ticket-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    background: var(--primary-color);
    color: #202224;
    border: none;
    border-radius: 33px;
    padding: 0 40px;
    height: 78px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease;
}

.btn-ticket-new svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-ticket-new:hover {
    background: #bfdd3a;
}

.btn-ticket-disabled {
    background: #555;
    color: #888;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-ticket-disabled:hover {
    transform: none;
    box-shadow: none;
}


/* Old classes kept for compatibility */
.tickets-header { display: none; }
.tickets-content { display: none; }
.tickets-grid { display: none; }

/* Responsive — Tickets */
@media (max-width: 1440px) {
    .tickets-grid-new {
        gap: 18px;
    }
}

@media (max-width: 1024px) {
    .tickets-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .tickets-section .container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 640px) {
    .tickets-grid-new {
        grid-template-columns: 1fr;
    }
    .ticket-card-content {
        padding: 28px 24px;
    }
    .tickets-section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .tickets-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* Venue Section */
.venue-section {
    padding: 0;
    background: var(--dark-bg);
}

.venue-header {
    background: var(--dark-bg);
    padding: 80px 0;
    text-align: center;
}

.venue-header .section-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0%;
}

.venue-content {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
}

.venue-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.venue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.6);
    z-index: 1;
}

.venue-info {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.venue-date {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 30px;
    letter-spacing: 0%;
}

.venue-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 0%;
    line-height: 1.2;
}

.venue-location {
    font-size: 28px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 50px;
    letter-spacing: 0%;
}

.btn-venue-map {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-venue-map:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 214, 62, 0.4);
}

/* Responsive */
@media (max-width: 1440px) {
    .venue-header {
        padding: 70px 0;
    }

    .venue-header .section-title {
        font-size: 2.5rem;
    }

    .venue-content {
        padding: 80px 0;
    }

    .venue-date {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .venue-name {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .venue-location {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .btn-venue-map {
        font-size: 10px;
        padding: 13px 45px;
    }
}

/* Contact Section */
.contact-section {
    padding: 0;
    background: var(--dark-bg);
}

.contact-header {
    background: transparent;
    padding: 80px 0 20px;
    text-align: center;
}

.contact-header .section-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0%;
}

.contact-content {
    padding: 100px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-message {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
}

.contact-message.success {
    background: rgba(180, 214, 62, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.contact-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    color: #dc3545;
}

.form-group {
    margin-bottom: 30px;
}

.form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    padding: 15px 0;
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-color);
    outline: none;
    transition: all 0.3s ease;
    letter-spacing: 0%;
}

.form-group input::placeholder {
    color: var(--primary-color);
    opacity: 1;
}

.form-group input:focus {
    border-bottom-color: #9ec230;
}

.btn-contact-submit {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 15px 80px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: block;
    margin: 50px auto 0;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background: #9ec230;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 214, 62, 0.4);
}

/* Responsive */
@media (max-width: 1440px) {
    .contact-header {
        padding: 70px 0;
    }

    .contact-header .section-title {
        font-size: 2.5rem;
    }

    .contact-content {
        padding: 80px 0;
    }

    .contact-form {
        max-width: 540px;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group input {
        padding: 13px 0;
        font-size: 18px;
    }

    .btn-contact-submit {
        font-size: 12px;
        padding: 13px 70px;
        margin-top: 45px;
    }

    .contact-message {
        font-size: 8px;
        padding: 18px;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--dark-bg);
    padding: 80px 0 100px;
}

.faq-section .section-title {
    font-size: 54px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0%;
}

.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    margin-bottom: 0;
}

.faq-accordion .accordion-header {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(199, 210, 233, 0.2);
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-color);
    position: relative;
}

.faq-accordion .accordion-header:hover {
    opacity: 0.8;
    background: none;
    box-shadow: none;
}

.faq-accordion .accordion-header.active {
    color: var(--primary-color);
}

.faq-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-accordion .accordion-content.active {
    max-height: 1000px;
    padding: 5px 30px 10px;
}

.faq-answer {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-color);
    line-height: 1.6;
    letter-spacing: 0%;
}

/* Responsive */
@media (max-width: 1440px) {
    .faq-section {
        padding: 70px 0 90px;
    }

    .faq-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .faq-accordion .accordion-header {
        font-size: 18px;
        padding: 5px 25px;
    }

    .faq-accordion .accordion-content {
        padding: 0 25px;
    }

    .faq-accordion .accordion-content.active {
        padding: 10px 25px 28px;
    }

    .faq-answer {
        font-size: 10px;
    }
}

/* Footer */
.site-footer {
    color: var(--text-color);
    padding: 80px 0 60px;
}

.footer-nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 60px;
}

.jury-member {
    position: relative;
    perspective: 1000px;
    height: 380px;
    /* Adjust based on your design needs */
    cursor: pointer;
}

.jury-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.jury-member:hover .jury-card-inner {
    transform: rotateY(180deg);
}

.jury-card-front,
.jury-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Front side specific */
.jury-card-front {
    justify-content: flex-start;
}

/* Back side specific */
.jury-card-back {
    transform: rotateY(180deg);
    justify-content: space-between;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.jury-info-back {
    width: 50%;
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    color: rgb(122, 122, 122);
}

.jury-description {
    font-size: 9px;
}

.jury-photo-back {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.jury-photo-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Update existing overrides for front side */
.jury-card-front .jury-photo {
    width: 50%;
    height: 100%;
}

.jury-card-front .jury-info {
    width: 50%;
    padding-left: 20px;
}

.footer-nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 10px;
    color: var(--text-color);
}

.footer-legal {
    display: flex;
    gap: 60px;
}

.footer-legal-link {
    font-size: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--primary-color);
}

/* Footer responsive */
@media (max-width: 1440px) {
    .site-footer {
        padding: 60px 0 50px;
    }

    .footer-nav-menu {
        gap: 90px;
        padding-bottom: 60px;
        margin-bottom: 50px;
    }

    .footer-nav-link {
        font-size: 16px;
    }

    .footer-copyright {
        font-size: 8px;
    }

    .footer-legal {
        gap: 45px;
    }

    .footer-legal-link {
        font-size: 8px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {

    .language-switcher {
        display: none;
    }

    .mobile-menu-wrapper .language-switcher {
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 61px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-meta {
        font-size: 16px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .hero-buttons .btn {
        font-size: 16px;
    }

    .nav-container {
        padding: 0 20px;
        justify-content: space-between;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-wrapper {
        gap: 60px;
    }

    .about-background {
        background-position: right;
    }

    .about-title {
        font-size: 34px;
    }

    .about-description {
        font-size: 22px;
        line-height: 1.2;
    }

    .about-highlight {
        font-size: 1.3rem;
        max-width: 80%;
    }

    .about-image {
        height: 500px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .nominations-grid,
    .jury-grid,
    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Partners Section Mobile */
    .partners-header .section-title {
        font-size: 32px;
    }

    .partners-content {
        padding: 40px 0px;
    }

    .partners-grid {
        gap: 30px;
        margin-bottom: 40px;
    }

    .partners-grid-bottom {
        flex-wrap: nowrap;
        overflow-x: auto;
        align-items: center;
        justify-content: start;
    }

    .partners-grid-bottom::-webkit-scrollbar {
        height: 0px;
    }

    .partner-item img {
        max-width: 120px;
        max-height: 80px;
    }

    .partners-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Nominations Section Mobile */
    .nominations-section {
        padding: 40px 20px 60px;
    }

    .nominations-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .accordion-header {
        font-size: 16px;
        padding: 5px 20px;
    }

    .accordion-icon {
        width: 40px;
        height: 36px;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .accordion-content.active {
        padding: 10px 20px 20px;
    }

    /* ------------------------------------- */
    /* Nominations Overview moved to EOF     */
    /* ------------------------------------- */

    .nominations-list li {
        font-size: 12px;
        padding: 5px 0;
    }

    .nominations-apply-btn {
        padding: 12px 50px;
        font-size: 12px;
    }

    /* Participate Section Mobile */
    .participate-section {
        padding: 40px 20px 60px;
    }

    .participate-section .section-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .participate-description {
        font-size: 12px;
        margin-bottom: 40px;
        width: 100%;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .requirement-image {
        width: 200px;
        height: 130px;
        margin-bottom: 20px;
    }

    .requirement-item h3 {
        font-size: 16px;
    }

    /* Jury Section Mobile */
    .jury-header {
        padding: 40px 20px;
    }

    .jury-section .section-title {
        font-size: 32px;
    }

    .jury-content {
        padding: 40px 20px;
    }

    .jury-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .jury-member {
        flex-direction: column;
    }

    .jury-member:first-child {
        display: flex;
    }

    .jury-grid.show-all .jury-member {
        display: flex;
    }

    .jury-photo {
        width: 85%;
        height: 300px;
        border-radius: 0 20px 20px 0;
    }

    .jury-photo img {
        object-position: top;
    }

    .jury-photo-bg {
        left: 0%;
        top: 0;
        width: 10%;
        height: 300px;
        border-radius: 0 20px 20px 0;
    }

    .jury-info {
        padding: 20px;
    }

    .jury-name {
        font-size: 16px;
    }

    .jury-position {
        font-size: 10px;
    }

    .jury-more-btn {
        display: block;
        margin: 30px auto 0;
        background: var(--primary-color);
        color: var(--dark-bg);
        border: none;
        padding: 12px 50px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 10px;
        text-transform: capitalize;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }



    .jury-more-btn:hover {
        background: #9ec230;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(180, 214, 62, 0.4);
    }

    .jury-grid.show-all+.jury-more-btn {
        display: none;
    }

    /* Speakers Section Mobile */
    .speakers-section {
        padding: 40px 0 60px;
    }

    .speakers-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .speakers-timeline {
        padding-left: 20px;
        gap: 30px;
    }

    .speaker-item {
        gap: 15px;
    }

    .speaker-photo {
        width: 100px;
        height: 100px;
    }

    .timeline-line::before {
        width: 40px;
    }

    .timeline-line::after {
        width: 100px;
    }

    .timeline-dot {
        width: 14px;
        height: 14px;
        margin: 0 10px;
    }

    .speaker-info {
        width: 350px;
    }

    .speaker-time {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .speaker-name {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .speaker-title {
        font-size: 8px;
    }

    /* Tickets Section Mobile */
    .tickets-header {
        padding: 40px 20px;
    }

    .tickets-section .section-title {
        font-size: 32px;
    }

    .tickets-content {
        padding: 40px 20px;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }

    .ticket-card {
        padding: 20px;
        border-radius: 20px;
    }

    .ticket-card.featured {
        transform: translateY(0);
    }

    .ticket-card.featured:hover {
        transform: translateY(-10px);
    }

    .price-amount {
        font-size: 20px;
    }

    .ticket-name {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .ticket-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .ticket-features {
        margin-bottom: 20px;
    }

    .ticket-features li {
        font-size: 14px;
    }

    .feature-check {
        font-size: 18px;
    }

    .btn-ticket {
        font-size: 16px;
        padding: 10px 30px;
    }

    .tickets-note {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 15px;
    }



    /* Venue Section Mobile */
    .venue-header {
        padding: 40px 20px;
    }

    .venue-header .section-title {
        font-size: 32px;
    }

    .venue-content {
        padding: 40px 20px;
        min-height: 60vh;
    }

    .venue-date {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .venue-name {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .venue-location {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .btn-venue-map {
        font-size: 16px;
        padding: 12px 40px;
    }

    /* Contact Section Mobile */
    .contact-header {
        padding: 40px 20px;
    }

    .contact-header .section-title {
        font-size: 32px;
    }

    .contact-content {
        padding: 40px 20px;
    }

    .contact-form {
        max-width: 100%;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input {
        padding: 12px 0;
        font-size: 12px;
    }

    .btn-contact-submit {
        font-size: 12px;
        padding: 12px 50px;
        margin-top: 30px;
    }

    .contact-message {
        font-size: 6px;
        padding: 15px;
        margin-bottom: 20px;
    }

    /* FAQ Section Mobile */
    .faq-section {
        padding: 40px 20px 60px;
    }

    .faq-section .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .faq-accordion {
        max-width: 100%;
    }

    .faq-accordion .accordion-header {
        font-size: 12px;
        padding: 8px 15px;
    }

    .faq-accordion .accordion-icon {
        width: 36px;
        height: 32px;
    }

    .faq-accordion .accordion-content {
        padding: 0 15px;
    }

    .faq-accordion .accordion-content.active {
        padding: 15px;
    }

    .faq-answer {
        font-size: 8px;
    }

    /* Footer Mobile */
    .site-footer {
        padding: 40px 20px 30px;
    }

    .footer-nav {
        display: none;
    }

    .footer-nav-link {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        font-size: 6px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .footer-legal-link {
        font-size: 6px;
    }
}

/* ============================================================
   Program Section & Modal
   ============================================================ */

.program-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.program-title {
    font-size: 42px;
    font-weight: 400;
    color: var(--text-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 60px;
}

.program-list {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-item {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 30px;
}

.program-time {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
    flex-shrink: 0;
}

.program-desc {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.program-sub-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.program-actions {
    text-align: center;
    margin-top: 60px;
}

.program-open-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(180, 214, 62, 0.3);
}

/* Modal Popup */
.program-modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.program-modal-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.program-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(5px);
}

.program-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: var(--dark-bg);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 50px 0;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.program-modal-wrapper.active .program-modal-content {
    transform: translateY(0);
}

.program-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    display: flex;
    transition: transform 0.3s ease;
}

.program-modal-close:hover {
    transform: scale(1.1);
}

.program-modal-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 40px 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.program-modal-scroll {
    overflow-y: auto;
    padding: 0 40px 20px;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.program-modal-scroll::-webkit-scrollbar {
    width: 6px;
}

.program-modal-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.program-modal-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.program-modal-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .program-title {
        font-size: 32px;
    }

    .program-item {
        gap: 20px;
    }

    .program-time {
        font-size: 16px;
        min-width: 80px;
    }

    .program-desc {
        font-size: 16px;
    }

    .program-modal-content {
        padding: 40px 0;
    }

    .program-modal-title {
        font-size: 22px;
        margin: 0 20px 20px;
        padding-bottom: 20px;
    }

    .program-modal-scroll {
        padding: 0 20px 10px;
    }
}


/* =============================================
   Formats Section — Redesigned (Figma)
   "UBS 2026 это не просто конференция"
   2-column: text left / organizer card right
   ============================================= */
.formats-section {
    background: #C7D2E9;
    padding: 100px 0 120px;
}

/* 2-column layout */
.formats-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* LEFT column */
.formats-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.formats-section-title {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 700;
    color: #212123;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0;
}

.formats-description-text {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 300;
    color: #212123;
    line-height: 1.75;
}

.formats-description-text p {
    margin: 0 0 16px;
}

.formats-description-text p:last-child {
    margin-bottom: 0;
}

/* RIGHT column — organizer card */
.formats-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.formats-organizer-card {
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Organizer photo — fills top of card */
.formats-organizer-photo {
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    padding: 15px;
}

.formats-organizer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 10px;
}

/* Info block below photo */
.formats-organizer-info {
    padding: 28px 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.formats-organizer-label {
    font-family: var(--font-primary);
    font-size: 23px;
    font-weight: 700;
    color: #212123;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
}

.formats-organizer-name {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #212123;
    margin: 0;
    text-transform: uppercase;
}

.formats-organizer-desc {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: #444;
    line-height: 1.5;
    margin: 4px 0 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .formats-layout {
        gap: 48px;
    }
    .formats-section-title {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .formats-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .formats-section-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .formats-section {
        padding: 70px 0 80px;
    }
    .formats-section-title {
        font-size: 28px;
    }
    .formats-organizer-info {
        padding: 20px 20px 24px;
    }
}

.speaker-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
/* --- UBA NEW DESIGN OVERRIDES --- */
:root {
    --primary-color: #d6f24b; /* New vibrant green/yellow */
}

/* Nav Pill */
.main-navigation {
    background: transparent !important;
}
.nav-menu {
    background: rgba(26, 26, 26, 0.85);
    border-radius: 40px;
    display: flex;
    gap: 0;
    align-items: center;
    overflow: hidden;
}
.nav-menu li {
    display: flex;
    align-items: center;
}
.nav-menu li:not(:last-child):not(.nav-btn-item):not(:has(+ .nav-btn-item)) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-menu li a {
    color: #fff;
    font-size: 14px;
    padding: 12px 24px;
    text-transform: uppercase;
    font-weight: 500;
}
.nav-menu li a::after {
    display: none;
}
.nav-menu li.nav-btn-item {
    margin-left: auto;
}
.nav-menu li.nav-btn-item a {
    background: var(--primary-color);
    color: #000;
    margin-left: -10px;
    border-radius: 0 40px 40px 0;
    padding-left: 30px;
    padding-right: 30px;
    /* Ticket stub cutout effect on the left */
    -webkit-mask: radial-gradient(circle 8px at left center, transparent 8px, black 9px);
    mask: radial-gradient(circle 8px at left center, transparent 8px, black 9px);
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-menu li.nav-btn-item a:hover {
    background: #bceb00;
}

/* Hero Section */
.hero-section--new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #111;
    overflow: hidden;
    padding: 0;
}
.hero-image-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}
.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-curved-overlay {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 85%;
    height: 140%;
    background: #1e1e1e;
    border-radius: 0 50% 50% 0;
    z-index: 2;
    box-shadow: 20px 0 50px rgba(0,0,0,0.5);
}
.hero-section--new .hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: left;
}
.hero-meta-new {
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}
.hero-section--new .hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 40px;
    max-width: 60%;
    color: #fff;
}
.hero-buttons-new {
    display: flex;
    gap: 20px;
}
.hero-buttons-new .btn {
    border-radius: 40px;
    padding: 15px 40px;
}
.hero-buttons-new .btn-primary {
    background: var(--primary-color);
    color: #000;
}
.hero-buttons-new .btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}
.hero-buttons-new .btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

@media (max-width: 1024px) {
    .hero-curved-overlay {
        width: 120%;
        border-radius: 0 0 50% 50%;
        left: -10%;
        top: -10%;
        height: 70%;
    }
    .hero-image-right {
        width: 100%;
        height: 50%;
        top: 50%;
    }
    .hero-section--new .hero-content-wrapper {
        padding-top: 100px;
    }
    .hero-meta-new {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- Numbers Section (Мы в цифрах) --- */
.numbers-section {
    background: #111;
    padding: 100px 0;
    color: #fff;
    font-family: var(--font-primary);
}
.numbers-section-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}
.numbers-section-header .section-tag {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.numbers-layout {
    display: flex;
    gap: 30px;
}
.numbers-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    width: 40%;
    color: #111;
    display: flex;
    flex-direction: column;
}
.numbers-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.numbers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.numbers-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 4px;
}
.numbers-tabs .tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #111;
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
    text-transform: uppercase;
}
.numbers-tabs .tab-btn.active {
    background: #202224;
    color: #fff;
}
.numbers-desc-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.numbers-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    padding: 0 15px;
}
.btn-block {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 15px;
    margin-top: auto;
}

.numbers-stats-grid {
    width: 60%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}
.stat-card-wide {
    grid-column: 1 / -1;
}
.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.stat-value {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
}
.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    /* border: 1px dashed rgba(255,255,255,0.2); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
}
.stat-icon-wrapper svg {
    width: 24px;
    height: 24px;
}
.stat-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #ddd;
}
.stat-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin-top: auto;
    max-width: 90%;
}

@media (max-width: 1024px) {
    .numbers-layout {
        flex-direction: column;
    }
    .numbers-info-card, .numbers-stats-grid {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .numbers-stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-card-wide {
        grid-column: 1;
    }
}

/* ------------------------------------- */
/* Nominations Overview (Teaser) — Figma 354:3753 */
/* ----------------------------------------------- */
.nom-overview-section {
    background: var(--dark-bg);
    padding: 80px 0 100px;
}
.nom-overview-inner {
    max-width: 1860px;
    margin: 0 auto;
    padding: 0 43px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
}
.nom-overview-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: #fff;
    text-align: center;
    margin: 0;
    letter-spacing: 0;
    line-height: 54px;
}
.nom-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 584px));
    gap: 23px;
    justify-content: center;
    width: 100%;
}

/* Card — Figma: 584×285px, content left:28 top:49, image left:338 top:28 */
.nom-overview-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    padding: 28px;
}
.nom-overview-card-content {
    width: 50%;
    flex-shrink: 0;
    padding-top: 21px; /* 28px card padding + 21px = 49px from card top */
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.nom-overview-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #070707;
    margin: 0;
    letter-spacing: 0;
    line-height: 29.7px;
    text-transform: uppercase;
}
.nom-overview-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #202224;
    margin: 0;
}
.nom-overview-card-desc p { margin: 0; }

/* Image — Figma: 218×229px, border-radius:20px, at card's top:28px (card padding) */
.nom-overview-card-image {
    width: 50%;
    height: 100%;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
}
.nom-overview-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA button — Figma: 434×78px, rounded-33px, Bebas Neue 24px */
.nom-overview-action { display: contents; }
.nom-overview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: #202224;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.04em;
    text-decoration: none;
    height: 78px;
    padding: 0 52px;
    border-radius: 33px;
    min-width: 434px;
    transition: background 0.2s, transform 0.2s;
}
.nom-overview-btn:hover {
    background: #bedd3d;
    transform: translateY(-2px);
}

@media (max-width: 1400px) {
    .nom-overview-grid { grid-template-columns: repeat(3, 1fr); }
    .nom-overview-card { height: auto; min-height: 240px; padding: 20px; }
    .nom-overview-card-content { width: auto; flex: 1; min-width: 0; }
    .nom-overview-card-image { width: 160px; height: 190px; }
}
@media (max-width: 900px) {
    .nom-overview-grid { grid-template-columns: 1fr; }
    .nom-overview-card { max-width: 584px; margin: 0 auto; width: 100%; }
    .nom-overview-inner { gap: 32px; }
    .nom-overview-btn { min-width: unset; width: 100%; max-width: 434px; }
}
@media (max-width: 600px) {
    .nom-overview-title { font-size: 48px; line-height: 1; }
    .nom-overview-inner { padding: 0 20px; gap: 24px; }
    .nom-overview-card { flex-direction: column; height: auto; padding: 20px; gap: 16px; }
    .nom-overview-card-content { width: 100%; padding-top: 0; }
    .nom-overview-card-image { width: 100%; height: 200px; border-radius: 14px; }
    .nom-overview-btn { padding: 0 32px; font-size: 20px; height: 64px; }
}

/* ==========================================================================
   Inner Pages — Jury / Nominations / Jury Apply
   ========================================================================== */

.jury-page,
.nom-page,
.jury-apply-page {
    background: #202224;
    color: #fff;
    min-height: 100vh;
}

/* --- Shared inner-page hero --- */
.jury-page-hero,
.jury-apply-hero {
    padding: 140px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.jury-page-title,
.jury-apply-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    color: #fff;
    letter-spacing: 0.02em;
    margin: 0 0 20px;
    line-height: 1;
}

.jury-page-subtitle,
.jury-apply-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    line-height: 1.6;
    margin: 0 0 32px;
}

/* --- Back link --- */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    transition: color 0.2s;
}
.back-link:hover { color: var(--primary-color); }

/* ==========================================================================
   Jury Page
   ========================================================================== */

.jury-apply-hero-btn { margin-top: 8px; }

.jury-page-grid-section { padding: 80px 0; }

.jury-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.jury-page-cta-section {
    padding: 80px 0 100px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.jury-page-cta { text-align: center; }
.jury-page-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    color: #fff;
    letter-spacing: 0.02em;
    margin: 0 0 16px;
}
.jury-page-cta-text {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 32px;
}

/* ==========================================================================
   Nominations Page
   ========================================================================== */

.nom-page-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 43px;
}

/* Nominations Page Content — Figma 354:3820 */
.nom-page-content {
    padding: 107px 0 80px;
}

/* Title */
.nom-page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: #fff;
    text-align: center;
    letter-spacing: 0.02em;
    margin: 0 0 0 0;
    line-height: 87px;
}

/* Segmented pill control */
.nom-seg-control {
    display: flex;
    gap: 2px;
    margin-bottom: 43px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.nom-seg-control::-webkit-scrollbar { display: none; }
.nom-seg-btn {
    flex: 1 0 auto;
    min-width: 140px;
    height: 58px;
    background: #fff;
    border: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #212123;
    cursor: pointer;
    padding: 0 28px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
    border-radius: 0;
}
.nom-seg-btn--first { border-radius: 50px 0 0 50px; }
.nom-seg-btn--last  { border-radius: 0 50px 50px 0; }
.nom-seg-btn.active { background: var(--primary-color); color: #202224; }
.nom-seg-btn:hover:not(.active) { background: rgba(255,255,255,0.88); }

/* Panels */
.nom-panel { display: none; }
.nom-panel.active { display: block; }

/* White card */
.nom-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    min-height: 526px;
}

/* Photo column */
.nom-card-photo {
    width: 319px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 26px;
}
.nom-card-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Nominations list */
.nom-card-body {
    flex: 1;
    padding: 50px 40px 50px 34px;
    display: flex;
    align-items: flex-start;
}
.nom-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.nom-card-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: #070707;
    letter-spacing: 0;
    line-height: 1.15;
    text-transform: uppercase;
}


/* Nomination items are clickable — style the button as Figma text */
.nom-card-item .nomination-apply-btn {
    display: block;
    width: auto;
    padding: 0;
    background: none;
    border: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #070707;
    text-align: left;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
}
.nom-card-item .nomination-apply-btn:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nom-card-empty {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: rgba(0,0,0,0.35);
    margin: 0;
}

/* Action buttons */
.nom-card-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 34px 34px 34px 20px;
    justify-content: flex-start;
    flex-shrink: 0;
}
.nom-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 282px;
    height: 54px;
    border-radius: 33px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
}
.nom-card-btn--lime { background: var(--primary-color); color: #000; }
.nom-card-btn--dark { background: #212123; color: var(--primary-color); }
.nom-card-btn:hover { transform: translateY(-2px); opacity: 0.88; }

/* Nominations form section */
.nom-page-form-section {
    padding: 80px 0 100px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.nom-page-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    color: #fff;
    letter-spacing: 0.02em;
    margin: 0 0 48px;
    line-height: 1;
}
.nom-page-form-wrap { max-width: 800px; }

/* ==========================================================================
   Jury Apply Page
   ========================================================================== */

.jury-apply-form-section { padding: 60px 0 100px; }

.jury-apply-form-inner { max-width: 760px; }

/* Shared form styles for new inner pages */
.uba-jury-apply-form-wrap .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.uba-jury-apply-form-wrap .form-row--two { flex-direction: row; }
.uba-jury-apply-form-wrap .form-row--submit { padding-top: 8px; }

.uba-jury-apply-form-wrap .form-group { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.uba-jury-apply-form-wrap .form-group--checkbox { flex-direction: row; align-items: flex-start; gap: 12px; }

.uba-jury-apply-form-wrap label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.uba-jury-apply-form-wrap label .req { color: var(--primary-color); }

.uba-jury-apply-form-wrap input[type="text"],
.uba-jury-apply-form-wrap input[type="email"],
.uba-jury-apply-form-wrap input[type="tel"],
.uba-jury-apply-form-wrap input[type="url"],
.uba-jury-apply-form-wrap select,
.uba-jury-apply-form-wrap textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 14px 16px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
    appearance: none;
}
.uba-jury-apply-form-wrap select {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.uba-jury-apply-form-wrap select option { background: #111; color: #fff; }

.uba-jury-apply-form-wrap input:focus,
.uba-jury-apply-form-wrap select:focus,
.uba-jury-apply-form-wrap textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(214,242,75,0.04);
}
.uba-jury-apply-form-wrap textarea { resize: vertical; min-height: 130px; }

.uba-jury-apply-form-wrap input::placeholder,
.uba-jury-apply-form-wrap textarea::placeholder { color: rgba(255,255,255,0.25); }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    color: rgba(255,255,255,0.6) !important;
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.uba-jury-apply-messages {
    padding: 0;
    margin-bottom: 16px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.5;
}
.uba-jury-apply-messages p { margin: 0; padding: 14px 18px; border-radius: 10px; }
.uba-jury-apply-messages.success p { background: rgba(0,163,42,0.15); color: #4caf50; border: 1px solid rgba(0,163,42,0.3); }
.uba-jury-apply-messages.error p   { background: rgba(214,38,38,0.12); color: #ef5350; border: 1px solid rgba(214,38,38,0.25); }

.uba-jury-apply-notice {
    padding: 40px;
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    color: rgba(255,255,255,0.6);
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .nom-card-actions { padding: 28px 24px 28px 16px; }
    .nom-card-btn { width: 240px; font-size: 17px; }
}

@media (max-width: 900px) {
    .nom-card { flex-wrap: wrap; }
    .nom-card-photo { width: 100%; height: 280px; }
    .nom-card-photo img { position: relative; inset: auto; width: 100%; height: 280px; }
    .nom-card-body { padding: 32px 24px 24px; }
    .nom-card-actions { flex-direction: row; flex-wrap: wrap; padding: 0 24px 32px; gap: 12px; }
    .nom-card-btn { width: auto; flex: 1; min-width: 200px; }
}

@media (max-width: 768px) {
    .jury-page-hero,
    .jury-apply-hero { padding: 120px 0 40px; }

    .nom-page-inner { padding: 0 20px; }
    .nom-page-content { padding-top: 90px; }
    .nom-page-title { font-size: 48px; line-height: 1; margin-bottom: 24px; }
    .nom-seg-control { flex-wrap: wrap; gap: 8px; overflow-x: visible; }
    .nom-seg-btn { flex: none; width: auto; padding: 0 20px; height: 48px; min-width: unset; }
    .nom-seg-btn--first, .nom-seg-btn--last { border-radius: 50px; }
    .nom-card-list { gap: 18px; }
    .nom-card-item { font-size: 22px; }
    .nom-card-item .nomination-apply-btn { font-size: 22px; }

    .uba-jury-apply-form-wrap .form-row--two { flex-direction: column; }
    .jury-page-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 480px) {
    .jury-page-grid { grid-template-columns: 1fr; }
    .nom-card-btn { width: 100%; min-width: unset; }
    .nom-card-item { font-size: 18px; }
    .nom-card-item .nomination-apply-btn { font-size: 18px; }
    .nom-card-list { gap: 14px; }
}

/* ==========================================================================
   Mobile — Figma 362:130 "main mob" (≤768px)
   ========================================================================== */

@media (max-width: 768px) {

    /* --- Container --- */
    .container { padding-left: 16px; padding-right: 16px; }

    /* ---- Hero ---- */
    .hero-section--new {
        min-height: 560px;
        height: 560px;
        align-items: flex-start;
    }
    .hero-image-right {
        width: 100%;
        height: 100%;
        top: 0;
    }
    .hero-curved-overlay { display: none; }
    /* Dark tint over full-width background photo */
    .hero-section--new::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 2;
    }
    .hero-section--new .hero-content-wrapper {
        position: relative;
        z-index: 3;
        padding: 146px 10px 0;
        width: 100%;
    }
    .hero-meta-new {
        font-size: 18px;
        justify-content: flex-start;
        gap: 60px;
        margin-bottom: 16px;
        letter-spacing: 0.02em;
    }
    .hero-section--new .hero-title {
        font-size: 40px;
        line-height: 38px;
        margin-bottom: 24px;
        max-width: 100%;
    }
    .hero-buttons-new {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .hero-buttons-new .btn {
        width: 100%;
        max-width: 300px;
        height: 52px;
        padding: 0 24px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        letter-spacing: 0.05em;
    }

    /* ---- Numbers / About section ---- */
    .numbers-section {
        background: #202224;
        padding: 50px 16px;
    }
    .numbers-section .container { padding: 0; }
    .numbers-section-header { justify-content: flex-end; margin-bottom: 16px; }
    .numbers-layout { flex-direction: column; gap: 24px; }
    .numbers-info-card {
        width: 100%;
        border-radius: 12px;
        padding: 10px;
    }
    .numbers-image {
        height: 211px;
        border-radius: 10px;
        margin-bottom: 12px;
    }
    .numbers-tabs {
        gap: 0;
        padding: 0;
        border-radius: 50px;
        height: 52px;
        background: transparent;
        border: none;
        overflow: hidden;
        margin-bottom: 14px;
    }
    .numbers-tabs .tab-btn {
        flex: 1;
        height: 52px;
        border-radius: 0;
        padding: 0;
        font-size: 14px;
        font-family: 'Bebas Neue', sans-serif;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }
    .numbers-tabs .tab-btn:first-child {
        border-radius: 50px 0 0 50px;
    }
    .numbers-tabs .tab-btn:last-child {
        border-radius: 0 50px 50px 0;
        background: #fff;
        color: #202224;
        border: 1px solid #dedede;
    }
    .numbers-tabs .tab-btn.active {
        background: #202224;
        color: #fff;
    }
    .numbers-tabs .tab-btn:last-child.active {
        background: #202224;
        color: #fff;
        border-color: #202224;
    }
    .numbers-desc { font-size: 14px; padding: 0 8px; margin-bottom: 16px; }
    .btn-block {
        height: 52px;
        border-radius: 50px;
        font-size: 16px;
        padding: 0;
    }

    /* Stat cards — mobile: lime-bordered, dark bg, stacked */
    .numbers-stats-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stat-card {
        background: #202224;
        border: 0.5px solid rgba(210, 238, 78, 0.15);
        border-radius: 12px;
        padding: 24px 20px;
        min-height: 200px;
    }
    .stat-card-wide { grid-column: 1; }
    .stat-header { margin-bottom: 12px; align-items: flex-start; }
    .stat-value {
        font-size: 32px;
        font-family: 'Manrope', sans-serif;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1;
    }
    .stat-icon-wrapper { width: 70px; height: 70px; }
    .stat-icon-wrapper img { width: 70px; height: 70px; }
    .stat-label {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #fff;
    }
    .stat-desc { font-size: 12px; color: rgba(255,255,255,0.7); }

    /* ---- Nominations overview (main page teaser) ---- */
    .nom-overview-section { padding: 48px 0 60px; }
    .nom-overview-inner { padding: 0 16px; gap: 24px; }
    .nom-overview-title { font-size: 40px; line-height: 1; }
    .nom-overview-grid { grid-template-columns: 1fr; gap: 16px; }
    .nom-overview-card {
        flex-direction: row;
        height: auto;
        min-height: 160px;
        padding: 16px;
        align-items: center;
        gap: 16px;
    }
    .nom-overview-card-content {
        width: auto;
        flex: 1;
        padding-top: 0;
        gap: 10px;
    }
    .nom-overview-card-title { font-size: 20px; line-height: 1.2; }
    .nom-overview-card-desc { font-size: 13px; }
    .nom-overview-card-image { width: 110px; height: 120px; border-radius: 12px; flex-shrink: 0; }
    .nom-overview-btn {
        min-width: unset;
        width: 100%;
        height: 60px;
        font-size: 18px;
        border-radius: 50px;
        padding: 0 24px;
    }

    /* ---- Jury section ---- */
    .jury-section { padding: 40px 0 56px; }
    .jury-inner { padding: 0 16px; }
    .jury-top-bar { margin-bottom: 24px; gap: 16px; flex-direction: column; align-items: flex-start; }
    .jury-section-title { font-size: 30px; }
    .jury-filter-bar { flex-wrap: wrap; gap: 6px; }
    .jury-filter-btn { height: 40px; padding: 0 18px; font-size: 13px; }
    .jury-filter-btn:first-child { border-radius: 50px; }
    .jury-filter-btn:last-child  { border-radius: 50px; }
    .jury-filter-btn:not(:first-child):not(:last-child) { border-radius: 50px; }

    /* Slider becomes vertical list */
    .jury-slider-viewport {
        overflow-x: visible;
        margin: 0;
        padding: 0;
    }
    .jury-slider-track {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        transform: none !important;
        padding-bottom: 0;
    }

    /* Cards: horizontal row (photo left, content right) */
    .jury-card {
        width: 100%;
        height: 235px;
        flex-direction: row;
        border-radius: 12px;
        flex-shrink: 0;
    }
    .jury-card-photo {
        width: 111px;
        min-width: 111px;
        height: 100%;
        flex-shrink: 0;
    }
    .jury-card-body {
        flex: 1;
        padding: 14px 12px;
        justify-content: space-between;
        min-width: 0;
    }
    .jury-card-info { gap: 4px; }
    .jury-card-name { font-size: 16px; }
    .jury-card-position { font-size: 12px; -webkit-line-clamp: 5; }
    .jury-card-actions { flex-direction: column; gap: 8px; margin-top: 8px; }
    .jury-btn { height: 28px; font-size: 12px; border-radius: 17px; padding: 0 16px; }
    .jury-nav-arrows { display: none; }

    /* ---- Jury popup ---- */
    .jury-popup-modal {
        flex-direction: column;
        border-radius: 16px;
        max-height: 90dvh;
        width: calc(100vw - 32px);
    }
    .jury-popup-photo-col { width: 100%; height: 200px; flex-shrink: 0; }
    .jury-popup-content-col { padding: 20px 16px; }

    /* ---- About section ---- */
    .about-section { padding: 60px 0; min-height: auto; }
    .about-title { font-size: 36px; }

    /* ---- Partners ---- */
    .partners-section { padding: 48px 0; }
    .partners-section-title { font-size: 36px; }
    .partners-grid-new { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .partner-card { min-height: 66px; border-radius: 8px; }

    /* ---- Footer ---- */
    .footer-nav-menu { flex-wrap: wrap; gap: 12px 20px; justify-content: center; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; }

}

@media (max-width: 480px) {
    /* Hero */
    .hero-section--new { height: auto; min-height: 520px; }
    .hero-section--new .hero-content-wrapper { padding-top: 120px; }
    .hero-meta-new { gap: 32px; font-size: 16px; }
    .hero-section--new .hero-title { font-size: 34px; line-height: 34px; }

    /* Numbers */
    .numbers-section { padding: 40px 12px; }
    .stat-card { min-height: 180px; padding: 20px 16px; }

    /* Jury cards */
    .jury-card { height: auto; min-height: 200px; }
    .jury-card-photo { width: 90px; min-width: 90px; min-height: 200px; }
    .jury-card-name { font-size: 14px; }

    /* Nominations overview */
    .nom-overview-card-image { width: 90px; height: 100px; }
    .nom-overview-card-title { font-size: 18px; }
}
