/* Video modal */
#popupModal {
    z-index: 99999 !important;
}
#popupModal .modal-dialog {
    max-width: 900px !important;
    width: 90vw;
}
#popupModal .modal-content {
    background: #000 !important;
    width: 100%;
    max-width: 900px;
}
.modal-backdrop {
    z-index: 99998 !important;
}

/* Hide sticky SEA button on this page only */
.btn-cbf-menu {
    display: none !important;
}

/* Hide language switcher on this page only */
.dropdown-language {
    display: none !important;
}

/* Cabal Fest Page Base */
body {
    background: url('../images/cbf-bg.webp') center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #060e10;
}

p, h3, span {
    font-family: 'Google Sans Flex', 'Noto Sans Thai', sans-serif !important;
}

@media (max-width: 1024px) {
    body {
        background-image: url('../images/cbf-bg-md.webp');
    }
}

@media (max-width: 768px) {
    body {
        background-image: url('../images/cbf-bg-sm.webp');
        background-attachment: scroll;
    }
}

/* Cabal Fest Section 1 Styles */
.section-hero {
    position: relative;
    width: 100%;
    background: url('../images/cbf-header-bg.webp') center top no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 330px;
    padding-bottom: 50px;
    overflow: hidden;
}

.section-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6,14,16,0) 40%, rgba(6,14,16,0.85) 80%, rgba(6,14,16,1) 100%);
    pointer-events: none;
    z-index: 1;
}




.hero-logo {
    width: 100%;
    max-width: 450px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.5));
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.countdown-number, .countdown-colon {
    font-family: 'house-of-cards', sans-serif !important;
    font-size: 85px;
    line-height: 1;
    /* Precise Figma Silver Gradient */
    background: linear-gradient(180deg, #8E9BA2 20%, #FFFFFF 45.263%, #8E9BA2 70.526%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1.072px 1.072px 0px #565656) drop-shadow(3.217px 3.217px 4.611px rgba(0,0,0,0.42));
    font-weight: bold;
}

.countdown-colon {
    margin: -10px 5px 0 5px; /* Alignment tweak for the colon */
    padding-bottom: 10px;
}

.hero-text-content {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'house-of-cards', sans-serif !important;
    font-size: 48px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #8E9BA2 20%, #FFFFFF 45.263%, #8E9BA2 70.526%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1.504px 1.504px 0px #565656) drop-shadow(4.512px 4.512px 6.468px rgba(0,0,0,0.42)) drop-shadow(1.576px 1.576px 24.2px #000);
    margin-bottom: 5px;
}

.hero-subtitle {
    font-family: 'house-of-cards', sans-serif !important;
    font-size: 32px;
    /* Figma Subtitle: white 48% overlay style */
    background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0.48)), linear-gradient(180deg, #FFF3A3 20%, #D5A44F 70.526%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0.525px 0.525px 0px #565656) drop-shadow(1.576px 1.576px 24.2px #000);
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

@media (max-width: 480px) {
    .hero-btn-group {
        flex-direction: column;
        gap: 12px;
    }
}

.btn-pre-reg {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-pre-reg img {
    display: block;
    width: 308px;
    height: auto;
    object-fit: contain;
}

.section-hero .btn-pre-reg img {
    width: 373px;
}

.btn-pre-reg:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* ---- XL Desktop (> 1920px) ---- */
@media (min-width: 1921px) {
    .section-hero {
        background: #000 url('../images/cbf-header-xl.webp') center top / auto no-repeat;
    }
}

/* ---- Tablet (≤ 768px) ---- */
@media (max-width: 768px) {
    .section-hero {
        padding-top: 240px;
        background-image: url('../images/cbf-header-bg-md.webp');
        
    }
    .hero-logo {
        max-width: 280px;
    }
    .countdown-number, .countdown-colon {
        font-size: 48px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
    .btn-pre-reg img {
        width: 200px;
    }
    .section-hero .btn-pre-reg img {
    width: 240px;
}
}

/* ---- Mobile (≤ 480px) ---- */
@media (max-width: 480px) {
    .section-hero {
        padding-top: 200px;
        background-image: url('../images/cbf-header-bg-sm.webp');
      
    }
    .hero-logo {
        max-width: 200px;
    }
    .countdown-number, .countdown-colon {
        font-size: 37px;
        gap: 4px;
    }
    .countdown-container {
        gap: 4px;
    }
    .hero-title {
        font-size: 22px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .btn-pre-reg img {
        width: 200px;
    }
    .section-hero .btn-pre-reg img {
    width: 240px;
}
}

/* Section 2: How to Pre-Reg Styles */
.section-how-to {
    position: relative;
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    z-index: 2;
}

.section-how-to::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(6,14,16,1) 0%, rgba(6,14,16,0.8) 60%, rgba(6,14,16,0) 100%);
    pointer-events: none;
    z-index: 0;
}

.section-title-cbf {
    font-family: 'house-of-cards', sans-serif !important;
    font-size: 40px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(top, #8E9BA2 20%, #FFFFFF 45%, #8E9BA2 70%);
    background: linear-gradient(180deg, #8E9BA2 20%, #FFFFFF 45%, #8E9BA2 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1.5px 1.5px 0px #565656) drop-shadow(1.5px 1.5px 10px rgba(0,0,0,0.8));
    margin-bottom: 10px;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
    padding: 0 20px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.step-title {
    font-family: 'house-of-cards', sans-serif !important;
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.step-image-wrapper {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.step-image-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.step-description {
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    font-weight: 400;
    max-width: 280px;
    margin: 0 auto;
}

.step-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 105px; /* Align with center of image (Title ~25px + Margin 25px + half Image 75px) */
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.step-arrow i {
    color: #1fe0f1; /* Brighter cyan to match screenshot */
    font-size: 32px;
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(31, 224, 241, 0.6));
}

.section-how-to .btn-pre-reg-container {
    margin-top: 40px;
}

/* ---- Tablet & Medium Screens ---- */
@media (max-width: 991px) {
    .section-title-cbf {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .steps-container {
        gap: 10px;
    }
    .step-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .step-image-wrapper {
        height: 120px;
        margin-bottom: 15px;
    }
    .step-description {
        font-size: 15px;
        max-width: 200px;
    }
    .step-arrow {
        margin-top: 85px; /* Adjust for smaller icons */
    }
    .step-arrow i {
        font-size: 24px;
    }
}

/* ---- Small Tablet / Large Mobile ---- */
@media (max-width: 768px) {
    .section-how-to {
        padding: 50px 10px;
    }
    .steps-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 5px;
        padding: 0 5px;
    }
    .step-card {
        flex: 1;
        min-width: 0;
    }
    .step-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .step-image-wrapper {
        height: 80px;
        margin-bottom: 10px;
    }
    .step-description {
        font-size: 12px;
        line-height: 1.3;
    }
    .step-arrow {
        margin-top: 60px; /* Adjust for smaller icons (~20px title + 15px margin + 40px half image) */
    }
    .step-arrow i {
        font-size: 16px;
    }
    .section-title-cbf {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* ---- Mobile (Very Small) ---- */
@media (max-width: 480px) {
    .section-how-to {
        padding: 40px 5px;
    }
    .step-title {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .step-image-wrapper {
        height: 60px;
        margin-bottom: 5px;
    }
    .step-description {
        font-size: 10px;
        line-height: 1.2;
    }
    .step-arrow {
        margin-top: 45px; /* Adjust for very small icons */
    }
    .step-arrow i {
        font-size: 12px;
    }
    .section-title-cbf {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

/* Section 3: Event Intro Styles */
.section-event-intro {
    position: relative;
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.section-event-intro .section-title-cbf {
    margin-bottom: 50px;
    font-size: 36px;
}

.video-frame-container {
    position: relative;
    width: 100%;
    max-width: 880px;
    margin: 0 auto 0 auto;
}

.video-frame-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.video-frame-bg img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    overflow: hidden;
    z-index: 1;
}

.video-thumbnail-wrapper img.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12%;
    max-width: 120px;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-play-video:hover {
    transform: translate(-50%, -50%) scale(1.1);
    filter: brightness(1.2);
}

.btn-play-video img {
    width: 100%;
    height: auto;
}

.section-event-intro .btn-pre-reg-container {
    position: absolute;
    bottom: -27px; /* Half of button height to overlap frame perfectly */
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.event-description-box {
    max-width: 1065px;
    text-align: center;
    color: #b5b5b5;
    font-size: 18px; /* Slightly smaller for better reading, Figma had 20px */
    line-height: 1.6;
    padding: 0 20px;
    margin-top: 60px;
}

.event-description-box p {
    margin-bottom: 20px;
}

/* ---- Tablet ---- */
@media (max-width: 768px) {
    .section-event-intro {
        padding: 50px 15px;
    }
    .section-event-intro .section-title-cbf {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .video-frame-container {
        max-width: 100%;
    }
    .video-thumbnail-wrapper {
        width: 100%;
        padding-bottom: 56.25%;
    }
    .event-description-box {
        font-size: 15px;
        margin-top: 40px;
    }
    .section-event-intro .btn-pre-reg-container {
        bottom: -15px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 480px) {
    .section-event-intro {
        padding: 30px 15px;
    }
    .section-event-intro .section-title-cbf {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .video-thumbnail-wrapper {
        width: 100%;
        padding-bottom: 56.25%;
    }
    .event-description-box {
        font-size: 13px;
        margin-top: 35px;
    }
    .section-event-intro .btn-pre-reg-container {
        bottom: -12px;
    }
}

/* Section 4: The Teams Styles */
.section-teams {
    position: relative;
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    overflow: hidden; /* Contains the overflowing blurred backgrounds */
}

/* Base background layer for teams section to hold overall atmosphere if needed */
.section-teams::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,167,180,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-teams .section-title-cbf {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.teams-container-wrapper {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}

.teams-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 20px 40px;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.teams-scroll-container::-webkit-scrollbar {
    display: none;
}

.team-card {
    flex: 0 0 auto;
    width: 211px;
    height: 280px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

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

.team-full-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

/* Custom scrollbar */
.teams-scrollbar-track {
    position: relative;
    width: 320px;
    max-width: 80%;
    height: 4px;
    background-color: #203338;
    border-radius: 2px;
    margin: 18px auto 0;
    cursor: pointer;
    z-index: 2;
}

.teams-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #36899E, #7ECFDF);
    border-radius: 2px;
    transition: left 0.1s linear, width 0.1s linear;
    pointer-events: none;
}

/* ---- Tablet ---- */
@media (max-width: 768px) {
    .section-teams {
        padding: 50px 0;
    }
    .team-card {
        width: 115px;
        height: 153px;
    }
    .section-teams .section-title-cbf {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 480px) {
    .section-teams {
        padding: 35px 0;
    }
    .team-card {
        width: 115px;
        height: 153px;
    }
    .section-teams .section-title-cbf {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* =============================================
   Section 5: Activities
   ============================================= */
.section-activities {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 60px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.activity-card {
    position: relative;
    background: #09171b;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
}

.activity-card-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.activity-img-wrapper {
    width: 100%;
    height: 219px;
    overflow: hidden;
    flex-shrink: 0;
}

.activity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.activity-desc {
    font-size: 16px;
    color: #b5b5b5;
    line-height: 1.5;
    margin: 0;
}

.activity-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8d8d8d;
    font-size: 14px;
}

.btn-readmore {
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    transition: filter 0.3s ease;
    z-index: 2;
}

.btn-readmore img {
    display: block;
    width: 219px;
    height: auto;
    object-fit: contain;
}

.btn-readmore:hover {
    transform: translateX(-50%) scale(1.05);
    filter: brightness(1.2);
}

/* Activities Wrapper Base Styles */
.activities-wrapper {
    position: relative;
    width: 100%;
}

.activities-see-more {
    display: none;
}

/* ---- Tablet (<= 991px): 2-column with Expand functionality ---- */
@media (max-width: 991px) {
    .section-activities {
        padding: 50px 15px;
    }
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 15px;
        row-gap: 60px;
        max-width: 720px;
    }
    .activity-img-wrapper {
        height: 170px;
    }
    .activity-title {
        font-size: 17px;
    }
    .activity-desc {
        font-size: 14px;
    }
    .section-activities .section-title-cbf {
        font-size: 28px;
        margin-bottom: 30px;
    }

    /* Expand Functionality */
    .activities-wrapper {
        max-height: 920px;
        overflow: hidden;
        padding-bottom: 40px;
    }
    
    .activities-wrapper.expanded {
        max-height: 5000px;
        transition: max-height 0.8s ease-in-out;
    }

    .activities-see-more {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 12px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 180px; 
        background: linear-gradient(180deg, rgba(6,14,16,0) 0%, rgba(6,14,16,0.9) 60%, rgba(6,14,16,1) 100%);
        font-family: inherit;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        cursor: pointer;
        z-index: 10;
        gap: 8px;
    }
    
    .activities-wrapper.expanded + .activities-see-more {
        background: none;
        position: relative;
        height: auto;
        padding-bottom: 0;
        margin-top: 10px;
    }

    #activitiesSeeMore i {
        transition: transform 0.3s ease;
    }
}

/* ---- Mobile: 1-column ---- */
@media (max-width: 480px) {
    .section-activities {
        padding: 35px 15px;
    }
    .activities-grid {
        grid-template-columns: 1fr;
        row-gap: 60px;
        column-gap: 0;
    }
    .activity-card {
        padding-bottom: 25px;
    }
    .activity-img-wrapper {
        height: 180px;
    }
    .section-activities .section-title-cbf {
        font-size: 22px;
    }
}

/* =============================================
   Section 6 & 7: Broadcast / Co-Streams
   ============================================= */
.section-broadcast,
.section-costreams {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.broadcast-header {
    text-align: center;
    margin-bottom: 30px;
}

.broadcast-subtitle {
    font-size: 18px;
    color: #b5b5b5;
    margin-top: 0;
}

.broadcast-bg {
    width: 100%;
    max-width: 1400px;
    background: linear-gradient(270deg, rgba(40,104,121,0) 0%, rgba(40,104,121,0.10) 30%, rgba(40,104,121,0.10) 70%, rgba(40,104,121,0) 100%);
    padding: 40px 20px;
}

.broadcast-columns,
.costreams-columns {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.broadcast-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    flex: 1;
    min-width: 280px;
    max-width: 420px;
}

.broadcast-divider {
    width: 2px;
    height: 280px;
    background: linear-gradient(180deg, rgba(40,104,121,0) 0%, rgba(40,104,121,0.78) 30%, rgba(40,104,121,0.78) 70%, rgba(40,104,121,0) 100%);
    flex-shrink: 0;
    align-self: center;
}

.broadcast-lang-label {
    display: flex;
    font-weight: 700;
    align-items: center;
    gap: 10px;
    font-family: 'house-of-cards', sans-serif !important;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
}

.flag-icon {
    width: 36px;
    height: auto;
}

.kol-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 360px;
}

.kol-grid--2col {
    max-width: 360px;
}

.kol-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 155px;
}

.kol-photo {
    width: 140px;
    height: auto;
    display: block;
    object-fit: contain;
}

.kol-name {
    font-family: 'house-of-cards', sans-serif !important;
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.btn-watch {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    flex-shrink: 0;
    margin-top: auto;
}

.btn-watch img {
    display: block;
    width: 251px;
    height: auto;
    object-fit: contain;
}

.btn-watch:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.costreams-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* ---- ≤ 1194px: columns shrink, avatars smaller ---- */
@media (max-width: 1194px) {
    .broadcast-col {
        min-width: 220px;
        padding: 0 12px;
        gap: 15px;
    }
    .broadcast-lang-label {
        font-size: 18px;
    }
    .kol-photo {
        width: 110px;
    }
    .kol-card {
        width: 115px;
        gap: 6px;
    }
    .kol-name {
        font-size: 14px;
    }
    .kol-grid {
        gap: 12px;
        max-width: 260px;
    }
    .btn-watch img {
        width: 160px;
    }
    .broadcast-divider {
        height: 240px;
    }
}

/* ---- ≤ 768px: stacked single column, 2×2 grid ---- */
@media (max-width: 768px) {
    .section-broadcast,
    .section-costreams {
        padding: 35px 15px;
    }
    .broadcast-bg {
        padding: 25px 15px;
    }
    .broadcast-columns,
    .costreams-columns {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .broadcast-divider {
        width: 240px;
        height: 2px;
        background: linear-gradient(90deg, rgba(40,104,121,0) 0%, rgba(40,104,121,0.78) 30%, rgba(40,104,121,0.78) 70%, rgba(40,104,121,0) 100%);
        align-self: center;
    }
    .broadcast-col {
        max-width: 340px;
        width: 100%;
        padding: 0;
        gap: 15px;
    }
    .broadcast-lang-label {
        font-size: 17px;
        justify-content: center;
    }
    .kol-grid {
        flex-wrap: wrap;
        gap: 12px;
        max-width: 300px;
        justify-content: center;
    }
    .kol-card {
        width: calc(50% - 6px);
        max-width: 140px;
        gap: 6px;
    }
    .kol-photo {
        width: 100%;
        max-width: 120px;
    }
    .kol-name {
        font-size: 13px;
    }
    .kol-grid--2col .kol-card {
        width: calc(50% - 6px);
        max-width: 140px;
    }
    .kol-grid--2col .kol-name {
        font-size: 13px;
    }
    .btn-watch img {
        width: 160px;
    }
    .broadcast-subtitle {
        font-size: 14px;
    }
    .section-broadcast .section-title-cbf,
    .section-costreams .section-title-cbf {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

/* =============================================
   Section 8: Schedule
   ============================================= */
.section-schedule {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.schedule-img {
    width: 100%;
    max-width: 1088px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .section-schedule {
        padding: 40px 15px;
    }
    .schedule-img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-schedule {
        padding: 30px 10px;
    }
}

/* =============================================
   Section 9: Sponsors
   ============================================= */
.section-sponsors {
    position: relative;
    width: 100%;
    padding: 40px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    overflow: hidden;
}

.sponsors-label {
    font-size: 20px;
    color: #484848;
    margin-bottom: 20px;
    text-align: center;
}

.sponsors-picture {
    display: block;
    width: 100%;
    max-width: 1200px;
}

.sponsors-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .section-sponsors {
        padding: 30px 15px 40px;
    }
    .sponsors-label {
        font-size: 16px;
    }
}
.visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
}
