/* ===== IIR Page Color Palette ===== */
:root {
    --iir-maroon: #772428;
    --iir-plum: #78194c;
    --iir-coral: #c73921;
    --iir-deep: #300f19;
    --iir-gradient: linear-gradient(135deg, #772428, #c73921);
    --iir-gradient-2: linear-gradient(135deg, #78194c, #772428);
    --iir-gradient-3: linear-gradient(135deg, #c73921, #78194c);
}

/* ===== IIR Page Styles ===== */

.main-logo {
    width: 230px;
}

@media (max-width: 600px) {
    .main-logo {
        width: 180px !important;
    }
}

/* Hero Section */
.iir-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #fff;
    background-image: url(../img/shape/29.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.iir-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(119, 36, 40, 0.06);
    border: 1px solid rgba(119, 36, 40, 0.18);
    padding: 8px 22px;
    border-radius: 100px;
    color: var(--iir-maroon);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero-title .accent {
    background: var(--iir-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
    max-width: 650px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

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

    .iir-hero {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

@media (max-width: 1400px) {
    .iir-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

/* About Section */
.about-one {
    padding: 110px 0;
    position: relative;
}

@media (max-width: 768px) {
    .about-one {
        padding: 70px 0;
    }
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

.sub-text {
    font-size: 17px;
    color: #777;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.lead-text {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
}

/* ===== Interactive Cards Container ===== */
.interactive-cards:hover .interactive-card-col:not(:hover) {
    opacity: 0.4;
    filter: blur(1.5px);
    transform: scale(0.97);
}

.interactive-card-col {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* IIR Info Cards */
.iir-info-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.iir-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--iir-gradient-3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.iir-info-card:hover::before {
    transform: scaleX(1);
}

.iir-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(119, 36, 40, 0.1);
    border-color: rgba(119, 36, 40, 0.15);
}

.iir-info-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(119, 36, 40, 0.08) 0%, rgba(199, 57, 33, 0.03) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--iir-coral);
    font-size: 32px;
    transition: all 0.4s ease;
}

.iir-info-card:hover .card-icon {
    background: var(--iir-gradient-3);
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}


/* Rising Stars Section */
.rising-stars-section {
    position: relative;
    overflow: hidden;
}

.rising-star-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(120, 25, 76, 0.06);
    border: 1px solid rgba(120, 25, 76, 0.18);
    padding: 10px 24px;
    border-radius: 100px;
    color: var(--iir-plum);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.rising-star-feature {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.rising-star-feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--iir-gradient-2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.rising-star-feature:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.rising-star-feature:hover {
    border-color: rgba(120, 25, 76, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(120, 25, 76, 0.08);
}

.rising-star-feature .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(120, 25, 76, 0.08), rgba(120, 25, 76, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 26px;
    color: var(--iir-plum);
    transition: all 0.4s ease;
}

.rising-star-feature:hover .feature-icon {
    background: var(--iir-gradient-2);
    color: #fff;
    transform: scale(1.08) rotate(5deg);
}

.rising-star-feature h5 {
    color: #222;
    font-weight: 700;
    margin-bottom: 12px;
}

.rising-star-feature p {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Criteria Section */
.criteria-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.criteria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(119, 36, 40, 0.02), rgba(199, 57, 33, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.criteria-card:hover::before {
    opacity: 1;
}

.criteria-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(199, 57, 33, 0.08);
    border-color: rgba(199, 57, 33, 0.2);
}

.criteria-card .criteria-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(199, 57, 33, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--iir-coral);
    transition: all 0.4s ease;
    position: relative;
}

.criteria-card:hover .criteria-icon {
    background: var(--iir-gradient);
    color: #fff;
    transform: scale(1.1) rotate(-8deg);
}

/* Nomination Form Section */
.nomination-section {
    background: #fff;
    position: relative;
}

.nomination-card {
    background: #fff;
    padding: 40px 45px;
    border-radius: 40px;
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.01),
        0 20px 50px rgba(0, 0, 0, 0.04),
        0 40px 100px rgba(0, 0, 0, 0.02);
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nomination-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.01),
        0 30px 70px rgba(119, 36, 40, 0.08),
        0 50px 120px rgba(0, 0, 0, 0.03);
}

.nomination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--iir-maroon), var(--iir-plum), var(--iir-coral), var(--iir-maroon));
    background-size: 300% 100%;
    animation: gradientSlide 4s ease infinite;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .nomination-card {
        padding: 40px 25px;
        border-radius: 20px;
    }
}

.form-control-iir {
    height: 52px;
    border-radius: 14px;
    border: 1.5px solid #f2f2f2;
    padding: 0 22px 0 52px;
    font-size: 15px;
    width: 100%;
    background: #fdfdfd;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #222;
}

.form-control-iir:focus {
    border-color: var(--iir-maroon);
    box-shadow: 0 10px 30px rgba(119, 36, 40, 0.06);
    outline: none;
    background: #fff;
}

.form-label-iir {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: block;
}

.input-iir-wrapper {
    position: relative;
}

.input-iir-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #bbb;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.form-control-iir:focus+.input-iir-icon {
    color: var(--iir-maroon);
}

.btn-nominate {
    background: var(--iir-gradient);
    color: #fff;
    border: none;
    padding: 16px 50px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(119, 36, 40, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-nominate::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-nominate:hover::after {
    left: 100%;
}

.btn-nominate:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(119, 36, 40, 0.35);
    color: #fff;
}

.btn-nominate:active {
    transform: translateY(0);
}

/* Disclaimer */
.disclaimer-section {
    background: #f8f8f8;
    padding: 50px 0;
}

.disclaimer-text {
    font-size: 14px;
    color: #999;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 4px;
    background: var(--iir-gradient-3);
    border-radius: 2px;
    margin: 0 auto 30px;
}

/* Scroll reveal animation */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up.delay-1 {
    transition-delay: 0.1s;
}

.reveal-up.delay-2 {
    transition-delay: 0.2s;
}

.reveal-up.delay-3 {
    transition-delay: 0.3s;
}

.reveal-up.delay-4 {
    transition-delay: 0.4s;
}

/* Error */
.error-msg {
    color: var(--iir-coral);
    font-size: 13px;
    margin-bottom: 12px;
    min-height: 18px;
}

/* Form loader */
.form-loader-iir {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid var(--iir-maroon);
    border-right: 3px solid var(--iir-plum);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Who Can Be section */
.who-can-section {
    position: relative;
}

/* Tilt hover effect for cards */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Staggered entrance animations - Scoped to sections to avoid navbar conflicts */
.nomination-card .col-md-6,
.nomination-card .col-12,
.interactive-cards .col-md-6,
.interactive-cards .col-lg-3 {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUpItem 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.nomination-card .col-md-6:nth-child(1) {
    animation-delay: 0.1s;
}

.nomination-card .col-md-6:nth-child(2) {
    animation-delay: 0.2s;
}

.nomination-card .col-md-6:nth-child(3) {
    animation-delay: 0.3s;
}

.nomination-card .col-md-6:nth-child(4) {
    animation-delay: 0.4s;
}

.nomination-card .col-md-6:nth-child(5) {
    animation-delay: 0.5s;
}

.nomination-card .col-12:nth-child(6) {
    animation-delay: 0.6s;
}

.nomination-card .col-12:nth-child(7) {
    animation-delay: 0.7s;
}

.interactive-cards .col-md-6:nth-child(1) {
    animation-delay: 0.1s;
}

.interactive-cards .col-md-6:nth-child(2) {
    animation-delay: 0.2s;
}

.interactive-cards .col-md-6:nth-child(3) {
    animation-delay: 0.3s;
}

.interactive-cards .col-md-6:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeUpItem {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section color accents */
.section-accent-line {
    width: 80px;
    height: 3px;
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* Card number badge */
.card-num {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(119, 36, 40, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--iir-maroon);
    transition: all 0.3s ease;
}

.iir-info-card:hover .card-num,
.rising-star-feature:hover .card-num {
    background: var(--iir-gradient);
    color: #fff;
}

/* ===== SLIDER 1: Reel Carousel ===== */
.reel-carousel-section {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.reel-carousel-section .section-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 50px;
}

.reel-carousel-section .section-header .header-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--iir-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.reel-carousel-section .section-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.1;
}

.reel-carousel-section .section-header .post-count {
    font-size: 14px;
    color: #aaa;
    font-weight: 500;
}

.reel-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16;
    max-width: 360px;
    /* padding: 20px 0; */
    margin: 0 auto;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reel-card:hover {
    /* transform: translateY(-6px) scale(1.02); */
    box-shadow: 0 20px 50px rgba(119, 36, 40, 0.15);
}

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

.reel-card .play-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
}

.reel-card:hover .play-btn {
    background: var(--iir-coral);
    color: #fff;
    transform: scale(1.1);
}

.reel-card .reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    padding: 50px 18px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.reel-card .creator-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reel-card .creator-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.reel-card .creator-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.2;
}

.reel-card .creator-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.reel-card .ig-icon {
    color: #fff;
    font-size: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.reel-card:hover .ig-icon {
    opacity: 1;
}

/* Reel carousel navigation */
.reel-carousel-wrapper {
    position: relative;
}

.reel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    color: #333;
    font-size: 20px;
}

.reel-nav-btn:hover {
    background: var(--iir-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(119, 36, 40, 0.3);
}

.reel-nav-prev {
    left: -24px;
}

.reel-nav-next {
    right: -24px;
}

@media (max-width: 768px) {
    .reel-carousel-section {
        padding: 60px 0;
    }

    .reel-nav-prev {
        left: -8px;
    }

    .reel-nav-next {
        right: -8px;
    }

    .reel-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .reel-carousel-section .section-header h3 {
        font-size: 20px;
    }
}

/* ===== SLIDER 2: Accordion Expand Slider ===== */
.accordion-slider-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #faf7f7 0%, #f0eaeb 100%);
    overflow: hidden;
}

.accordion-slider-container {
    display: flex;
    gap: 10px;
    height: 520px;
    max-width: 1100px;
    margin: 0 auto;
    perspective: 1200px;
}

.accordion-slide {
    flex: 0 0 80px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.accordion-slide.active {
    flex: 1 1 450px;
    cursor: default;
}

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

.accordion-slide .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.5s ease;
}

.accordion-slide.active .slide-overlay {
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.7));
}

.accordion-slide .slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.5s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.accordion-slide.active .slide-label {
    opacity: 0;
    pointer-events: none;
}

.accordion-slide .slide-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.15s;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.accordion-slide .slide-content .slide-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 22px;
    margin-bottom: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    align-self: center;
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
}

.accordion-slide.active .slide-content .slide-play:hover {
    background: var(--iir-coral);
    color: #fff;
    transform: translateX(-50%) scale(1.1);
}

.accordion-slide .slide-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accordion-slide .slide-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.accordion-slide .slide-date {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 992px) {
    .accordion-slider-container {
        height: 420px;
    }

    .accordion-slide {
        flex: 0 0 55px;
    }

    .accordion-slide .slide-label {
        font-size: 14px;
        letter-spacing: 3px;
    }
}

@media (max-width: 576px) {
    .accordion-slider-section {
        padding: 60px 0;
    }

    .accordion-slider-container {
        height: 380px;
        gap: 6px;
    }

    .accordion-slide {
        flex: 0 0 40px;
        border-radius: 14px;
    }

    .accordion-slide .slide-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .accordion-slide .slide-content h4 {
        font-size: 16px;
    }

    .accordion-slide .slide-content p {
        font-size: 11px;
    }

    .accordion-slide .slide-content .slide-play {
        width: 42px;
        height: 42px;
        font-size: 16px;
        top: -120px;
    }
}

/* ===== Video Modal ===== */
.reel-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.reel-video-modal.active {
    display: flex;
}

.reel-video-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.reel-video-modal .modal-close:hover {
    background: var(--iir-coral);
    border-color: var(--iir-coral);
    transform: rotate(90deg);
}

.reel-video-modal .video-container {
    max-width: 400px;
    width: 90%;
    max-height: 85vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.reel-video-modal video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}