/* Font SVN-Ginger already defined in header.php */

/* ============================================
   BIẾN MÀU SẮC THỐNG NHẤT - MUSIC THEME
   ============================================ */
/* ============================================
   PERFORMANCE OPTIMIZATION - RENDERING
   ============================================ */
.lineup-section-luxury, 
.timeline-section,
.video-section-luxury, 
.news-section-luxury, 
.partners-section-luxury {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

@media (max-width: 768px) {
    /* Reduce complexity on mobile */
    [data-aos] {
        transition-duration: 400ms !important; /* Faster transitions */
    }
}

:root {
    /* Màu chủ đạo - Âm nhạc & Nghệ thuật */
    --music-primary: #D4AF37; /* Gold is now primary */
    --music-primary-dark: #B8941F;
    --music-primary-light: #F3E5AB;
    --music-secondary: #1a1a2e; /* Deep Dark Blue */
    --music-secondary-dark: #0f0f1a;
    --music-secondary-light: #2d2d44;
    
    /* Màu vàng - Giải thưởng & Tôn vinh */
    --gold-primary: #D4AF37;
    --gold-light: #FFE57F;
    --gold-dark: #996515;
    --gold-glow: rgba(212, 175, 55, 0.5);
    
    /* Màu nền - Tinh tế & Sang trọng */
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --bg-tertiary: #ffffff;
    --bg-dark: #111111;
    /* Nền xám dùng cho section xen kẽ */
    --color-grey: #f6f4f1;
    --bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #302b63 100%); /* Deep Purple/Black Gradient */
    /* Giữ lại nếu cần cho nơi khác */
    --bg-gradient-light: linear-gradient(to bottom, #ffffff, #f8f5f2);
    --bg-gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
    
    /* Màu chữ */
    --text-primary: #1a1a2e;
    --text-secondary: #444444;
    --text-light: #666666;
    --text-white: #FFFFFF;
    
    /* Fonts */
    --font-heading: 'SVN-Ginger', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Hiệu ứng & Shadow */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-music: 0 8px 24px rgba(102, 126, 234, 0.25);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.3);
    --glow-music: 0 0 30px rgba(102, 126, 234, 0.4);
    --glow-gold: 0 0 40px rgba(212, 175, 55, 0.5);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   HIỆU ỨNG NỀN TOÀN TRANG - MUSIC PARTICLES
   ============================================ */
body {
    position: relative;
    overflow-x: hidden;
    font-family: var(--font-body);
    color: var(--text-secondary);
}

h1, h2, h3, h4, h5, h6, .section-title, .purpose-title, .hero-title-new {
    font-family: var(--font-heading);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 20s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale3d(1, 1, 1); /* GPU acceleration */
    }
    50% { 
        opacity: 0.8; 
        transform: scale3d(1.05, 1.05, 1); /* GPU acceleration */
    }
}

/* ============================================
   SECTION CHUNG - ĐỒNG BỘ THIẾT KẾ
   ============================================ */
section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Nền section dùng biến để set theo từng section */
    background: var(--section-bg, #ffffff);
    opacity: 1;
    pointer-events: none;
    z-index: -1;
}

/* Không áp nền cho hero/banner */
section.hero-lumina::before,
section.hero-section::before {
    display: none !important;
}

/* Xen kẽ nền section (solid) - bắt đầu từ section dưới banner */
.core-values-section { 
    --section-bg: #ffffff; 
    background: transparent !important; 
    overflow: visible !important;
}
.audience-section { 
    --section-bg: var(--color-grey); 
    background: transparent !important; 
    overflow: visible !important;
}
.cta-section-luxury { --section-bg: #ffffff; background: transparent !important; }
.lineup-section-luxury { --section-bg: var(--color-grey); background: transparent !important; }
.timeline-section { --section-bg: #ffffff; background: transparent !important; }
.partners-section-luxury { --section-bg: var(--color-grey); background: transparent !important; }
.news-section-luxury { --section-bg: #ffffff; background: transparent !important; }
.video-section-luxury { --section-bg: var(--color-grey); background: transparent !important; }

/* Section Header - Đồng bộ */
.section-header,
.purpose-header,
.purpose-bloom-header,
.partners-header-new {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-icon,
.partners-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    border-radius: 50%;
    box-shadow: var(--shadow-music), var(--glow-music);
    position: relative;
    animation: iconFloat 4s ease-in-out infinite;
    transition: all var(--transition-base);
}

.section-icon:hover,
.partners-icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg), var(--glow-music);
    animation: none;
}

.section-icon i,
.partners-icon-wrapper i {
    font-size: 2rem;
    color: var(--text-white);
    z-index: 2;
}

.icon-glow,
.icon-pulse {
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { 
        transform: scale3d(0.8, 0.8, 1); /* GPU acceleration */
        opacity: 1; 
    }
    100% { 
        transform: scale3d(1.5, 1.5, 1); /* GPU acceleration */
        opacity: 0; 
    }
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translate3d(0, 0, 0) rotate(0deg); /* GPU acceleration */
    }
    50% { 
        transform: translate3d(0, -10px, 0) rotate(2deg); /* GPU acceleration */
    }
}

.section-title,
.purpose-title,
.partners-title-new {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'SVN-Ginger', sans-serif;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-title::after,
.purpose-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-music);
}

.section-subtitle,
.partners-subtitle-new {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.section-line {
    width: 100px;
    height: 3px;
    background: var(--bg-gradient);
    margin: 30px auto;
    border-radius: var(--radius-full);
    position: relative;
}

.section-line::before,
.section-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--music-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-music);
}

.section-line::before { left: -20px; }
.section-line::after { right: -20px; }

/* ============================================
   CARDS & COMPONENTS - LUXURY STYLE
   ============================================ */
.purpose-card-ultra,
.participant-card-revolution,
.judge-card,
.flip-card,
.criteria-card-simple,
.partner-section-modern {
    position: relative;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 0;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.purpose-card-ultra:hover,
.participant-card-revolution:hover,
.judge-card:hover,
.flip-card:hover,
.criteria-card-simple:hover,
.partner-section-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--gold-primary);
}

.section-title,
.purpose-title,
.partners-title-new {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'SVN-Ginger', sans-serif;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after,
.purpose-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
}


.purpose-card-ultra:hover::before,
.participant-card-revolution:hover::before,
.judge-card:hover::before {
    transform: scaleX(1);
}

/* Glow Effect */
.card-ultra-glow,
.card-revolution-bg {
    position: absolute;
    inset: -2px;
    background: var(--bg-gradient);
    border-radius: var(--radius-lg);
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.purpose-card-ultra:hover .card-ultra-glow,
.participant-card-revolution:hover .card-revolution-bg {
    opacity: 0.3;
}

/* ============================================
   BUTTONS - HIỆU ỨNG TƯƠNG TÁC
   ============================================ */
.btn,
.btn-action-primary,
.btn-action-secondary,
.btn-revolution,
.flip-btn,
.btn-primary {
    position: relative;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-action-primary,
.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-music);
}

.btn-action-primary::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-action-primary:hover,
.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--glow-music);
}

.btn-action-primary:hover::before,
.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-action-secondary {
    background: transparent;
    color: var(--music-primary);
    border: 2px solid var(--music-primary);
}

.btn-action-secondary:hover {
    background: var(--music-primary);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-music);
}

/* ============================================
   HERO SECTION - LUXURY REDESIGN
   ============================================ */
.hero-lumina {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000; /* Fallback */
    color: #fff;
    padding: 120px 0 80px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    filter: brightness(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-container-new {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
    color: #fff;
    text-shadow: none;
}

.hero-title-new {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.title-line-1 {
    display: block;
    color: #fff;
    text-shadow: none;
}

.title-line-2 {
    display: block;
    background: linear-gradient(to right, #D4AF37, #F3E5AB, #B8941F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
}

.hero-description-new {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 1);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-shadow: none;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-actions-new {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-action-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    text-shadow: none;
    font-weight: 600;
}

.btn-action-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    color: #fff;
    text-shadow: none;
}

.btn-action-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 16px 40px;
    text-shadow: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-action-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    color: #fff;
    transform: translateY(-5px);
    text-shadow: none;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translate3d(0, 30px, 0); /* GPU acceleration */
    }
    to { 
        opacity: 1; 
        transform: translate3d(0, 0, 0); /* GPU acceleration */
    }
}

/* Music Notes Animation - Simplified */
.music-notes-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.music-note {
    color: rgba(212, 175, 55, 0.4);
}


/* ============================================
   TIMELINE - HIỆU ỨNG ĐẶC BIỆT
   ============================================ */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--bg-gradient);
    box-shadow: var(--shadow-music);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 100px;
}

.timeline-dot {
    position: absolute;
    left: 38px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--bg-gradient);
    border-radius: 50%;
    box-shadow: var(--shadow-music), var(--glow-music);
    animation: pulseDot 2s ease-in-out infinite;
    will-change: transform; /* Hint browser để optimize animation */
    backface-visibility: hidden; /* Prevent flickering */
    -webkit-backface-visibility: hidden;
}

@keyframes pulseDot {
    0%, 100% { 
        transform: scale3d(1, 1, 1); /* GPU acceleration */
        box-shadow: var(--shadow-music), var(--glow-music); 
    }
    50% { 
        transform: scale3d(1.2, 1.2, 1); /* GPU acceleration */
        box-shadow: var(--shadow-lg), var(--glow-music); 
    }
}

.timeline-dot-current {
    animation: pulseDot 1s ease-in-out infinite;
    box-shadow: var(--shadow-gold), var(--glow-gold);
}

.timeline-content {
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    will-change: transform, box-shadow; /* Hint browser */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent var(--bg-tertiary) transparent transparent;
}

.timeline-item:hover .timeline-content {
    transform: translate3d(10px, 0, 0); /* GPU acceleration */
    box-shadow: var(--shadow-xl), var(--glow-music);
}

/* ============================================
   RESPONSIVE - TỐI ƯU MOBILE
   ============================================ */
@media (max-width: 991px) {
    section { padding: 60px 0; }
    
    /* Fix mobile menu - giảm khoảng trắng phía trên */
    .nav-list {
        padding-top: 50px !important;
        justify-content: flex-start !important;
    }
    
    .section-icon,
    .partners-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .section-icon i,
    .partners-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .timeline::before { left: 30px; }
    .timeline-dot { left: 18px; }
    .timeline-item { padding-left: 70px; }
}

@media (max-width: 767px) {
    section { padding: 40px 0; }
    
    .section-title,
    .purpose-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .music-note {
        font-size: 1.5rem;
    }
}

/* ============================================
   SCROLL ANIMATIONS - MƯỢT MÀ
   ============================================ */
/* Performance Optimization: GPU acceleration cho AOS animations */
[data-aos] {
    will-change: transform, opacity; /* Hint browser để optimize */
    backface-visibility: hidden; /* Prevent flickering */
    -webkit-backface-visibility: hidden;
    perspective: 1000px; /* Enable 3D transforms */
    -webkit-perspective: 1000px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* GPU acceleration cho tất cả elements có animation */
*[class*="animate"],
*[class*="fade"],
*[class*="slide"],
.news-item-luxury,
.audience-card,
.timeline-content,
.timeline-dot,
.core-value-column,
.news-item-luxury:hover,
.audience-card:hover {
    transform: translateZ(0); /* Force GPU layer */
    -webkit-transform: translateZ(0);
}

/* Smooth transitions với GPU acceleration */
.news-item-luxury,
.audience-card,
.timeline-content,
.core-value-column {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   LOADING & TRANSITIONS
   ============================================ */
* {
    transition: background-color var(--transition-fast), 
                color var(--transition-fast),
                border-color var(--transition-fast);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--music-primary);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--music-primary);
    color: var(--text-white);
}

/* ============================================
   CTA SECTION - NÂNG CẤP
   ============================================ */
.cta-section {
    position: relative;
    background: var(--bg-gradient-light);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    animation: ctaBackgroundFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaBackgroundFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.cta-form-card-new,
.cta-layout-new {
    position: relative;
    z-index: 1;
}

/* ============================================
   CATEGORIES SECTION - FLIP CARDS
   ============================================ */
.flip-card {
    perspective: 1000px;
    height: 400px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.flip-card-back {
    transform: rotateY(180deg);
    background: var(--bg-tertiary);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ============================================
   CRITERIA SECTION - CIRCLE PROGRESS
   ============================================ */
.criteria-card-simple {
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.criteria-card-simple:hover {
    border-color: var(--music-primary);
    box-shadow: var(--shadow-xl), var(--glow-music);
}

.circle-progress-simple {
    position: relative;
    width: 100px;
    height: 100px;
}

.circle-fill {
    stroke: var(--music-primary);
    transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.criteria-card-simple:hover .circle-fill {
    stroke: var(--music-secondary);
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.5));
}

/* ============================================
   AWARDS SECTION - GOLD EFFECTS
   ============================================ */
.award-chip {
    position: relative;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.award-chip.gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: rgba(212, 175, 55, 0.3);
}

.award-chip.gold:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold), var(--glow-gold);
    transform: translateY(-5px) scale(1.02);
}

.award-chip.silver:hover,
.award-chip.bronze:hover,
.award-chip.highlight:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   PARTICIPANTS SECTION - REVOLUTION CARDS
   ============================================ */
.participant-card-revolution {
    position: relative;
    overflow: visible;
}

.card-revolution-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.card-revolution-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
    mix-blend-mode: overlay;
}

.participant-card-revolution:hover .card-revolution-image::after {
    opacity: 0.2;
}

.category-icon-revolution {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    box-shadow: var(--shadow-music);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-music); }
    50% { transform: scale(1.05); box-shadow: var(--shadow-lg), var(--glow-music); }
}

/* ============================================
   JUDGES SECTION - PROFILE CARDS
   ============================================ */
.judge-card {
    text-align: center;
}

.judge-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-tertiary);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.judge-card:hover .judge-image {
    transform: scale(1.05);
    border-color: var(--music-primary);
    box-shadow: var(--shadow-xl), var(--glow-music);
}

.judge-image::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--bg-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.judge-card:hover .judge-image::before {
    opacity: 0.3;
    filter: blur(10px);
}

/* ============================================
   PURPOSE SECTION - ULTRA CARDS
   ============================================ */
.purpose-card-ultra {
    position: relative;
    overflow: visible;
}

.card-ultra-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.card-ultra-image img {
    transition: transform var(--transition-slow);
}

.purpose-card-ultra:hover .card-ultra-image img {
    transform: scale(1.1);
}

.card-ultra-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.purpose-card-ultra:hover .card-ultra-shine {
    animation: shine 1.2s ease;
    opacity: 1;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ============================================
   PARTNERS SECTION - LOGO HOVER
   ============================================ */
.logo-frame-modern {
    position: relative;
    transition: all var(--transition-base);
}

.logo-frame-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
    mix-blend-mode: soft-light;
}

.partner-logo-modern:hover .logo-frame-modern::after {
    opacity: 0.1;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-music), var(--glow-music);
    transition: all var(--transition-base);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg), var(--glow-music);
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   ENHANCED GRID LAYOUTS
   ============================================ */
.purpose-grid-ultra,
.participants-layout-revolution,
.lineup-grid,
.flip-categories-grid,
.criteria-showcase-new {
    display: grid;
    gap: 30px;
    position: relative;
}

/* Grid items staggered animation */
.purpose-card-ultra:nth-child(1) { animation-delay: 0.1s; }
.purpose-card-ultra:nth-child(2) { animation-delay: 0.2s; }
.purpose-card-ultra:nth-child(3) { animation-delay: 0.3s; }

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */
@media (max-width: 991px) {
    .flip-card { height: 350px; }
    .judge-image { width: 150px; height: 150px; }
}

@media (max-width: 767px) {
    .flip-card { height: 300px; }
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   ACCESSIBILITY - FOCUS STATES
   ============================================ */
*:focus-visible {
    outline: 2px solid var(--music-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* ============================================
   LUXURY SECTIONS - GLOBAL STYLES
   ============================================ */
.section-header {
    margin-bottom: 80px;
    position: relative;
}

.sub-title-gold {
    display: block;
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-line-gold {
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
    margin: 0 auto;
}

/* ============================================
   PURPOSE SECTION - VISUAL LUXURY (ORIGINAL)
   ============================================ */
.purpose-section-luxury {
    padding: 100px 0;
    background: #fff;
}

.purpose-section-luxury .container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

.purpose-grid-luxury {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.purpose-item-luxury {
    position: relative;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    group: group;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.purpose-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.4);
}

.purpose-item-luxury:hover .purpose-bg-image {
    transform: scale(1.1);
    filter: brightness(0.3);
}

.purpose-content-luxury {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
    text-align: left;
}

.purpose-icon-luxury {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.purpose-title-luxury {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.purpose-desc-luxury {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    height: 0;
    overflow: hidden;
}

.purpose-item-luxury:hover .purpose-desc-luxury {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-top: 10px;
}

.purpose-item-luxury:hover .purpose-icon-luxury {
    transform: translateY(-10px);
}

@media (max-width: 991px) {
    .purpose-section-luxury .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .purpose-grid-luxury {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .purpose-item-luxury {
        height: 350px;
    }
    
    .highlight-collage-card {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto auto !important;
        gap: 15px;
        min-height: auto;
        padding: 15px;
    }
    
    .collage-image-left {
        grid-column: 1;
        grid-row: 1;
        min-height: 300px;
        height: 300px;
    }
    
    .collage-content-center {
        grid-column: 1;
        grid-row: 2;
        padding: 30px 20px;
    }
    
    .collage-image-bottom {
        grid-column: 1;
        grid-row: 3;
        height: 200px;
    }
    
    .collage-image-right {
        grid-column: 1;
        grid-row: 4;
        min-height: 300px;
        height: 300px;
    }
    
    .collage-title {
        font-size: 2rem;
    }
    
    .collage-title:first-line {
        font-size: 1.5rem;
    }
    
    .collage-arrow {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }
}


/* ============================================
   CTA SECTION - LUXURY PARALLAX
   ============================================ */
.cta-section-luxury {
    padding: 240px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    background-color: #05050a; /* Fallback color */
    color: #fff;
}

.cta-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.85);
}

.cta-overlay-luxury {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(1px);
    z-index: 1;
}

.cta-content-luxury {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.cta-title-luxury {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.6);
}

.cta-desc-luxury {
    font-size: 1rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 1px 5px rgba(0,0,0,0.6);
}

.cta-btn-luxury {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold-primary);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 2px solid var(--gold-primary);
    font-size: 0.9rem;
}

.cta-btn-luxury:hover {
    background: transparent;
    color: var(--gold-primary);
    transform: translateY(-5px);
}

/* ============================================
   LINEUP (JUDGES) - LUXURY
   ============================================ */
.lineup-section-luxury {
    padding: 0;
    background: rgb(246, 244, 241);
    position: relative;
    height: 660px;
}

.lineup-section-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 100px 0 100px 100px;
    max-width: 100%;
    gap: 60px;
    height: 100%;
}

.lineup-content-left {
    flex: 0 0 420px;
    width: 420px;
    max-width: 420px;
}

.lineup-title {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: rgb(33, 37, 41);
    margin-bottom: 15px;
    line-height: 1.2;
}

.lineup-subtitle {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1rem;
    color: rgb(127, 111, 76);
    margin-bottom: 30px;
    font-weight: 500;
}

.lineup-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 21px;
    color: rgb(33, 37, 41);
    margin-bottom: 40px;
}

.lineup-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: rgb(127, 111, 76);
    color: #fff;
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lineup-btn:hover {
    background-color: rgb(100, 87, 60);
    transform: translateY(-2px);
}

.lineup-gallery-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 460px;
}

.lineup-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.lineup-slider-prev,
.lineup-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(127, 111, 76, 0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.lineup-slider-prev:hover,
.lineup-slider-next:hover {
    background: rgba(127, 111, 76, 1);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.lineup-slider-prev {
    left: 10px;
}

.lineup-slider-next {
    right: 10px;
}

.lineup-slider-prev:disabled,
.lineup-slider-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lineup-slider-prev:disabled:hover,
.lineup-slider-next:disabled:hover {
    transform: translateY(-50%) scale(1);
}

.lineup-slider-container {
    position: relative;
    width: 100%;
    height: 460px;
}

.lineup-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 460px;
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.lineup-slide.active {
    display: block !important;
    opacity: 1 !important;
    z-index: 2;
}

/* Force hiển thị slide đầu tiên trên desktop */
.lineup-slide-desktop:first-child {
    display: block !important;
    opacity: 1 !important;
    z-index: 2;
}
    opacity: 1;
    z-index: 2;
}

.lineup-gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    width: 100%;
    height: 100%;
}

.judge-card-luxury-new {
    position: relative;
    background: rgb(220, 220, 200);
    width: 100%;
    height: 460px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.judge-image-wrapper-new {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.judge-image-luxury-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.judge-name-luxury-new {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    padding: 25px 20px 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 75%, transparent 100%);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    z-index: 5;
    min-height: 90px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.judge-info-new {
    display: none;
}

.lineup-section-luxury .row {
    margin-left: -10px;
    margin-right: -10px;
}

.lineup-section-luxury .col-md-4 {
    padding-left: 10px;
    padding-right: 10px;
}

.judge-card-luxury {
    text-align: center;
    margin-bottom: 30px;
    group: group;
}

.judge-image-wrapper {
    width: 360px;
    height: 460px;
    margin: 0 auto 25px;
    overflow: hidden;
    border-radius: 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.judge-image-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.judge-image-luxury {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.judge-card-luxury:hover .judge-image-luxury {
    transform: scale(1.08);
}

.judge-name-luxury {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.judge-title-luxury {
    font-size: 0.85rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================
   TIMELINE - ELEGANT CARDS
   ============================================ */
/* ============================================
   CRITERIA - LUXURY
   ============================================ */
.criteria-section-luxury {
    padding: 120px 0;
    background: #fff;
}

.criteria-grid-luxury {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.criteria-card-luxury {
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    background: var(--bg-secondary);
    border-radius: 0;
    transition: all 0.4s ease;
}

.criteria-card-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.criteria-header-luxury {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.criteria-icon-luxury {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.criteria-title-luxury {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-primary);
}

.criteria-list-luxury {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-list-luxury li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.criteria-list-luxury li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.criteria-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.criteria-score {
    font-weight: 700;
    color: var(--gold-primary);
}

.criteria-general-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.criteria-general-list li,
.criteria-detail-list li {
    display: flex;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.criteria-general-list i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-top: 4px;
}

.criteria-detail-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.criteria-detail-list li {
    justify-content: space-between;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 15px 20px;
    background: #fff;
}

.criteria-detail-list strong {
    color: var(--gold-primary);
    min-width: 90px;
    text-align: right;
}

.criteria-table-note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .criteria-grid-luxury {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PARTNERS - LUXURY
   ============================================ */
.partners-section-luxury {
    padding: 40px 0 100px 0;
    background: #fff;
}

.partners-section-luxury .section-header {
    margin-bottom: 40px;
}

/* Sliding Logo Marquee */
.sliding-marquee-wrapper {
    margin-top: 50px;
    position: relative;
}

.sliding-marquee-container {
    --speed: 60;
    --count: 0;
    --scale: 1;
    --blur: 1;
    --blurs: 8;
    position: relative;
    width: 100%;
}

.sliding-marquee-resizable {
    overflow: clip;
    scale: var(--scale);
    width: 100%;
    height: 120px;
    min-height: 100px;
}

.sliding-marquee-inner {
    height: 100%;
    width: 100%;
    position: relative;
    mask: linear-gradient(90deg, transparent, black 15% 85%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, black 15% 85%, transparent);
    display: grid;
    min-height: 100px;
    pointer-events: none;
}

.sliding-marquee-blur {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25%;
    z-index: 2;
    pointer-events: none;
}

.sliding-marquee-blur--right {
    right: 0;
}

.sliding-marquee-blur--left {
    left: 0;
    rotate: 180deg;
}

.sliding-marquee-blur div {
    position: absolute;
    inset: 0;
    z-index: var(--index);
    mask: linear-gradient(90deg,
        transparent calc(var(--index) * calc((100 / var(--blurs)) * 1%)),
        black calc((var(--index) + 1) * calc((100 / var(--blurs)) * 1%)),
        black calc((var(--index) + 2) * calc((100 / var(--blurs)) * 1%)),
        transparent calc((var(--index) + 3) * calc((100 / var(--blurs)) * 1%)));
    -webkit-mask: linear-gradient(90deg,
        transparent calc(var(--index) * calc((100 / var(--blurs)) * 1%)),
        black calc((var(--index) + 1) * calc((100 / var(--blurs)) * 1%)),
        black calc((var(--index) + 2) * calc((100 / var(--blurs)) * 1%)),
        transparent calc((var(--index) + 3) * calc((100 / var(--blurs)) * 1%)));
    backdrop-filter: blur(calc((var(--index, 0) * var(--blur, 0)) * 1px));
    -webkit-backdrop-filter: blur(calc((var(--index, 0) * var(--blur, 0)) * 1px));
}

.sliding-marquee-list {
    display: flex;
    gap: 4rem;
    padding: 0;
    margin: 0;
    list-style-type: none;
    height: 100%;
    width: fit-content;
    align-items: center;
    pointer-events: auto;
}

.sliding-marquee-item {
    height: 80%;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    pointer-events: auto;
    flex-shrink: 0;
}

.sliding-marquee-item:hover {
    transform: scale(1.1);
}

.marquee-logo-img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}

.sliding-marquee-item:hover .marquee-logo-img {
    transform: scale(1.1);
}

[data-play-state="running"] .sliding-marquee-list,
[data-play-state="running"] .sliding-marquee-item {
    animation-play-state: running !important;
}

[data-play-state="paused"] .sliding-marquee-list,
[data-play-state="paused"] .sliding-marquee-item {
    animation-play-state: paused !important;
}

@media (prefers-reduced-motion: no-preference) {
    [data-translate="items"] .sliding-marquee-list {
        gap: 4rem;
        animation: slideMarquee 120s infinite linear;
    }

    [data-translate="items"][data-direction="horizontal"] .sliding-marquee-inner {
        padding-inline: 0;
    }

    @keyframes slideMarquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    [data-play-state="running"] .sliding-marquee-list {
        animation-play-state: running;
    }
    
    [data-play-state="paused"] .sliding-marquee-list {
        animation-play-state: paused;
    }
}

@media (max-width: 767px) {
    .sliding-marquee-list {
        gap: 2rem !important;
    }

    .sliding-marquee-item {
        height: 60% !important;
    }

    .marquee-logo-img {
        max-width: 120px;
    }
}

/* ============================================
   AUDIENCE SECTION - LAYOUT INSPIRED
   ============================================ */
.audience-section {
    padding: 90px 0 70px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f1 100%);
    position: relative;
    min-height: 900px;
    overflow: visible;
}

.audience-watermark {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 18rem;
    font-weight: 300;
    color: rgba(230, 220, 210, 0.8);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    opacity: 0.8;
    user-select: none;
}

/* Responsive cho watermark trên mobile */
@media (max-width: 991px) {
    .audience-watermark {
        font-size: 6rem;
    }
}

@media (max-width: 575px) {
    .audience-watermark {
        font-size: 4rem;
    }
}

.core-values-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 18rem;
    font-weight: 300;
    color: rgba(230, 220, 210, 0.8);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    opacity: 0.8;
    user-select: none;
}

/* Responsive cho core-values-watermark trên mobile */
@media (max-width: 991px) {
    .core-values-watermark {
        font-size: 6rem;
    }
}

@media (max-width: 575px) {
    .core-values-watermark {
        font-size: 4rem;
    }
}

.audience-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    filter: blur(2px);
}

.audience-heading {
    display: none;
}

.audience-subtitle {
    font-family: 'SVN-Ginger', sans-serif;
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--music-primary-dark);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.audience-title {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 18px 0 12px;
    color: var(--text-primary);
}

.audience-desc {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 auto;
}

.audience-gallery {
    position: relative;
    display: block;
    margin: 18px auto 0;
    padding: 0;
    z-index: 1;
    width: fit-content;
    height: 900px;
    overflow: visible;
}

.audience-gallery-wrapper {
    position: relative;
    margin-top: 22px;
}

/* Slider Styles */
.audience-slider {
    position: relative;
    width: 100%;
    margin-top: -60px;
}

.audience-slider-container {
    position: relative;
    overflow: hidden;
}

.audience-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.audience-slide.active {
    display: block;
    opacity: 1;
}

.audience-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.audience-slider-prev,
.audience-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: rgba(212, 175, 55, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-slider-prev {
    left: 20px;
}

.audience-slider-next {
    right: 20px;
}

.audience-slider-prev:hover,
.audience-slider-next:hover {
    background: rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.8);
    color: rgba(212, 175, 55, 1);
    transform: scale(1.1);
}

.audience-slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.audience-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.audience-slider-dot.active {
    background: rgba(212, 175, 55, 0.8);
    border-color: rgba(212, 175, 55, 1);
    transform: scale(1.2);
}

.audience-slider-dot:hover {
    border-color: rgba(212, 175, 55, 0.8);
    transform: scale(1.1);
}

/* Responsive cho nút điều hướng */
@media (max-width: 1200px) {
    .audience-slider-prev {
        left: 15px;
    }
    .audience-slider-next {
        right: 15px;
    }
}

@media (max-width: 991px) {
    .audience-slider-prev {
        left: 10px;
    }
    .audience-slider-next {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .audience-slider-prev {
        left: 5px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .audience-slider-next {
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

.audience-section-title {
    display: block;
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    margin-top: 40px;
    height: 50px;
    text-align: center;
    color: rgb(33, 37, 41);
    margin-bottom: 0;
}

.audience-section-desc {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: rgb(33, 37, 41);
    margin: 0 auto 10px;
    max-width: 664px;
    margin-top: -5px;
}

/* Shared section heading style (match "Đối tượng tham gia") */
.index-section-title {
    display: block;
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    text-align: center;
    color: rgb(33, 37, 41);
    margin-top: 0;
    margin-bottom: 20px;
}

.index-section-desc {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: rgb(33, 37, 41);
    margin: 0 auto 40px;
    max-width: 664px;
}

@media (max-width: 767px) {
    .index-section-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 14px;
    }
    .index-section-desc {
        font-size: 14px;
        margin-bottom: 28px;
    }
}

.audience-shell {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px;
}

.audience-card {
    position: absolute;
    overflow: hidden;
    border-radius: 0;
    height: 620px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
    background: #111;
    isolation: isolate;
    width: 100%;
    margin: 0;
    will-change: transform; /* Hint browser cho smooth hover effects */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 10;
}

.audience-card.small {
    height: 400px;
    width: 340px;
}

.audience-card.small.align-bottom {
    height: 400px;
    width: 340px;
    bottom: 140px;
}

.audience-card.large {
    height: 700px;
    width: 400px;
    bottom: 100px;
}

.audience-card.align-bottom {
    align-self: flex-end;
}

.audience-card.align-top {
    align-self: flex-start;
}

.audience-card.small.align-top {
    height: 400px;
    width: 340px;
    bottom: 300px;
}

/* Đảm bảo ảnh hiển thị đủ 100% nội dung trong khung "Đối tượng tham gia" */
.audience-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ============================================
   LAYOUT VARIATIONS FOR 4 SLIDES
   Mỗi slide có cách bố trí ảnh khác nhau
   ============================================ */

/* Layout 1: nhỏ dưới trái, lớn giữa, nhỏ trên phải */
.audience-slide.layout-1 .audience-gallery {
    width: calc(340px + 80px + 400px + 80px + 340px);
}

.audience-slide.layout-1 .audience-card.small.align-bottom {
    left: 0 !important;
    bottom: 140px !important;
}

.audience-slide.layout-1 .audience-card.large {
    left: calc(340px + 80px) !important;
    bottom: 100px !important;
}

.audience-slide.layout-1 .audience-card.small.align-top {
    left: calc(340px + 80px + 400px + 80px) !important;
    bottom: 300px !important;
}

.audience-slide.layout-1 .audience-heading-overlay {
    left: -70px;
    top: 200px;
}

/* Layout 2: nhỏ trên trái, lớn giữa, nhỏ dưới phải (đảo 2 ảnh nhỏ) */
.audience-slide.layout-2 .audience-gallery {
    width: calc(340px + 80px + 400px + 80px + 340px);
}

.audience-slide.layout-2 .audience-card.small.align-bottom {
    left: calc(340px + 80px + 400px + 80px) !important;
    bottom: 140px !important;
}

.audience-slide.layout-2 .audience-card.large {
    left: calc(340px + 80px) !important;
    bottom: 100px !important;
}

.audience-slide.layout-2 .audience-card.small.align-top {
    left: 0 !important;
    bottom: 300px !important;
}

.audience-slide.layout-2 .audience-heading-overlay {
    left: calc(340px + 80px + 400px + 80px - 70px);
    top: 200px;
}

/* Layout 3: lớn trái, nhỏ dưới giữa, nhỏ trên phải (đảo lớn sang trái) */
.audience-slide.layout-3 .audience-gallery {
    width: calc(400px + 80px + 340px + 80px + 340px);
}

.audience-slide.layout-3 .audience-card.small.align-bottom {
    left: calc(400px + 80px);
    bottom: 140px;
}

.audience-slide.layout-3 .audience-card.large {
    left: 0;
    bottom: 100px;
}

.audience-slide.layout-3 .audience-card.small.align-top {
    left: calc(400px + 80px + 340px + 80px);
    bottom: 300px;
}

.audience-slide.layout-3 .audience-heading-overlay {
    left: calc(400px + 80px - 70px);
    top: 200px;
}

/* Layout 4: nhỏ trên trái, lớn giữa, nhỏ dưới phải (giống layout 2) */
.audience-slide.layout-4 .audience-gallery {
    width: calc(340px + 80px + 400px + 80px + 340px);
}

.audience-slide.layout-4 .audience-card.small.align-bottom {
    left: calc(340px + 80px + 400px + 80px) !important;
    bottom: 140px !important;
}

.audience-slide.layout-4 .audience-card.large {
    left: calc(340px + 80px) !important;
    bottom: 100px !important;
}

.audience-slide.layout-4 .audience-card.small.align-top {
    left: 0 !important;
    bottom: 300px !important;
}

.audience-slide.layout-4 .audience-heading-overlay {
    left: calc(340px + 80px + 400px + 80px - 70px);
    top: 200px;
}

.audience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale3d(1.02, 1.02, 1); /* GPU acceleration */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, filter; /* Hint browser */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 10%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
    opacity: 0.8;
}

.audience-card:hover img {
    transform: scale3d(1.08, 1.08, 1); /* GPU acceleration */
    filter: saturate(1.08);
}

.audience-card.small.align-bottom:hover {
    transform: translate3d(0, 100px, 0); /* GPU acceleration */
}

.audience-card.small.align-top:hover {
    transform: translate3d(0, -50px, 0); /* GPU acceleration */
}

/* Đảm bảo transform translateY được giữ nguyên trong tất cả các layout khi hover */
.audience-slide.layout-1 .audience-card.small.align-bottom:hover,
.audience-slide.layout-2 .audience-card.small.align-bottom:hover,
.audience-slide.layout-3 .audience-card.small.align-bottom:hover,
.audience-slide.layout-4 .audience-card.small.align-bottom:hover {
    transform: translateY(100px);
}

.audience-slide.layout-1 .audience-card.small.align-top:hover,
.audience-slide.layout-2 .audience-card.small.align-top:hover,
.audience-slide.layout-3 .audience-card.small.align-top:hover,
.audience-slide.layout-4 .audience-card.small.align-top:hover {
    transform: translateY(-50px);
}

.audience-label {
    position: absolute;
    top: 22px;
    left: 22px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    color: #0f0f1a;
    font-weight: 700;
    letter-spacing: 0.6px;
    z-index: 2;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.audience-label { display: none; }

.audience-badge { display: none; }

.audience-connector {
    position: absolute;
    left: 65%;
    top: 68%;
    transform: translate(calc(-50% + 20px), -50%);
    width: 200px;
    height: 200px;
    border: 1.5px solid rgba(212, 175, 55, 0.65);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: rgba(212, 175, 55, 0.65);
    font-size: 1.8rem;
    font-weight: 600;
    pointer-events: auto;
    z-index: 1;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audience-connector:hover {
    border-color: rgba(212, 175, 55, 1);
    color: rgba(212, 175, 55, 1);
    transform: translate(calc(-50% + 20px), -50%) scale(1.1);
}

.audience-heading-overlay {
    position: absolute;
    left: -80px;
    top: 200px;
    z-index: 200;
    pointer-events: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.audience-heading-overlay:hover {
    opacity: 0.8;
}

.audience-heading-overlay .overlay-line-1 {
    position: static;
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 42px;
    height: 42px;
    color: rgb(127, 111, 76);
    background-color: rgba(0, 0, 0, 0);
    border: 0px none;
    display: block;
    box-sizing: border-box;
    width: 469px;
    text-align: start;
}

.audience-heading-overlay .overlay-line-2 {
    position: static;
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 50px;
    font-style: italic;
    font-weight: 100;
    height: 50px;
    line-height: 50px;
    color: rgb(127, 111, 76);
    text-transform: uppercase;
    display: inline-block;
    width: auto;
    text-align: start;
    background-color: rgba(0, 0, 0, 0);
    border: 0px none;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: visible;
    vertical-align: baseline;
}

.audience-heading-overlay .overlay-line-3 {
    position: static;
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 35px;
    font-weight: 500;
    height: 35px;
    line-height: 35px;
    color: rgb(127, 111, 76);
    display: inline-block;
    width: auto;
    text-align: left;
    background-color: rgba(0, 0, 0, 0);
    border: 0px none;
    box-sizing: border-box;
    margin-left: 8px;
    vertical-align: baseline;
}

.audience-wordmark {
    position: absolute;
    left: -2%;
    top: 10%;
    font-size: 3.8rem;
    font-family: var(--font-heading);
    color: rgba(181, 165, 130, 0.35);
    letter-spacing: 2px;
    transform: rotate(-4deg);
    z-index: 0;
    pointer-events: none;
}

.audience-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 44px;
}

.audience-tag {
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) {
    .audience-gallery {
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 32px;
        margin-left: 24px;
    }

    .audience-card.large {
        height: 700px;
    }

    .audience-card.small {
        height: 400px;
    }

    .audience-card {
        height: 520px;
        max-width: 280px;
    }
}

@media (max-width: 992px) {
    .audience-gallery {
        grid-template-columns: 1fr;
    }

    .audience-card,
    .audience-card.large {
        height: 520px;
    }

    .audience-connector,
    .audience-wordmark {
        display: none;
    }
}

@media (max-width: 768px) {
    .audience-section {
        padding: 20px 0 40px 0 !important;
        min-height: auto !important;
        overflow: visible !important;
    }
    
    .audience-gallery-wrapper {
        margin-top: -30px !important;
    }

    .audience-desc {
        font-size: 0.98rem;
    }
    
    .audience-gallery-wrapper {
        min-height: auto !important;
        height: auto !important;
        padding: 20px 0 !important;
    }
    
    .audience-section-title {
        margin-bottom: 15px !important;
    }
    
    .audience-section-desc {
        margin-bottom: 30px !important;
    }
    
    .audience-slider {
        height: auto !important;
        min-height: auto !important;
        margin-top: 0 !important;
    }
    
    .audience-slider-container {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }
    
    /* Slide active hiện, các slide khác ẩn */
    .audience-slide {
        display: none !important;
        opacity: 0 !important;
    }
    
    .audience-slide.active {
        display: block !important;
        opacity: 1 !important;
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    /* Gallery - container cho ảnh và overlay */
    .audience-gallery,
    .audience-slide.layout-1 .audience-gallery,
    .audience-slide.layout-2 .audience-gallery,
    .audience-slide.layout-3 .audience-gallery,
    .audience-slide.layout-4 .audience-gallery {
        position: relative !important;
        width: 100% !important;
        max-width: 100vw !important;
        height: auto !important;
        min-height: auto !important;
        display: block !important;
        margin: 0 !important;
        overflow: visible !important;
        padding: 0 !important;
    }
    
    /* Ẩn tất cả card nhỏ */
    .audience-card.small,
    .audience-card.small.align-bottom,
    .audience-card.small.align-top,
    .audience-slide.layout-1 .audience-card.small,
    .audience-slide.layout-2 .audience-card.small,
    .audience-slide.layout-3 .audience-card.small,
    .audience-slide.layout-4 .audience-card.small {
        display: none !important;
    }
    
    /* Card lớn - 400x600 */
    .audience-card.large,
    .audience-slide.layout-1 .audience-card.large,
    .audience-slide.layout-2 .audience-card.large,
    .audience-slide.layout-3 .audience-card.large,
    .audience-slide.layout-4 .audience-card.large {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        transform: none !important;
        width: 400px !important;
        max-width: 90vw !important;
        height: 600px !important;
        aspect-ratio: auto !important;
        margin: 0 auto !important;
        border-radius: 0 !important;
    }
    
    .audience-card.large img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    /* Heading overlay - NẰM ĐÈ LÊN PHẦN DƯỚI ẢNH - LAYOUT THANH LỊCH */
    .audience-heading-overlay,
    .audience-slide.layout-1 .audience-heading-overlay,
    .audience-slide.layout-2 .audience-heading-overlay,
    .audience-slide.layout-3 .audience-heading-overlay,
    .audience-slide.layout-4 .audience-heading-overlay {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        transform: none !important;
        z-index: 20 !important;
        text-align: center !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.92) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        padding: 12px 15px !important;
        border-radius: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.08) !important;
    }
    
    .audience-heading-overlay .overlay-line-1,
    .audience-slide .audience-heading-overlay .overlay-line-1 {
        font-size: 0.7rem !important;
        color: #8B7355 !important;
        letter-spacing: 1.5px !important;
        display: inline !important;
        margin: 0 !important;
        text-align: center !important;
        white-space: nowrap !important;
        text-transform: uppercase !important;
        font-weight: 500 !important;
        width: auto !important;
        height: auto !important;
        line-height: normal !important;
        position: static !important;
    }
    
    .audience-heading-overlay .overlay-line-1::after {
        content: " · " !important;
        color: #C4A77D !important;
        font-weight: 700 !important;
        font-size: 0.9rem !important;
    }
    
    .audience-heading-overlay .overlay-line-2,
    .audience-slide .audience-heading-overlay .overlay-line-2 {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: #333 !important;
        margin: 0 !important;
        font-family: 'SVN-Ginger', sans-serif !important;
        display: inline !important;
        text-align: center !important;
        white-space: nowrap !important;
        letter-spacing: 0.5px !important;
        width: auto !important;
        height: auto !important;
        line-height: normal !important;
        font-style: normal !important;
        position: static !important;
    }
    
    .audience-heading-overlay .overlay-line-2::after {
        content: " · " !important;
        color: #C4A77D !important;
        font-weight: 700 !important;
        font-size: 0.9rem !important;
    }
    
    .audience-heading-overlay .overlay-line-3,
    .audience-slide .audience-heading-overlay .overlay-line-3 {
        font-size: 0.85rem !important;
        color: #555 !important;
        display: inline !important;
        margin: 0 !important;
        text-align: center !important;
        white-space: nowrap !important;
        font-weight: 500 !important;
        width: auto !important;
        height: auto !important;
        line-height: normal !important;
        position: static !important;
    }
    
    /* Ẩn badge trên card */
    .audience-badge {
        display: none !important;
    }
    
    /* Điều chỉnh nút prev/next */
    .audience-slider-prev,
    .audience-slider-next {
        z-index: 30 !important;
    }
}

@media (max-width: 1200px) {
    .lineup-section-wrapper {
        flex-direction: column;
        padding: 80px 40px;
    }
    
    .lineup-content-left {
        flex: 1;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .lineup-gallery-right {
        width: 100%;
    }
    
    .lineup-gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lineup-section-wrapper {
        padding: 60px 20px;
    }
    
    .lineup-section-luxury {
        height: auto !important;
        min-height: 900px !important;
    }
    
    .lineup-title {
        font-size: 2rem;
    }
    
    .lineup-gallery-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        height: auto !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Sửa chiều cao lineup slider trên mobile */
    .lineup-slider {
        height: auto !important;
        min-height: auto !important;
        width: 100% !important;
    }
    
    .lineup-slider-container {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        width: 100% !important;
    }
    
    .lineup-slide {
        position: relative !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
    }
    
    .lineup-slide.active {
        display: block !important;
    }
    
    .judge-card-luxury-new {
        width: 400px !important;
        max-width: 90vw !important;
        height: 600px !important;
        aspect-ratio: auto !important;
        margin: 0 auto !important;
        border-radius: 0 !important;
    }
    
    .judge-image-wrapper-new {
        width: 100% !important;
        height: 100% !important;
    }
    
    .judge-image-wrapper-new img,
    .judge-image-luxury-new {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .judge-image-wrapper-new {
        height: 100% !important;
        overflow: hidden !important;
    }
    
    .judge-image-luxury-new {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: top center !important;
    }
    
    .lineup-slider-prev,
    .lineup-slider-next {
        top: 50% !important;
        z-index: 100 !important;
    }
    
    .lineup-gallery-right {
        overflow: visible !important;
        min-height: 500px !important;
    }
    
    /* Mobile: Ẩn desktop slides, hiện mobile slides */
    .lineup-section-luxury .lineup-slide-desktop {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .lineup-section-luxury .lineup-slide-mobile {
        display: none !important;
        position: relative !important;
        height: auto !important;
    }
    
    .lineup-section-luxury .lineup-slide-mobile.active {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        opacity: 1 !important;
    }
}

/* Desktop: Ẩn mobile slides, hiện desktop slides */
@media (min-width: 769px) {
    .lineup-slide-mobile {
        display: none !important;
    }
    
    .lineup-slide-desktop {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .lineup-slide-desktop.active,
    .lineup-slide-desktop:first-child {
        display: block !important;
        opacity: 1 !important;
    }
    
    .lineup-gallery-right {
        min-height: 460px;
        height: 460px;
    }
    
    .lineup-slider-container {
        height: 460px !important;
    }
    
    .lineup-section-luxury .lineup-slide-desktop .lineup-gallery-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        height: 100% !important;
        width: 100% !important;
    }
    
    .lineup-section-luxury .lineup-slide-desktop .judge-card-luxury-new {
        width: 100% !important;
        height: 460px !important;
        max-width: none !important;
    }
    
    .lineup-section-luxury .lineup-gallery-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .lineup-gallery-right {
        min-height: 460px !important;
        height: 460px !important;
    }
    
    .lineup-slider-container {
        height: 460px !important;
    }
    
    .lineup-slide-desktop {
        height: 460px !important;
    }
}
<style>
/* ============================================
   PREMIUM DESIGN SYSTEM - YOSHINE MUSIC FESTIVAL
   ============================================ */

/* Root Variables - Premium Color Palette */
:root {
    /* Primary Colors - Elegant Beige & Brown */
    --primary-color: #D4C5B2;
    --primary-dark: #b8a390;
    --primary-light: #e8ded0;
    --primary-lighter: #f5f2ee;
    
    /* Secondary Colors - Rich Brown */
    --secondary-color: #8B7355;
    --secondary-dark: #705c44;
    --secondary-light: #a68e6d;
    --secondary-lighter: #c4b5a0;
    
    /* Accent Colors */
    --accent-color: #E8DFD3;
    --accent-gold: #D4AF37;
    --accent-gold-light: #E5C866;
    --accent-gold-dark: #B8941F;
    
    /* Text Colors */
    --text-color: #2C2A28;
    --text-dark: #1A1816;
    --text-light: #6B6865;
    --text-lighter: #9B9895;
    
    /* Background Colors */
    --light-bg: #FAF8F5;
    --light-bg-alt: #F5F2EE;
    --white: #FFFFFF;
    --dark: #1F1D1B;
    --dark-color: #2D2A28;
    
    /* Medal Colors */
    --gold: #D4AF37;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
    --gold-color: #D4AF37;
    
    /* Premium Gradients */
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-dark: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --gradient-light: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    --gradient-elegant: linear-gradient(135deg, #faf8f5 0%, #f5f2ee 50%, #e8ded0 100%);
    
    /* Shadows - Premium Depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);
    --shadow-elegant: 0 12px 40px rgba(139, 115, 85, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   HERO SECTION - PREMIUM ENHANCEMENT
   ============================================ */
.hero-section {
    position: relative;
    height: calc(80vh + 220px);
    min-height: 820px;
    overflow: hidden;
    margin-top: 200px;
    background: linear-gradient(180deg, var(--dark-color) 0%, #1a1816 100%);
    box-shadow: inset 0 -100px 100px -50px rgba(0, 0, 0, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-section a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: calc(80vh + 220px); /* Tăng chiều cao bằng với margin-top */
    min-height: 820px; /* Tăng min-height tương ứng */
    position: relative;
}

.image-background, .video-background {
    width: 100%;
    height: 100%;
}

.image-background img, .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Sử dụng cover để lấp đầy hoàn toàn banner */
    object-position: center center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f5f2ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 30px;
    text-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.5),
        0 1px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    animation: fadeInUp 1s ease-out 0.1s both;
}

.event-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}

.event-badge::before {
    content: '✨';
    font-size: 1rem;
}

.hero-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-light);
}

.dot-separator {
    width: 6px;
    height: 6px;
    background-color: var(--gold-color);
    border-radius: 50%;
    display: inline-block;
}

/* Hero Buttons Enhancement */
.hero-buttons {
    margin-bottom: 40px;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    border: 2px solid var(--accent-gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

/* Event Info Enhancement */
.event-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold-color);
}

/* Carousel Indicators Enhancement */
.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators button {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--gold-color);
    width: 60px;
}

/* Image Background Enhancement */
.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Sử dụng cover để lấp đầy hoàn toàn banner */
    object-position: center center;
    transition: transform 10s ease;
    transform: scale(1.1);
    opacity: 1; /* Hiển thị hình ảnh nguyên bản không có lớp phủ */
}

.carousel-item.active .image-background img {
    transform: scale(1);
}

/* Hero Section Adjustments */
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.carousel-item .hero-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active .hero-content {
    opacity: 1;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Sử dụng cover để lấp đầy hoàn toàn banner */
    object-position: center center;
    opacity: 1; /* Hiển thị video nguyên bản không có lớp phủ */
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ============================================
   HERO LUMINA SECTION - LIGHT & YOUTHFUL
   ============================================ */
.hero-lumina {
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    background: linear-gradient(120deg, #fffaf3 0%, #f8f4ec 45%, #ffffff 100%);
}

/* ============================================
   HERO GRADIENT BACKGROUND - ĐEN ĐỎ ĐEN SANG TRỌNG
   ============================================ */
.hero-gradient-bg {
    position: relative;
    background: linear-gradient(135deg, 
        #667eea 0%,
        #764ba2 25%,
        #f093fb 50%,
        #f5576c 75%,
        #4facfe 100%
    ) !important;
    min-height: 100vh;
    overflow: hidden;
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Music Notes */
.hero-gradient-bg::before {
    content: '♪ ♫ ♬ ♩ ♭ ♮ ♯';
    position: absolute;
    inset: 0;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    animation: floatNotes 20s ease-in-out infinite;
    font-family: Arial, sans-serif;
    letter-spacing: 2rem;
}

@keyframes floatNotes {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-30px) rotate(5deg); opacity: 0.15; }
}

/* Music Wave Pattern */
.hero-gradient-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.1) 20px,
            rgba(255, 255, 255, 0.1) 40px
        ),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 50 Q30 30, 50 50 T90 50' stroke='rgba(255,255,255,0.2)' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 100px 100px, 200px 200px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    animation: waveMove 10s linear infinite;
}

@keyframes waveMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 100px 0, 200px 0; }
}

/* Override styles for gradient background - SANG TRỌNG */
.hero-gradient-bg .hero-container {
    position: relative;
    z-index: 2;
}

.hero-gradient-bg .hero-title,
.hero-gradient-bg .hero-content .hero-title,
.hero-lumina.hero-gradient-bg .hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    line-height: 1.2;
    font-weight: 900;
    color: #ffffff !important;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.2),
        2px 2px 0px rgba(255, 255, 255, 0.1);
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    filter: none !important;
    letter-spacing: -0.02em;
}

.hero-gradient-bg .hero-lead {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.2),
        0 1px 5px rgba(0, 0, 0, 0.15);
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.hero-gradient-bg .hero-badge {
    background: rgba(255, 255, 255, 0.25) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-gradient-bg .hero-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-gradient-bg .hero-badge-dot {
    background: #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    animation: pulse-white 2s ease-in-out infinite;
}

@keyframes pulse-white {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 1);
        transform: scale(1.1);
    }
}

.hero-gradient-bg .hero-badge-year {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: 800;
}

.hero-gradient-bg .hero-stat {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-gradient-bg .hero-stat:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-gradient-bg .hero-stat-number {
    color: #ffffff !important;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.2),
        0 1px 5px rgba(0, 0, 0, 0.15);
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    filter: none !important;
    font-size: 3rem;
}

.hero-gradient-bg .hero-stat-label {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 
        0 1px 5px rgba(0, 0, 0, 0.15);
    font-weight: 600;
}

.hero-gradient-bg .btn-hero-primary {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #667eea !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    position: relative;
    overflow: hidden;
    font-weight: 700;
}

.hero-gradient-bg .btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(102, 126, 234, 0.2), 
        transparent
    );
    transition: left 0.5s ease;
}

.hero-gradient-bg .btn-hero-primary:hover::before {
    left: 100%;
}

.hero-gradient-bg .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    background: #ffffff !important;
}

.hero-gradient-bg .btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-gradient-bg .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Force override font-size cho hero-title trong gradient bg - đặt cuối để đảm bảo priority */
section.hero-lumina.hero-gradient-bg h1.hero-title,
section.hero-lumina.hero-gradient-bg .hero-content h1.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
}

/* Gallery cards styling cho theme âm nhạc */
.hero-gradient-bg .hero-gallery-main {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-gradient-bg .hero-gallery-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-gradient-bg .hero-gallery-card-content span {
    color: #667eea;
    font-weight: 700;
}

.hero-gradient-bg .hero-gallery-card-content small {
    color: #764ba2;
}

/* Floating Music Notes Overlay */
.music-notes-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.music-note {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.15);
    animation: floatNote 15s ease-in-out infinite;
    font-family: Arial, sans-serif;
}

.note-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.note-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
    font-size: 2.5rem;
}

.note-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    font-size: 3.5rem;
}

.note-4 {
    top: 50%;
    right: 10%;
    animation-delay: 6s;
    font-size: 2rem;
}

.note-5 {
    bottom: 15%;
    right: 30%;
    animation-delay: 8s;
    font-size: 2.8rem;
}

@keyframes floatNote {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-50px) translateX(30px) rotate(10deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-100px) translateX(-20px) rotate(-10deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-50px) translateX(40px) rotate(5deg);
        opacity: 0.2;
    }
}

/* ============================================
   HERO BANDS - VERTICAL STRIPES LAYOUT
   ============================================ */
.hero-bands {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, 
        #0a0a0a 0%,
        #1a1a1a 15%,
        #ff5757 35%,
        #e63946 50%,
        #ff5757 65%,
        #1a1a1a 85%,
        #0a0a0a 100%
    );
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bands-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.9;
}

.hero-bands-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(0.5rem, 1.5vw, 1rem);
}

.hero-bands-content {
    max-width: 900px;
}

.hero-top-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin-bottom: var(--space-lg);
}

.badge-label {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero-bands-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin-bottom: var(--space-md);
    font-family: 'SVN-Ginger', sans-serif;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-bands-subtitle {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ff5757;
    margin-bottom: var(--space-lg);
    font-family: 'SVN-Ginger', sans-serif;
}

.hero-bands-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 800px;
}

.hero-bands-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.category-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-box:hover {
    transform: translateY(-8px);
    border-color: #ff5757;
}

.category-images {
    height: 200px;
    overflow: hidden;
}

.category-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-info {
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.5);
}

.category-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff5757;
    line-height: 1.5;
    margin: 0;
}

.hero-bands-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-bands-light,
.btn-bands-dark {
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-bands-light {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border-color: #ffffff;
}

.btn-bands-light:hover {
    background: #ff5757;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 87, 87, 0.4);
}

.btn-bands-dark {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-bands-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
    color: #ffffff;
}

@media (max-width: 991px) {
    .hero-bands-categories {
        grid-template-columns: 1fr;
    }
    
    .hero-bands-actions {
        flex-direction: column;
    }
    
    .btn-bands-light,
    .btn-bands-dark {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }
}

/* ============================================
   OLD HERO PATTERNS (kept for reference)
   ============================================ */
.hero-pattern {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.hero-pattern-left {
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, var(--accent-gold), transparent 60%);
}

.hero-pattern-right {
    bottom: -160px;
    right: -160px;
    background: radial-gradient(circle, var(--primary-color), transparent 60%);
}

/* NEW HERO LAYOUT - ASYMMETRIC SPLIT */
.hero-container-new {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
    min-height: 90vh;
}

.hero-left-column {
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    width: 100%;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
}

.badge-icon-new {
    font-size: 1.5rem;
}

.badge-text-new {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
}

.hero-title-new {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'SVN-Ginger', sans-serif;
}

.title-line-1,
.title-line-2 {
    display: block;
}

.title-line-2 {
    background: linear-gradient(135deg, #ffd700, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-new {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions-new {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-action-primary,
.btn-action-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.btn-action-primary {
    background: #ffffff;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-action-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-action-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.btn-action-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats-new {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item-new {
    display: flex;
    flex-direction: column;
}

.stat-number-new {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-new {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-divider-new {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Right Column - Visual */
.hero-right-column {
    position: relative;
}

.hero-visual-wrapper {
    position: relative;
}

.main-image-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/5;
}

.main-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.image-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.category-badges-new {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    right: -2rem;
    display: flex;
    gap: 1rem;
}

.category-badge-new {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.badge-image-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.badge-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.badge-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-title {
    font-weight: 700;
    color: #667eea;
    font-size: 1rem;
}

.badge-age {
    font-size: 0.875rem;
    color: #764ba2;
}

@media (max-width: 991px) {
    .hero-container-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .category-badges-new {
        position: static;
        margin-top: 2rem;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(0.75rem, 2vw, 1.5rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    min-height: 90vh;
}

.hero-content {
    color: var(--text-dark);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--space-md);
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-gold);
}

.hero-badge-year {
    font-weight: 700;
    color: var(--accent-gold);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    font-family: 'SVN-Ginger', sans-serif;
    color: #1a1816;
    letter-spacing: -0.02em;
}

/* Override cho hero-gradient-bg - đặt sau để đảm bảo override */
.hero-gradient-bg .hero-content .hero-title,
.hero-lumina.hero-gradient-bg .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem) !important;
}

.hero-lead {
    font-size: 1.25rem;
    color: #4a4745;
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-full);
    padding: 16px 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #f8c96c, #d4af37);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    color: var(--white);
}

.btn-hero-secondary {
    border: 1px solid rgba(139, 115, 85, 0.4);
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.8);
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    color: var(--secondary-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-lg);
}

/* Layout 2 columns cho hero-stats trong gradient bg */
.hero-gradient-bg .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 500px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: var(--space-xl);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.hero-stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1a1816;
    font-family: 'SVN-Ginger', sans-serif;
    margin-bottom: 8px;
    line-height: 1;
}

.hero-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #6B6865;
}

.hero-gallery {
    position: relative;
    padding: var(--space-xl);
}

.hero-gallery-main {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.hero-gallery-main img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 0;
}

.hero-gallery-card {
    position: absolute;
    width: 280px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.hero-gallery-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hero-gallery-card-content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-gallery-card-content span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1816;
}

.hero-gallery-card-content small {
    font-size: 0.9rem;
    color: #6B6865;
    font-weight: 500;
}

.hero-gallery-card-1 {
    top: 60px;
    right: 0;
}

.hero-gallery-card-2 {
    bottom: 60px;
    left: 20px;
}

.hero-floating-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hero-floating-badge i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-floating-badge strong {
    display: block;
    font-size: 1rem;
}

@media (max-width: 1199px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-gallery {
        order: -1;
    }
}

@media (max-width: 767px) {
    .hero-lumina {
        padding: 100px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-gallery-card {
        position: relative;
        width: 100%;
        margin-top: var(--space-md);
    }
    
    .hero-gallery-card-1,
    .hero-gallery-card-2 {
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }
}

/* ============================================
   PURPOSE BLOOM GRID - LUXURY MINIMALIST
   ============================================ */
.purpose-bloom {
    padding: 100px 0;
    background-color: #ffffff;
    background-image: radial-gradient(#D4AF37 0.5px, transparent 0.5px), radial-gradient(#D4AF37 0.5px, #ffffff 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-blend-mode: multiply;
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.purpose-bloom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 0;
}

.purpose-bloom::after {
    display: none;
}

.purpose-bloom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.purpose-bloom-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.purpose-label {
    display: inline-block;
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #D4AF37;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding: 0 15px;
    background: transparent;
    border: none;
}

.purpose-label::before,
.purpose-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #D4AF37;
}

.purpose-label::before { right: 100%; }
.purpose-label::after { left: 100%; }

.purpose-bloom-header h2 {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
    background: none;
    -webkit-text-fill-color: initial;
}

.purpose-bloom-header p {
    font-family: 'SVN-Ginger', sans-serif;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* LUXURY CARDS */
.purpose-grid-ultra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1000px;
    position: relative;
    z-index: 2;
}

.purpose-card-ultra {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2); /* Gold border */
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: none;
    backdrop-filter: none;
}

.purpose-card-ultra:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #D4AF37;
}

.card-ultra-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.card-ultra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 0;
    filter: none;
}

.purpose-card-ultra:hover .card-ultra-image img {
    transform: scale(1.1);
    filter: none;
}

.card-number-ultra {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'SVN-Ginger', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #D4AF37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.card-number-ultra span {
    background: transparent;
    color: #D4AF37;
    box-shadow: none;
    width: auto;
    height: auto;
}

.purpose-card-ultra:hover .card-number-ultra span {
    transform: none;
    box-shadow: none;
}

.card-ultra-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.card-icon-ultra {
    width: auto;
    height: auto;
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 20px;
    background: none;
    box-shadow: none;
    display: block;
}

.card-icon-ultra i {
    font-size: 2rem;
    color: #D4AF37;
}

.purpose-card-ultra:hover .card-icon-ultra i {
    color: #D4AF37;
    transform: none;
}

.card-ultra-content h3 {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    background: none;
    -webkit-text-fill-color: initial;
    transition: color 0.3s ease;
}

.purpose-card-ultra:hover .card-ultra-content h3 {
    color: #D4AF37;
    transform: none;
}

.card-ultra-content p {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.purpose-card-ultra:hover .card-ultra-content p {
    color: #666;
}

.card-link-ultra {
    font-family: 'SVN-Ginger', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    margin-top: auto;
    border-radius: 0;
}

.card-link-ultra .link-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #D4AF37;
    background: transparent;
}

.card-link-ultra:hover {
    color: #D4AF37;
    background: none;
    box-shadow: none;
    transform: none;
}

.card-link-ultra:hover .link-arrow {
    background: #D4AF37;
    color: #fff;
    border-color: #D4AF37;
    transform: none;
}

.card-link-ultra:hover .link-arrow i {
    transform: none;
}

/* Remove unused elements */
.card-ultra-glow, .card-ultra-border, .card-ultra-shine, .number-ring, .icon-bg, .icon-particles, .card-link-ultra::before {
    display: none !important;
}

@media (max-width: 991px) {
    .purpose-grid-ultra {
        grid-template-columns: 1fr;
    }
    
    .purpose-card-ultra {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .card-ultra-image {
        height: 250px;
    }
    
    .purpose-card-ultra:hover {
        transform: translateY(-5px);
    }
}

.purpose-bloom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
}

.purpose-bloom-card {
    background: rgba(255, 255, 255, 0.7) !important;
    border-radius: 28px;
    padding: var(--space-lg);
    box-shadow: 0 25px 55px rgba(102, 126, 234, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.purpose-bloom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f5576c);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.purpose-bloom-card.accent {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(102, 126, 234, 0.3);
}

.purpose-bloom-card.accent::before {
    opacity: 1;
}

.purpose-bloom-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.5);
}

.purpose-bloom-card:hover::before {
    opacity: 1;
}

.purpose-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.purpose-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.5rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.purpose-card-number {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
}

.purpose-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
}

.purpose-card-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'SVN-Ginger', sans-serif;
}

.purpose-card-body p {
    color: #4a5568;
    line-height: 1.6;
}

.purpose-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #667eea;
    margin-top: auto;
}

/* ============================================
   ULTRA MODERN INTRO - DIAGONAL SPLIT + 3D EFFECTS
   ============================================ */
.intro-ultra-modern {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    background: #0a0a0a;
}

/* Diagonal Split Background */
.diagonal-split-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.diagonal-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2a28 50%, #1a1a1a 100%);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    transform: skewY(-2deg);
    transform-origin: top left;
}

.diagonal-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #2d2a28 0%, #1a1a1a 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

/* Floating Particles */
.particles-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 50%;
    top: 80%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 90%;
    top: 50%;
    animation-delay: 3s;
    animation-duration: 14s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, -100px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

.intro-ultra-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

/* Left Content */
.intro-content-ultra {
    position: relative;
}

.content-wrapper-ultra {
    position: relative;
}

/* Badge Ultra */
.badge-ultra {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: var(--space-xl);
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent-gold), transparent, var(--accent-gold));
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: 50px;
    z-index: -1;
    animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.badge-icon-ultra {
    font-size: 1.5rem;
    animation: rotate-emoji 4s infinite ease-in-out;
}

@keyframes rotate-emoji {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.badge-text-ultra {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Title Ultra */
.title-ultra {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    font-family: 'SVN-Ginger', sans-serif;
}

.title-word-1 {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.title-word-2 {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

/* Description Ultra */
.description-ultra {
    margin-bottom: var(--space-2xl);
}

.description-ultra p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
}

.desc-line-1 {
    font-size: 1.375rem !important;
    font-weight: 600;
    color: var(--accent-gold) !important;
    padding-left: 24px;
    border-left: 4px solid var(--accent-gold);
}

/* Stats Ultra Grid */
.stats-ultra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.stat-card-ultra {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.stat-card-ultra:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.stat-glow-effect {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.stat-card-ultra:hover .stat-glow-effect {
    opacity: 0.2;
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: transform 0.4s;
}

.stat-card-ultra:hover .stat-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
}

.stat-number-ultra {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--white);
    font-family: 'SVN-Ginger', sans-serif;
    margin-bottom: 8px;
}

.stat-label-ultra {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CTA Ultra */
.cta-ultra {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-ultra-primary,
.btn-ultra-secondary {
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.btn-ultra-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-ultra-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
    color: var(--white);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-ultra-primary:hover .btn-shine {
    left: 100%;
}

.btn-ultra-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-ultra-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    color: var(--white);
}

/* Right Image Ultra */
.intro-image-ultra {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.image-3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-3d-main {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    perspective: 1000px;
}

.image-inner-3d {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.image-inner-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-3d-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(139, 115, 85, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.image-3d-main:hover .image-3d-overlay {
    opacity: 1;
}

.image-3d-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.3), transparent);
    filter: blur(20px);
}

/* Floating Elements */
.floating-element-1,
.floating-element-2,
.floating-element-3 {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    animation: float-element 6s infinite ease-in-out;
}

.floating-element-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-element-2 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

.floating-element-3 {
    bottom: 20%;
    right: -15%;
    animation-delay: 4s;
}

@keyframes float-element {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-20px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(20px, -20px) rotate(240deg);
    }
}

/* Glass Badge Ultra */
.glass-badge-ultra {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.glass-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.glass-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.glass-title {
    font-weight: 700;
    color: var(--white);
    font-size: 1.125rem;
}

.glass-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll Indicator */
.scroll-indicator-ultra {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .intro-ultra-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .intro-image-ultra {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .stats-ultra-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-ultra {
        flex-direction: column;
    }
    
    .btn-ultra-primary,
    .btn-ultra-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .floating-element-1,
    .floating-element-2,
    .floating-element-3 {
        display: none;
    }
}

/* ============================================
   OLD INTRO SECTION (kept for compatibility)
   ============================================ */
.intro-section-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f2ee 50%, #ffffff 100%);
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.intro-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    min-height: 90vh;
    align-items: center;
}

/* Left Side - Content */
.intro-content-side {
    padding: var(--space-2xl) var(--space-xl);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.intro-content-inner {
    max-width: 600px;
}

.intro-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: var(--space-xl);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-color);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
    font-size: 1.5rem;
}

.intro-title-new {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
    font-family: 'SVN-Ginger', sans-serif;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.intro-description-new {
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.intro-description-new p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.desc-highlight {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--secondary-color) !important;
    padding-left: 20px;
    border-left: 4px solid var(--accent-gold);
}

/* Stats Grid New */
.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.stat-card-new {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: var(--transition-elegant);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.stat-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--accent-gold);
}

.stat-icon-new {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content-new {
    flex: 1;
}

.stat-number-new {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'SVN-Ginger', sans-serif;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label-new {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Buttons New */
.intro-cta-new {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary-new,
.btn-secondary-new {
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-elegant);
    border: 2px solid transparent;
}

.btn-primary-new {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
    color: var(--white);
}

.btn-secondary-new {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary-new:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Right Side - Image */
.intro-image-side {
    position: relative;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image-wrapper-new {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
}

.image-main-new {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    transform: rotate(-2deg);
    transition: var(--transition-slow);
}

.intro-image-side:hover .image-main-new {
    transform: rotate(0deg) scale(1.02);
}

.image-main-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.intro-image-side:hover .image-main-new img {
    transform: scale(1.1);
}

.image-overlay-new {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 115, 85, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.intro-image-side:hover .image-overlay-new {
    opacity: 1;
}

.floating-badge-new {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elegant);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.badge-content-new {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.badge-content-new i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.badge-title-new {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.badge-subtitle-new {
    font-size: 0.875rem;
    color: var(--text-light);
}

.image-decoration-new {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: -1;
}

/* Responsive */
@media (max-width: 1199px) {
    .intro-split-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .intro-image-side {
        min-height: 500px;
    }
    
    .image-main-new {
        transform: rotate(0deg);
    }
}

@media (max-width: 767px) {
    .intro-section-new {
        padding: var(--space-xl) 0;
    }
    
    .stats-grid-new {
        grid-template-columns: 1fr;
    }
    
    .intro-cta-new {
        flex-direction: column;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ULTRA MODERN PURPOSE - OVERLAPPING CARDS + GLASSMORPHISM
   ============================================ */
.purpose-ultra-modern {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 50%, #f5f2ee 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated Background */
.purpose-bg-animated {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-gradient-1,
.bg-gradient-2,
.bg-gradient-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: bg-float 20s infinite ease-in-out;
}

.bg-gradient-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.bg-gradient-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.bg-gradient-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes bg-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.purpose-ultra-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Header Ultra */
.purpose-header-ultra {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.header-line-1 {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
    backdrop-filter: blur(10px);
}

.header-title-ultra {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    font-family: 'SVN-Ginger', sans-serif;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-desc-ultra {
    font-size: 1.375rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Purpose Cards Ultra */
.purpose-cards-ultra {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.purpose-card-ultra {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.purpose-card-ultra:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 100px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.card-ultra-1 {
    grid-column: span 7;
    grid-row: span 2;
}

.card-ultra-2 {
    grid-column: span 5;
    grid-row: span 1;
    margin-top: -100px;
}

.card-ultra-3 {
    grid-column: span 5;
    grid-row: span 1;
    margin-top: 100px;
}

.card-number-ultra {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    z-index: 3;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    font-family: 'SVN-Ginger', sans-serif;
    transition: transform 0.5s;
}

.purpose-card-ultra:hover .card-number-ultra {
    transform: rotate(360deg) scale(1.1);
}

.card-image-ultra {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.card-ultra-1 .card-image-ultra {
    height: 550px;
}

.card-image-ultra img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.purpose-card-ultra:hover .card-image-ultra img {
    transform: scale(1.15) rotate(2deg);
}

.card-image-overlay-ultra {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.purpose-card-ultra:hover .card-image-overlay-ultra {
    opacity: 1;
}

.card-image-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: left 0.8s;
    opacity: 0;
}

.purpose-card-ultra:hover .card-image-shine {
    left: 100%;
    opacity: 1;
}

.card-content-ultra {
    padding: var(--space-xl);
    position: relative;
}

.card-icon-ultra {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: var(--space-md);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    position: relative;
    transition: transform 0.5s;
}

.icon-bg-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: var(--radius-md);
    z-index: -1;
}

.purpose-card-ultra:hover .icon-bg-glow {
    opacity: 0.5;
}

.purpose-card-ultra:hover .card-icon-ultra {
    transform: scale(1.15) rotate(-10deg);
}

.card-title-ultra {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    font-family: 'SVN-Ginger', sans-serif;
    line-height: 1.3;
}

.card-text-ultra {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.card-link-ultra {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s;
}

.purpose-card-ultra:hover .card-link-ultra {
    gap: 20px;
    color: var(--secondary-color);
}

.card-link-ultra i {
    transition: transform 0.4s;
}

.purpose-card-ultra:hover .card-link-ultra i {
    transform: translateX(10px);
}

.card-border-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent-gold), var(--secondary-color), var(--accent-gold));
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    filter: blur(10px);
}

.purpose-card-ultra:hover .card-border-glow {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1199px) {
    .purpose-cards-ultra {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .card-ultra-1 {
        grid-column: span 6;
        grid-row: span 1;
    }
    
    .card-ultra-2,
    .card-ultra-3 {
        grid-column: span 3;
        margin-top: 0;
    }
    
    .card-ultra-1 .card-image-ultra {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .purpose-cards-ultra {
        grid-template-columns: 1fr;
    }
    
    .card-ultra-1,
    .card-ultra-2,
    .card-ultra-3 {
        grid-column: span 1;
        grid-row: span 1;
        margin-top: 0;
    }
}

/* ============================================
   OLD PURPOSE SECTION (kept for compatibility)
   ============================================ */
.purpose-section-new {
    padding: var(--space-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.purpose-container-new {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.purpose-header-new {
    margin-bottom: var(--space-3xl);
    text-align: center;
}

.section-label-new {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.section-title-new {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    font-family: 'SVN-Ginger', sans-serif;
    line-height: 1.2;
}

.section-description-new {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ============================================
   OLD INTRO SECTION (kept for compatibility)
   ============================================ */
.intro-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-elegant);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.intro-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.2), transparent);
    z-index: 1;
}

.intro-content-wrapper {
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTION HEADERS - PREMIUM ENHANCEMENT
   ============================================ */
.section-header {
    margin-bottom: clamp(2rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-header.text-center {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, #667eea, #764ba2, #f5576c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    transition: var(--transition-base);
}

.section-icon:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
}

.section-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2, #f5576c);
    opacity: 0.2;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.section-icon::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid #667eea;
    opacity: 0.1;
    z-index: -2;
    animation: pulse 3s ease-in-out infinite 0.5s;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.section-line {
    width: 100px;
    height: 5px;
    background: var(--gradient-gold);
    margin: var(--space-lg) auto 0;
    border-radius: var(--radius-full);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.section-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 
        0 0 0 4px var(--white),
        0 0 0 6px var(--accent-gold),
        0 4px 12px rgba(212, 175, 55, 0.4);
}

.section-line::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.intro-text-highlight {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--primary-color);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* ============================================
   STATS GRID - PREMIUM ENHANCEMENT
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-elegant);
    border: 1px solid rgba(139, 115, 85, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--accent-gold);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    line-height: 1;
    font-family: 'SVN-Ginger', sans-serif;
    transition: var(--transition-base);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: var(--text-color);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

.stat-item:hover .stat-label {
    color: var(--secondary-color);
}

/* Intro Image Enhancement */
.intro-image-wrapper {
    position: relative;
    padding: 20px;
}

.intro-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.intro-image:hover .image-overlay {
    opacity: 0.5;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.card-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.card-text strong {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.image-decoration {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border: 5px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
}

/* ============================================
   PURPOSE SECTION - PREMIUM ENHANCEMENT
   ============================================ */
.purpose-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.purpose-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
    pointer-events: none;
}

.purpose-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.06) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================
   PURPOSE CARDS - PREMIUM ENHANCEMENT
   ============================================ */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.purpose-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-elegant);
    position: relative;
    border: none;
}

.purpose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: 2;
}

.purpose-card:hover::before {
    transform: scaleX(1);
}

.purpose-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-elegant);
    border: none;
}

.card-header {
    position: relative;
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 197, 178, 0.05) 0%, rgba(139, 115, 85, 0.05) 100%);
}

.card-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'SVN-Ginger', sans-serif;
    line-height: 1;
    opacity: 0.9;
    transition: var(--transition-base);
}

.purpose-card:hover .card-number {
    opacity: 1;
    transform: scale(1.05);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-base);
    position: relative;
}

.card-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    opacity: 0;
    transition: var(--transition-base);
}

.purpose-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.purpose-card:hover .card-icon-wrapper::after {
    opacity: 0.3;
    inset: -8px;
}

.card-image {
    position: relative;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.purpose-card:hover .card-image img {
    transform: scale(1.1);
}

.card-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    font-family: 'SVN-Ginger', sans-serif;
    transition: var(--transition-base);
}

.purpose-card:hover .card-title {
    color: var(--secondary-color);
}

.purpose-card .card-content {
    padding: var(--space-xl);
}

.purpose-card .card-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

/* ============================================
   HIGHLIGHTS SECTION - PREMIUM ENHANCEMENT
   ============================================ */
.highlights-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: linear-gradient(135deg, 
        rgba(79, 172, 254, 0.05) 0%,
        rgba(102, 126, 234, 0.05) 25%,
        rgba(118, 75, 162, 0.05) 50%,
        rgba(240, 147, 251, 0.05) 75%,
        rgba(245, 87, 108, 0.05) 100%
    );
    position: relative;
    overflow: hidden;
}

.highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.highlights-section::after {
    content: '♪ ♫ ♬';
    position: absolute;
    top: 50%;
    right: 5%;
    font-size: 8rem;
    color: rgba(102, 126, 234, 0.05);
    transform: translateY(-50%) rotate(15deg);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   PARTICIPANT CARDS - PREMIUM ENHANCEMENT
   ============================================ */
/* LUXURY PARTICIPANTS LAYOUT */
.participants-layout-revolution {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.participant-card-revolution {
    position: relative;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.participant-card-revolution:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #D4AF37;
}

.card-revolution-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 0;
}

.card-revolution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    border-radius: 0;
}

.participant-card-revolution:hover .card-revolution-image img {
    transform: scale(1.1);
}

.image-overlay-revolution {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.participant-card-revolution:hover .image-overlay-revolution {
    opacity: 1;
}

.card-revolution-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    text-align: center;
}

.category-icon-revolution {
    width: 60px;
    height: 60px;
    margin: -60px auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #D4AF37;
}

.icon-emoji {
    font-size: 1.5rem;
    color: #D4AF37;
}

.category-label-revolution {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-title-revolution {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    background: none;
    -webkit-text-fill-color: initial;
}

.participant-card-revolution:hover .card-title-revolution {
    color: #D4AF37;
    transform: none;
}

.age-range-revolution {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 15px;
    background: #f9f9f9;
    color: #666;
    font-size: 0.9rem;
    border-radius: 20px;
    margin: 0 auto 20px;
}

.btn-revolution {
    margin-top: auto;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-family: 'SVN-Ginger', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-revolution:hover {
    background: #D4AF37;
    color: #fff;
}

.btn-revolution .btn-arrow {
    display: none; /* Simplify button */
}

/* Remove unused elements */
.card-revolution-bg, .card-revolution-pattern, .icon-pulse, .features-revolution {
    display: none !important;
}

@media (max-width: 991px) {
    .participants-layout-revolution {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .participant-card-revolution {
        max-width: 500px;
        margin: 0 auto;
    }
}

.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(2rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
}

.participant-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    transition: var(--transition-elegant);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
}

.participant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f5576c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: 3;
}

.participant-card:hover::before {
    transform: scaleX(1);
}

.participant-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.25);
    border: none;
}

.card-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f5576c);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 5;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.participant-card.featured {
    transform: scale(1.02);
    box-shadow: var(--shadow-elegant);
    border: 2px solid var(--accent-gold);
    position: relative;
}

.participant-card.featured::after {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    z-index: 4;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.participant-card.featured:hover {
    transform: scale(1.02) translateY(-12px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

.participant-card .card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.participant-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.participant-card:hover .card-image img {
    transform: scale(1.1);
}

.participant-card .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.participant-card:hover .image-overlay {
    opacity: 0.4;
}

.participant-card .card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-title {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.age-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-align: center;
}

.age-range {
    font-size: 1.4rem;
    color: var(--secondary-dark);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.category-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.category-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    color: var(--text-color);
}

.category-features li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary-color);
}

.btn-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    background: var(--white);
    color: var(--secondary-color);
    text-align: center;
    border-radius: var(--radius-full);
    transition: var(--transition-elegant);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    border: 2px solid rgba(139, 115, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left var(--transition-base);
    z-index: 0;
}

.btn-category span,
.btn-category i {
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
}

.btn-category i {
    margin-left: 8px;
}

.btn-category:hover {
    color: var(--white);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-category:hover::before {
    left: 0;
}

.btn-category:hover i {
    transform: translateX(5px);
}

/* Requirements Container */
.requirements-container {
    margin-top: 60px;
    background: var(--light-bg);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.requirements-decoration {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.1;
}

.requirements-decoration:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
}

.requirements-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.requirements-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.requirements-list li {
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    position: relative;
    padding-left: 35px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li i {
    position: absolute;
    left: 0;
    top: 18px;
    color: var(--secondary-color);
}

.requirements-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.requirements-buttons .btn {
    flex: 1;
    min-width: 200px;
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.requirements-buttons .btn-outline-primary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.requirements-buttons .btn-outline-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

@media (max-width: 768px) {
    .requirements-buttons {
        flex-direction: column;
    }
    
    .requirements-buttons .btn {
        min-width: auto;
    }
    
    .judge-image {
        height: 300px;
    }
    
    .judge-content {
        padding: 20px;
        min-height: 120px;
    }
    
    .lineup-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   CTA SECTION - PREMIUM ENHANCEMENT
   ============================================ */
.cta-section {
    position: relative;
    padding: clamp(80px, 12vw, 140px) 0;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #667eea 0%,
        #764ba2 25%,
        #f093fb 50%,
        #f5576c 75%,
        #4facfe 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

.cta-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(0.5rem, 1.5vw, 1rem);
    position: relative;
    z-index: 2;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cta-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/kinh-nghiem-quy-bau.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    filter: brightness(0.7) contrast(1.1);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 26, 24, 0.75) 0%, rgba(139, 115, 85, 0.65) 100%);
    backdrop-filter: blur(2px);
}

.cta-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--white);
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    line-height: 1.2;
    font-family: 'SVN-Ginger', sans-serif;
}

.cta-content p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: var(--space-2xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.cta-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) saturate(180%);
    padding: var(--space-xl);
    border-radius: 0;
    width: 280px;
    text-align: center;
    transition: var(--transition-elegant);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f5576c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.cta-card:hover::before {
    transform: scaleX(1);
}

.cta-card:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: none;
}

.cta-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f5576c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    transition: var(--transition-base);
}

.cta-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
}

.cta-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

/* NEW CTA LAYOUT - REVOLUTIONARY DESIGN */
.cta-layout-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content-new {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.cta-icon-new {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    border: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-content-new:hover .cta-icon-new {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.25);
}

.cta-title-new {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'SVN-Ginger', sans-serif;
    line-height: 1.2;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.cta-description-new {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-info-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.cta-info-item-new {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0;
    border: none;
    transition: all 0.4s ease;
}

.cta-info-item-new:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.info-icon-new {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.cta-info-item-new:hover .info-icon-new {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.info-content-new h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'SVN-Ginger', sans-serif;
}

.info-content-new p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* CTA Form Card */
.cta-form-wrapper-new {
    position: relative;
    z-index: 2;
}

.cta-form-card-new {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: clamp(2.5rem, 4vw, 3.5rem);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.2),
        0 0 0 0 rgba(255, 255, 255, 0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-form-card-new:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(102, 126, 234, 0.2);
}

.form-header-new {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-form-card-new:hover .form-icon-new {
    transform: scale(1.1) rotate(-10deg);
}

.form-header-new h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: 'SVN-Ginger', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-header-new p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.form-body-new {
    margin-top: 2rem;
}

.form-input-wrapper-new {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input-new {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.4s ease;
    font-family: 'SVN-Ginger', sans-serif;
    backdrop-filter: blur(10px);
}

.form-input-new:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-input-new::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-submit-new {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-submit-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2, #f5576c);
}

.btn-submit-new i {
    transition: transform 0.4s ease;
}

.btn-submit-new:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .cta-layout-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content-new {
        text-align: center;
    }
    
    .cta-icon-new {
        margin: 0 auto 2rem;
    }
    
    .cta-info-grid-new {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* CTA Form */
.cta-form {
    max-width: 600px;
    margin: 0 auto 30px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex-grow: 1;
}

.cta-form input[type="email"] {
    width: 100%;
    padding: 16px 25px;
    border: none;
    border-radius: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    color: var(--white);
    font-size: 1.1rem;
}

.cta-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.7);
}

.cta-form input[type="email"]:focus {
    outline: none;
    background: rgba(255,255,255,0.25);
}

.cta-form button {
    width: 100%;
    padding: 16px 30px;
    border-radius: 50px;
    background: var(--white);
    color: var(--secondary-color);
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-form button:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* Scroll to Top */
.scroll-to-top {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.scroll-to-top i {
    margin-right: 8px;
}

/* ============================================
   LINEUP/JUDGES SECTION - PREMIUM ENHANCEMENT
   ============================================ */
.lineup-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.lineup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.2), transparent);
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.judge-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    text-align: center;
}

.judge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #D4AF37;
}

.judge-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.judge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.judge-card:hover .judge-image img {
    transform: scale(1.1);
}

.judge-content {
    padding: 30px 20px;
    background: #fff;
    position: relative;
}

.judge-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #D4AF37;
}

.judge-content h3 {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 700;
}

.judge-card:hover .judge-content h3 {
    color: #D4AF37;
}

.judge-title {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 0.9rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.judge-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
}

.judge-credentials li {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Remove unused elements */
.judge-card::before, .judge-image::after {
    display: none !important;
}

/* ============================================
   CATEGORIES SECTION - PREMIUM ENHANCEMENT
   ============================================ */
/* ============================================
   CATEGORIES SECTION - LUXURY MINIMALIST
   ============================================ */
.categories-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.categories-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.flip-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.flip-card {
    width: 100%;
    height: 350px;
    perspective: 1000px;
    margin-bottom: 0;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.flip-card-front {
    background: #fff;
    z-index: 2;
}

.flip-card-back {
    background: #1a1a2e;
    color: #fff;
    transform: rotateY(180deg);
    z-index: 1;
    border: 1px solid #D4AF37;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.front-image {
    height: 100%;
    position: relative;
}

.front-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.flip-card:hover .front-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.flip-card:hover .image-overlay {
    background: rgba(0,0,0,0.6);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #D4AF37;
    font-size: 1.8rem;
}

.image-overlay h3 {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Back Side Content */
.back-content h3 {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.category-description {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 80%;
}

.age-groups h4 {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.age-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.age-tag {
    padding: 5px 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 500;
}

.flip-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #D4AF37;
    color: #1a1a2e;
    font-family: 'SVN-Ginger', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.flip-btn:hover {
    background: #fff;
    color: #1a1a2e;
}

/* Remove unused elements */
.categories-section::before, .categories-section::after, .piano-icon {
    display: none !important;
}

@media (max-width: 991px) {
    .flip-categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flip-card {
        height: 400px;
    }
}



/* Back Side */
.back-content {
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--gradient);
    box-sizing: border-box;
}

.back-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.category-description {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.age-groups h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.age-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.age-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.age-tag:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.flip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--secondary-color);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.flip-btn:hover {
    background: var(--primary-light);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-decoration: none;
}

    .flip-btn i {
        font-size: 1rem;
    }
    
    /* Competition Details Button */
    .competition-details-btn {
        background: var(--gradient);
        border: none;
        padding: 18px 35px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        box-shadow: 0 10px 25px rgba(139,115,85,0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .competition-details-btn:before {
        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.5s ease;
    }
    
    .competition-details-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(139,115,85,0.4);
        background: var(--gradient-dark);
    }
    
    .competition-details-btn:hover:before {
        left: 100%;
    }
    
    .competition-details-btn i:last-child {
        transition: transform 0.3s ease;
    }
    
    .competition-details-btn:hover i:last-child {
        transform: translateX(5px);
    }

/* Responsive Design for Flip Cards */
@media (max-width: 1199px) {
    .flip-categories-grid {
        gap: 1.5rem;
    }
    
    .flip-card {
        height: 380px;
    }
}

/* Mobile touch support */
@media (hover: none) and (pointer: coarse) {
    .flip-card {
        cursor: default;
    }
    
    .flip-card:active .flip-card-inner,
    .flip-card:focus .flip-card-inner {
        transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
    }
    
    .flip-card:active .flip-card-inner:active,
    .flip-card:focus .flip-card-inner:focus {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
    }
}

@media (max-width: 991px) {
    .flip-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 50px auto 0;
    }
    
    .flip-card {
        height: 400px;
    }
    
    .categories-section {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .flip-categories-grid {
        gap: 1.5rem;
    }
    
    .flip-card {
        height: 380px;
    }
    
    .back-content {
        padding: 25px 20px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .image-overlay h3 {
        font-size: 1.4rem;
    }
    
    .back-content h3 {
        font-size: 1.4rem;
    }
    
    .age-tags {
        gap: 6px;
    }
    
    .age-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .flip-categories-grid {
        gap: 1.5rem;
    }
    
    .flip-card {
        height: 350px;
    }
    
    .back-content {
        padding: 20px 15px;
    }
    
    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .image-overlay h3 {
        font-size: 1.3rem;
    }
    
    .back-content h3 {
        font-size: 1.3rem;
    }
    
    .category-description {
        font-size: 0.95rem;
    }
    
    .flip-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Seasonal Hover Cards Timeline */
/* ============================================
   SEASONAL HOVER CARDS - HIỆU ỨNG HOVER MỞ RỘNG
   ============================================ */
.timeline-section {
    padding: 40px 0 80px 0;
    background: #fff;
    position: relative;
}

.timeline-section .section-header {
    margin-bottom: 40px;
}

.timeline-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.seasonal-timeline-wrapper {
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
}

.seasonal-timeline-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 450px;
}

.seasonal-timeline-card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 450px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: flex 0.5s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    padding-bottom: 24px;
    z-index: 1;
    box-sizing: border-box;
}

.seasonal-timeline-card:hover {
    flex: 4 1 0;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    padding-bottom: 24px;
}

/* Khi một card hover, các card khác thu nhỏ - Tỉ lệ 40% + 30% + 30% */
.seasonal-timeline-cards:hover .seasonal-timeline-card:not(:hover) {
    flex: 3 1 0;
}

/* Card Image */
.seasonal-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay */
.seasonal-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* Card Content */
.seasonal-card-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.seasonal-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.seasonal-round-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.seasonal-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
}

.seasonal-type-badge.online {
    background: rgba(0, 123, 255, 0.3);
}

.seasonal-type-badge.offline {
    background: rgba(40, 167, 69, 0.3);
}

.seasonal-card-main {
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.seasonal-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.3;
    font-family: 'SVN-Ginger', sans-serif;
}

.seasonal-card-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seasonal-card-subtitle i {
    color: #D4AF37;
}

/* Description - Hidden by default, shows on hover */
.seasonal-card-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 0;
}

.seasonal-timeline-card:hover .seasonal-card-description {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
}

.seasonal-regions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seasonal-region-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.seasonal-region-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #D4AF37;
}

.seasonal-region-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 6px;
}

.seasonal-region-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.seasonal-region-date {
    font-size: 0.8rem;
    color: #D4AF37;
    font-weight: 600;
    white-space: nowrap;
}

.seasonal-region-location {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.seasonal-region-location i {
    color: #D4AF37;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .seasonal-timeline-cards {
        height: 400px;
    }
    
    .seasonal-timeline-card {
        height: 400px;
    }
    
    .seasonal-timeline-card:hover {
        flex: 4 1 0;
    }
    
    .seasonal-timeline-cards:hover .seasonal-timeline-card:not(:hover) {
        flex: 3 1 0;
    }
}

@media (max-width: 991px) {
    .timeline-section {
        padding: 30px 0 60px 0;
    }
    
    .timeline-section .container {
        padding: 0 10px;
    }
    
    .seasonal-timeline-cards {
        flex-wrap: wrap;
        gap: 10px;
        height: auto;
    }
    
    .seasonal-timeline-card {
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
        height: 350px;
    }
    
    .seasonal-timeline-card:hover {
        flex: 2 1 calc(50% - 5px);
    }
    
    .seasonal-timeline-cards:hover .seasonal-timeline-card:not(:hover) {
        flex: 0.5 1 calc(50% - 5px);
    }
    
    .seasonal-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .timeline-section .container {
        padding: 0;
    }
    
    .seasonal-timeline-cards {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }
    
    .seasonal-timeline-card {
        flex: 0 0 100%;
        width: 100%;
        height: 300px;
    }
    
    .seasonal-timeline-card:hover {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .seasonal-card-title {
        font-size: 1.3rem;
    }
    
    .seasonal-card-subtitle {
        font-size: 0.85rem;
    }
}

.timeline-locations {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: inline-block;
    text-align: left;
}

.timeline-locations li {
    margin-bottom: 5px;
    padding: 5px 0;
    font-size: 0.9rem;
    color: #555;
    border: none;
    background: none;
}

.timeline-locations li strong {
    color: #1a1a2e;
    font-weight: 600;
    margin-right: 5px;
}

/* Rules Highlight */
.rules-highlight {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
    margin-top: 60px;
}

.rules-highlight h3 {
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 30px;
}

.rules-list {
    list-style: none;
    padding-left: 0;
}

.rules-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-family: 'SVN-Ginger', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.rules-list li:before {
    content: "•";
    font-family: inherit;
    font-weight: bold;
    position: absolute;
    left: 5px;
    color: #D4AF37;
    font-size: 1.2rem;
    line-height: 1;
    top: 2px;
}

/* Award Items */
.award-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.award-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.award-icon.gold {
    color: var(--gold);
}

.award-icon.silver {
    color: var(--silver);
}

.award-icon.bronze {
    color: var(--bronze);
}

.award-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.award-item p {
    margin-bottom: 0;
}

/* CTA Details */
.cta-details {
    max-width: 700px;
    margin: 0 auto;
}

.cta-detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-detail-item i {
    font-size: 1.2rem;
    margin-right: 10px;
}

/* Criteria Intro */
.criteria-intro {
    max-width: 800px;
    margin: 0 auto;
}

.criteria-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Criteria Section */
.criteria-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05), rgba(118, 75, 162, 0.05));
}

.criteria-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0 clamp(0.5rem, 1vw, 1rem);
}

.criteria-intro-new {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--text-color);
    padding: 0 clamp(0.5rem, 1vw, 1rem);
}

.criteria-tags {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.criteria-tag {
    padding: 0.4rem 1rem;
    border: 1px solid rgba(102, 126, 234, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

/* NEW SIMPLE CRITERIA DESIGN */
.criteria-showcase-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-top: 3rem;
    padding: 0 clamp(0.5rem, 1vw, 1rem);
}

.criteria-card-simple {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: clamp(1.25rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    border-radius: 0;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.criteria-card-simple:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card-header-simple {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-tag {
    display: inline-block;
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0;
    border: none;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.card-title-main {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.2;
    font-family: 'SVN-Ginger', sans-serif;
}

.card-type-badge {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-description-simple {
    color: #4a5568;
    font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.criteria-circles-simple {
    display: flex;
    justify-content: space-between;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    margin-bottom: 1.5rem;
}

.circle-item-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.circle-progress-simple {
    width: clamp(70px, 10vw, 90px);
    height: clamp(70px, 10vw, 90px);
    position: relative;
}

.circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(102, 126, 234, 0.15);
    stroke-width: 8;
}

.circle-fill {
    fill: none;
    stroke: #667eea;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.6s ease;
}

.circle-label {
    font-size: clamp(0.6875rem, 1vw, 0.75rem);
    color: #4a5568;
    text-align: center;
    line-height: 1.2;
}

.card-score-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.score-label {
    font-size: 0.875rem;
    color: #4a5568;
}

.score-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #667eea;
}

/* Responsive */
@media (max-width: 1400px) {
    .criteria-showcase-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .criteria-showcase-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .criteria-showcase-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.awards-showcase {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem clamp(0.5rem, 1vw, 1rem);
}

.awards-intro h3 {
    margin-bottom: 0.5rem;
}

.awards-row {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.award-chip {
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.95);
}

.award-chip.gold {
    border-color: rgba(212, 175, 55, 0.4);
}

.award-chip.silver {
    border-color: rgba(180, 180, 180, 0.4);
}

.award-chip.bronze {
    border-color: rgba(205, 133, 63, 0.4);
}

.award-chip.highlight {
    border-color: rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
}

.chip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.chip-header span {
    font-weight: 700;
    font-size: 0.9rem;
}

.award-chip strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.criteria-cta {
    margin-top: 2.5rem;
    text-align: center;
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }

    .stats-grid,
    .participants-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .intro-section, 
    .purpose-section,
    .highlights-section,
    .lineup-section,
    .categories-section,
    .timeline-section,
    .criteria-section {
        padding: 80px 0;
    }

    .participant-card.featured {
        transform: scale(1);
    }
    
    .participant-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .participant-card .card-image {
        height: 220px;
    }
    
    .floating-card {
        right: 0;
        bottom: -10px;
    }
    
    .lineup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-cards {
        gap: 20px;
    }
    
    .cta-card {
        width: 220px;
        padding: 25px 15px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }

    .event-info {
        flex-direction: column;
        gap: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-image {
        height: 400px;
        margin-top: 40px;
    }
    
    .purpose-grid,
    .participants-grid,
    .categories-grid,
    .lineup-grid {
        grid-template-columns: 1fr;
    }
    
    .participant-card .card-image {
        height: 200px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-card {
        width: 100%;
        max-width: 300px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-locations li {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .floating-card {
        position: static;
        margin: 20px auto 0;
        max-width: 300px;
    }
    
    .requirements-container {
        padding: 30px 20px;
    }
    
    .intro-image-wrapper {
        padding: 0;
    }
    
    .image-decoration {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 250px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .intro-text-highlight {
        font-size: 1.1rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .ticket-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Lấp đầy hoàn toàn banner */
    object-position: center center;
    background-color: #000; /* Background đen để tránh màn hình trắng */
    opacity: 1; /* Đảm bảo video hiển thị */
    transition: opacity 0.3s ease; /* Hiệu ứng fade in */
    display: block; /* Đảm bảo video hiển thị */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
</style>
<style>
/* Minimal CSS for News Section to ensure display */
.news-card:hover .news-image {
    transform: scale(1.1);
}
.news-title a:hover {
    color: #D4AF37 !important;
}
.btn-shine {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-shine:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    color: white;
}
</style>
<style>
/* Partners Section Styles */
.partners-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.partners-section:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
    top: -150px;
    right: -150px;
    opacity: 0.5;
    border-radius: 50%;
}

.partner-category {
    margin-bottom: 60px;
}

.category-heading {
    text-align: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.category-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-color);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.partner-item {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-info h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Sponsors Grid */
.sponsors-grid, 
.supporters-grid,
.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.sponsor-item,
.supporter-item,
.media-item {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.sponsor-item:hover,
.supporter-item:hover,
.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.sponsor-logo,
.supporter-logo,
.media-logo {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo img,
.supporter-logo img,
.media-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo img,
.supporter-item:hover .supporter-logo img,
.media-item:hover .media-logo img {
}

/* Become Partner */
.become-partner {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.become-partner h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.become-partner p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 991px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sponsors-grid, 
    .supporters-grid,
    .media-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .partners-grid,
    .sponsors-grid, 
    .supporters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-item,
    .sponsor-item,
    .supporter-item,
    .media-item {
        padding: 15px;
    }
    
    .become-partner {
        padding: 30px 20px;
    }
    
    .become-partner h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .partners-grid,
    .sponsors-grid, 
    .supporters-grid,
    .media-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sponsor-item,
    .supporter-item,
    .media-item {
        height: 120px;
    }
    
    .category-heading {
        font-size: 1.5rem;
    }
}
</style>
<style>
/* Override CSS cho core-value-title - đảm bảo áp dụng */
.core-value-title,
h3.core-value-title,
.core-values-section h3.core-value-title,
.core-value-column h3.core-value-title {
    font-family: 'SVN-Ginger', sans-serif !important;
    font-size: 36px !important;
    font-weight: 500 !important;
    color: #000 !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
    margin-top: auto !important;
    text-align: center !important;
    line-height: 1.2 !important;
    text-transform: capitalize !important;
    white-space: nowrap !important;
    height: auto !important;
    width: auto !important;
}
</style>
<style>
.section-title-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.section-title-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    text-decoration: none;
}

.section-title-link i {
    font-size: 0.8em;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.section-title-link:hover i {
    opacity: 1;
    transform: translateX(3px);
}
</style>
        w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
 }  
  
 . l o g o - i n n e r - u l t r a   i m g   {  
         m a x - w i d t h :   9 0 % ;  
         m a x - h e i g h t :   9 0 % ;  
         o b j e c t - f i t :   c o n t a i n ;  
         t r a n s i t i o n :   a l l   0 . 6 s   c u b i c - b e z i e r ( 0 . 3 4 ,   1 . 5 6 ,   0 . 6 4 ,   1 ) ;  
         f i l t e r :   g r a y s c a l e ( 3 0 % )   b r i g h t n e s s ( 0 . 9 5 ) ;  
         p o s i t i o n :   r e l a t i v e ;  
         z - i n d e x :   2 ;  
         p a d d i n g :   0 . 5 r e m ;  
 }  
  
 . l o g o - c a r d - u l t r a : h o v e r   . l o g o - i n n e r - u l t r a   i m g   {  
         t r a n s f o r m :   s c a l e ( 1 . 2 )   r o t a t e ( 2 d e g ) ;  
         f i l t e r :   g r a y s c a l e ( 0 % )   b r i g h t n e s s ( 1 . 1 5 ) ;  
         a n i m a t i o n :   l o g o G l o w U l t r a   2 s   e a s e - i n - o u t   i n f i n i t e ;  
 }  
  
 @ k e y f r a m e s   l o g o G l o w U l t r a   {  
         0 % ,   1 0 0 %   {  
                 f i l t e r :   g r a y s c a l e ( 0 % )   b r i g h t n e s s ( 1 . 1 5 )   d r o p - s h a d o w ( 0   0   8 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 4 ) ) ;  
         }  
         5 0 %   {  
                 f i l t e r :   g r a y s c a l e ( 0 % )   b r i g h t n e s s ( 1 . 2 )   d r o p - s h a d o w ( 0   0   2 0 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 6 ) ) ;  
         }  
 }  
  
 . e m p t y - s t a t e - u l t r a   {  
         g r i d - c o l u m n :   1   /   - 1 ;  
         t e x t - a l i g n :   c e n t e r ;  
         p a d d i n g :   3 r e m   2 r e m ;  
         c o l o r :   v a r ( - - t e x t - c o l o r ) ;  
         o p a c i t y :   0 . 6 ;  
         f o n t - s t y l e :   i t a l i c ;  
         f o n t - s i z e :   1 . 1 r e m ;  
 }  
  
 @ k e y f r a m e s   s h i n e   {  
         0 %   {   t r a n s f o r m :   t r a n s l a t e X ( - 1 0 0 % )   t r a n s l a t e Y ( - 1 0 0 % )   r o t a t e ( 4 5 d e g ) ;   }  
         1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e X ( 1 0 0 % )   t r a n s l a t e Y ( 1 0 0 % )   r o t a t e ( 4 5 d e g ) ;   }  
 }  
  
 / *   R e s p o n s i v e   D e s i g n   -   L a y o u t   M o d e r n   * /  
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   {  
         . p a r t n e r s - l a y o u t - m o d e r n   {  
                 g a p :   c l a m p ( 2 . 5 r e m ,   4 v w ,   3 . 5 r e m ) ;  
         }  
          
         . p a r t n e r - l o g o s - r o w   {  
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;  
                 g a p :   c l a m p ( 1 . 2 5 r e m ,   2 . 5 v w ,   2 r e m ) ;  
         }  
          
         . p a r t n e r - s e c t i o n - h e a d e r   {  
                 g a p :   1 . 2 5 r e m ;  
                 m a r g i n - b o t t o m :   2 r e m ;  
         }  
          
         . p a r t n e r - b a d g e   {  
                 w i d t h :   6 0 p x ;  
                 h e i g h t :   6 0 p x ;  
                 m i n - w i d t h :   6 0 p x ;  
                 f o n t - s i z e :   1 . 5 r e m ;  
         }  
          
         . l o g o - f r a m e - m o d e r n   {  
                 h e i g h t :   1 2 0 p x ;  
                 p a d d i n g :   c l a m p ( 1 r e m ,   2 v w ,   1 . 5 r e m ) ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 7 p x )   {  
         . p a r t n e r s - s e c t i o n   {  
                 p a d d i n g :   8 0 p x   0 ;  
         }  
          
         . p a r t n e r s - l a y o u t - m o d e r n   {  
                 g a p :   c l a m p ( 2 r e m ,   3 v w ,   3 r e m ) ;  
         }  
          
         . p a r t n e r - s e c t i o n - m o d e r n   {  
                 p a d d i n g :   c l a m p ( 1 . 5 r e m ,   2 . 5 v w ,   2 r e m ) ;  
         }  
          
         . p a r t n e r - s e c t i o n - h e a d e r   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 a l i g n - i t e m s :   c e n t e r ;  
                 t e x t - a l i g n :   c e n t e r ;  
                 g a p :   1 r e m ;  
         }  
          
         . p a r t n e r - b a d g e   {  
                 m a r g i n :   0   a u t o ;  
         }  
          
         . p a r t n e r - h e a d e r - t e x t   {  
                 t e x t - a l i g n :   c e n t e r ;  
         }  
          
         . p a r t n e r - l o g o s - r o w   {  
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;  
                 g a p :   1 . 2 5 r e m ;  
         }  
          
         . l o g o - f r a m e - m o d e r n   {  
                 h e i g h t :   1 1 0 p x ;  
                 p a d d i n g :   1 r e m ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   5 7 5 p x )   {  
         . p a r t n e r - l o g o s - r o w   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   1 r e m ;  
         }  
          
         . l o g o - f r a m e - m o d e r n   {  
                 h e i g h t :   1 0 0 p x ;  
         }  
 }  
  
 / *   B e c o m e   P a r t n e r   -   C    i   t h i   ! n   * /  
 . b e c o m e - p a r t n e r   {  
         m a r g i n - t o p :   8 0 p x ;  
         p o s i t i o n :   r e l a t i v e ;  
         z - i n d e x :   1 ;  
 }  
  
 . b e c o m e - p a r t n e r - i n n e r   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 1 ) ,   r g b a ( 1 1 8 ,   7 5 ,   1 6 2 ,   0 . 1 ) ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ;  
         b o r d e r - r a d i u s :   0 ;  
         p a d d i n g :   6 0 p x   4 0 p x ;  
         b o x - s h a d o w :   0   1 5 p x   4 0 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 1 5 ) ;  
         p o s i t i o n :   r e l a t i v e ;  
         o v e r f l o w :   h i d d e n ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 2 ) ;  
 }  
  
 . b e c o m e - p a r t n e r - i n n e r : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   u r l ( ' a s s e t s / i m a g e s / p a t t e r n - b g . p n g ' ) ;  
         o p a c i t y :   0 . 0 5 ;  
         z - i n d e x :   - 1 ;  
 }  
  
 . p a r t n e r - c t a - i c o n   {  
         w i d t h :   8 0 p x ;  
         h e i g h t :   8 0 p x ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a ,   # 7 6 4 b a 2 ) ;  
         b o r d e r - r a d i u s :   0 ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         m a r g i n :   0   a u t o   2 5 p x ;  
         c o l o r :   v a r ( - - w h i t e ) ;  
         f o n t - s i z e :   2 r e m ;  
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 4 ) ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         p o s i t i o n :   r e l a t i v e ;  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 . p a r t n e r - c t a - i c o n : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   - 5 0 % ;  
         l e f t :   - 5 0 % ;  
         w i d t h :   2 0 0 % ;  
         h e i g h t :   2 0 0 % ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   t r a n s p a r e n t ,   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 3 ) ,   t r a n s p a r e n t ) ;  
         t r a n s f o r m :   r o t a t e ( 4 5 d e g ) ;  
         t r a n s i t i o n :   a l l   0 . 5 s   e a s e ;  
 }  
  
 . p a r t n e r - c t a - i c o n : h o v e r : b e f o r e   {  
         a n i m a t i o n :   s h i n e   1 s   e a s e ;  
 }  
  
 . p a r t n e r - c t a - i c o n : h o v e r   {  
         t r a n s f o r m :   s c a l e ( 1 . 1 )   r o t a t e ( 5 d e g ) ;  
         b o x - s h a d o w :   0   1 5 p x   4 0 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 5 ) ;  
 }  
  
 . b e c o m e - p a r t n e r   h 3   {  
         c o l o r :   v a r ( - - s e c o n d a r y - c o l o r ) ;  
         f o n t - s i z e :   2 . 2 r e m ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . b e c o m e - p a r t n e r   p   {  
         c o l o r :   v a r ( - - t e x t - c o l o r ) ;  
         f o n t - s i z e :   1 . 2 r e m ;  
         m a x - w i d t h :   7 0 0 p x ;  
         m a r g i n :   0   a u t o   2 5 p x ;  
 }  
  
 . b e c o m e - p a r t n e r   . b t n - p r i m a r y   {  
         p a d d i n g :   1 5 p x   3 0 p x ;  
         f o n t - s i z e :   1 . 1 r e m ;  
         b o r d e r - r a d i u s :   0 ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a ,   # 7 6 4 b a 2 ) ;  
         b o r d e r :   n o n e ;  
         b o x - s h a d o w :   0   8 p x   2 4 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 3 ) ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . b e c o m e - p a r t n e r   . b t n - p r i m a r y : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x )   s c a l e ( 1 . 0 5 ) ;  
         b o x - s h a d o w :   0   1 5 p x   4 0 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 4 ) ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 7 6 4 b a 2 ,   # 6 6 7 e e a ) ;  
 }  
  
 . b e c o m e - p a r t n e r   . b t n - p r i m a r y   i   {  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . b e c o m e - p a r t n e r   . b t n - p r i m a r y : h o v e r   i   {  
         t r a n s f o r m :   t r a n s l a t e X ( 5 p x ) ;  
 }  
  
 / *   R e s p o n s i v e   D e s i g n   -   B e c o m e   P a r t n e r   * /  
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   {  
         . b e c o m e - p a r t n e r - i n n e r   {  
                 p a d d i n g :   5 0 p x   3 0 p x ;  
         }  
          
         . b e c o m e - p a r t n e r   h 3   {  
                 f o n t - s i z e :   1 . 8 r e m ;  
         }  
          
         . b e c o m e - p a r t n e r   p   {  
                 f o n t - s i z e :   1 . 1 r e m ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 7 p x )   {  
         . b e c o m e - p a r t n e r   {  
                 m a r g i n - t o p :   6 0 p x ;  
         }  
          
         . b e c o m e - p a r t n e r - i n n e r   {  
                 p a d d i n g :   4 0 p x   2 0 p x ;  
         }  
          
         . p a r t n e r - c t a - i c o n   {  
                 w i d t h :   6 0 p x ;  
                 h e i g h t :   6 0 p x ;  
                 f o n t - s i z e :   1 . 5 r e m ;  
                 m a r g i n - b o t t o m :   2 0 p x ;  
         }  
          
         . b e c o m e - p a r t n e r   h 3   {  
                 f o n t - s i z e :   1 . 6 r e m ;  
         }  
          
         . b e c o m e - p a r t n e r   p   {  
                 f o n t - s i z e :   1 r e m ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   5 7 5 p x )   {  
         . b e c o m e - p a r t n e r   h 3   {  
                 f o n t - s i z e :   1 . 4 r e m ;  
         }  
          
         . b e c o m e - p a r t n e r   . b t n - p r i m a r y   {  
                 p a d d i n g :   1 2 p x   2 5 p x ;  
                 f o n t - s i z e :   1 r e m ;  
         }  
 }  
 