 /* CSS Variables for Theme Switching */
        :root {
            --primary-color: #e63946;
            --secondary-color: #f1faee;
            --accent-color: #a8dadc;
            --dark-color: #1d3557;
            --light-color: #f1faee;
            --text-color: #1d3557;
            --bg-color: #ffffff;
            --card-bg: #f8f9fa;
            --shadow: rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        [data-theme="dark"] {
            --primary-color: #e63946;
            --secondary-color: #1d3557;
            --accent-color: #457b9d;
            --dark-color: #f1faee;
            --light-color: #1d3557;
            --text-color: #f1faee;
            --bg-color: #121212;
            --card-bg: #1e1e1e;
            --shadow: rgba(255, 255, 255, 0.05);
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            transition: var(--transition);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--shadow);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-color);
            border: 2px solid var(--text-color);
        }

        .btn-secondary:hover {
            background-color: var(--text-color);
            color: var(--bg-color);
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--bg-color);
            box-shadow: 0 2px 10px var(--shadow);
            transition: var(--transition);
        }

        .navbar {
            padding: 15px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img img {
            height: 50px;
            width: auto;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-menu a {
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .archive-link {
            color: var(--primary-color);
            font-weight: 600;
        }

        .theme-toggle {
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.2rem;
            cursor: pointer;
            margin-left: 20px;
            transition: var(--transition);
        }

        .theme-toggle:hover {
            color: var(--primary-color);
            transform: rotate(30deg);
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .hamburger:hover {
            color: var(--primary-color);
        }



/* Hero Section - Mobile Optimized */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: -1;
}

.hero-content {
    max-width: 90%;
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 12px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    font-weight: 400;
}

.hero-date {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 25px;
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #d32f2f);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d32f2f, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Fix for button links */
.hero-buttons .btn a {
    color: inherit;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary a {
    color: white !important;
}

.btn-secondary a {
    color: inherit;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 0 15px;
    }
    
    .hero-content {
        max-width: 95%;
        padding: 0 10px;
    }
    
    .hero h1 {
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .hero-date {
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
        min-width: auto;
    }
    
    /* Ensure images are optimized for mobile */
    .slide {
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 10px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4.5vw, 1.2rem);
        margin-bottom: 8px;
    }
    
    .hero-date {
        font-size: clamp(0.85rem, 4vw, 1rem);
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        max-width: 260px;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    /* Enhanced overlay for better text readability on mobile */
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }
}

/* Very small devices (iPhone SE, etc) */
@media (max-width: 320px) {
    .hero {
        min-height: 568px;
    }
    
    .hero-buttons {
        max-width: 240px;
    }
    
    .hero-buttons .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero-content {
        transform: scale(0.9);
    }
    
    .hero h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin-bottom: 6px;
    }
    
    .hero-date {
        font-size: clamp(0.75rem, 2.8vw, 0.9rem);
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        flex-direction: row;
        max-width: 400px;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        min-width: 140px;
    }
}

/* Prevent horizontal scrolling on mobile */
@media (max-width: 768px) {
    .hero {
        overflow-x: hidden;
    }
    
    .slider,
    .slide {
        overflow-x: hidden;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .hero-buttons .btn {
        padding: 16px 25px;
        min-height: 50px;
    }
    
    .btn-primary:active {
        transform: scale(0.98);
    }
    
    .btn-secondary:active {
        transform: scale(0.98);
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide {
        background-size: cover;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .slide {
        transition: opacity 0.5s ease;
    }
    
    .hero-buttons .btn {
        transition: none;
    }
}












       
        /* Mobile Responsive Styles */
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--bg-color);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                gap: 30px;
                transition: var(--transition);
                z-index: 999;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: block;
            }

          

            .btn {
                width: 200px;
            }
        }

        @media (max-width: 576px) {
            .logo-text {
                font-size: 1.2rem;
            }

          
        }




        /* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-color);
    transition: var(--transition);
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Mobile Responsive Styles for About Section */
@media (max-width: 992px) {
    .about {
        padding: 80px 0;
    }
    
    .about h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 50px 0;
    }
    
    .about h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .btn-outline {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}




/* Cultural Groups Section */
.cultural-groups {
    padding: 100px 0;
    background-color: var(--card-bg);
    transition: var(--transition);
}

.cultural-groups .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cultural-groups h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
}

.cultural-groups h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.group-card {
    background-color: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

.group-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.group-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.group-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 10px;
}

.group-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.group-info p {
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.8;
    flex-grow: 1;
}

/* Mobile Responsive Styles for Cultural Groups */
@media (max-width: 1200px) {
    .groups-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .cultural-groups {
        padding: 80px 0;
    }
    
    .cultural-groups h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .groups-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .group-img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .cultural-groups {
        padding: 60px 0;
    }
    
    .cultural-groups h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .groups-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .group-img {
        height: 200px;
    }
    
    .group-info {
        padding: 20px;
    }
    
    .group-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .cultural-groups {
        padding: 50px 0;
    }
    
    .cultural-groups h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .group-img {
        height: 180px;
    }
    
    .group-info {
        padding: 15px;
    }
    
    .group-info h3 {
        font-size: 1.2rem;
    }
    
    .group-info p {
        font-size: 0.9rem;
    }
}

/* Animation for card entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.group-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation for grid items */
.groups-grid .group-card:nth-child(1) { animation-delay: 0.1s; }
.groups-grid .group-card:nth-child(2) { animation-delay: 0.2s; }
.groups-grid .group-card:nth-child(3) { animation-delay: 0.3s; }
.groups-grid .group-card:nth-child(4) { animation-delay: 0.4s; }
.groups-grid .group-card:nth-child(5) { animation-delay: 0.5s; }
.groups-grid .group-card:nth-child(6) { animation-delay: 0.6s; }
.groups-grid .group-card:nth-child(7) { animation-delay: 0.7s; }
.groups-grid .group-card:nth-child(8) { animation-delay: 0.8s; }
.groups-grid .group-card:nth-child(9) { animation-delay: 0.9s; }
.groups-grid .group-card:nth-child(10) { animation-delay: 1.0s; }
.groups-grid .group-card:nth-child(11) { animation-delay: 1.1s; }
.groups-grid .group-card:nth-child(12) { animation-delay: 1.2s; }
.groups-grid .group-card:nth-child(13) { animation-delay: 1.3s; }





/* Organizers Section */
.organizers {
    padding: 100px 0;
    background-color: var(--bg-color);
    transition: var(--transition);
}

.organizers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.organizers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
}

.organizers h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.organizers .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.organizer-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.organizer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

.organizer-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.organizer-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: var(--transition);
}

.organizer-card:hover .organizer-img::before {
    opacity: 1;
}

.organizer-social-links {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.organizer-card:hover .organizer-social-links {
    transform: translateY(0);
    opacity: 1;
}

.organizer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.organizer-social-links a:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
}

.organizer-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.organizer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.organizer-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Mobile Responsive Styles for Organizers */
@media (max-width: 1200px) {
    .organizers-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .organizers {
        padding: 80px 0;
    }
    
    .organizers h2 {
        font-size: 2.2rem;
    }
    
    .organizers .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .organizers-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .organizer-img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .organizers {
        padding: 60px 0;
    }
    
    .organizers h2 {
        font-size: 2rem;
    }
    
    .organizers .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .organizers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .organizer-img {
        height: 250px;
    }
    
    .organizer-content {
        padding: 20px;
    }
    
    .organizer-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .organizers {
        padding: 50px 0;
    }
    
    .organizers h2 {
        font-size: 1.8rem;
    }
    
    .organizers .section-subtitle {
        font-size: 0.95rem;
    }
    
    .organizer-img {
        height: 220px;
    }
    
    .organizer-content {
        padding: 15px;
    }
    
    .organizer-content h3 {
        font-size: 1.2rem;
    }
    
    .organizer-role {
        font-size: 1rem;
    }
    
    .organizer-social-links a {
        width: 35px;
        height: 35px;
    }
}

/* Animation for card entrance */
.organizer-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation for grid items */
.organizers-grid .organizer-card:nth-child(1) { animation-delay: 0.1s; }
.organizers-grid .organizer-card:nth-child(2) { animation-delay: 0.2s; }
.organizers-grid .organizer-card:nth-child(3) { animation-delay: 0.3s; }
.organizers-grid .organizer-card:nth-child(4) { animation-delay: 0.4s; }
.organizers-grid .organizer-card:nth-child(5) { animation-delay: 0.5s; }
.organizers-grid .organizer-card:nth-child(6) { animation-delay: 0.6s; }
.organizers-grid .organizer-card:nth-child(7) { animation-delay: 0.7s; }
.organizers-grid .organizer-card:nth-child(8) { animation-delay: 0.8s; }
.organizers-grid .organizer-card:nth-child(9) { animation-delay: 0.9s; }
.organizers-grid .organizer-card:nth-child(10) { animation-delay: 1.0s; }
.organizers-grid .organizer-card:nth-child(11) { animation-delay: 1.1s; }
.organizers-grid .organizer-card:nth-child(12) { animation-delay: 1.2s; }










/* Gallery Section - Modern Swipeable Gallery */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        var(--card-bg) 0%, 
        var(--bg-color) 50%, 
        var(--card-bg) 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
}

.gallery .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Gallery Header */
.gallery h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.gallery .section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Gallery Navigation */
.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-nav-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery-nav-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.6s ease;
}

.gallery-nav-btn:hover::before {
    left: 100%;
}

.gallery-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.5);
}

.gallery-nav-btn:active {
    transform: translateY(-1px);
}

.gallery-counter {
    background: var(--card-bg);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--text-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
}

/* Gallery Container */
.gallery-swipe-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: var(--card-bg);
    margin-bottom: 40px;
    touch-action: pan-y pinch-zoom;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 600px;
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    transform: scale(0.95);
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dragging State */
.gallery-track.dragging {
    transition: none;
    cursor: grabbing;
}

.gallery-track.dragging .slide-image img {
    pointer-events: none;
}

/* Gallery Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    transform: scale(1.1);
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    position: relative;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
}

.gallery-cta .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.gallery-cta .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.6s ease;
}

.gallery-cta .btn:hover::before {
    left: 100%;
}

.gallery-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.4);
}

.gallery-cta .btn:hover i {
    transform: translateX(5px);
}

.gallery-cta .btn i {
    transition: transform 0.3s ease;
}

/* Loading State */
.gallery-loading .gallery-track {
    opacity: 0.7;
}

.gallery-loading .gallery-slide {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-track {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .gallery {
        padding: 80px 0;
    }
    
    .gallery-track {
        height: 500px;
    }
    
    .gallery-nav-btn {
        width: 55px;
        height: 55px;
    }
    
    .gallery-counter {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-nav {
        margin-bottom: 30px;
        gap: 20px;
    }
    
    .gallery-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .gallery-track {
        height: 400px;
    }
    
    .gallery-dots {
        margin-bottom: 40px;
        gap: 10px;
    }
    
    .gallery-cta .btn {
        padding: 16px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery {
        padding: 50px 0;
    }
    
    .gallery-track {
        height: 350px;
    }
    
    .gallery-nav {
        gap: 15px;
    }
    
    .gallery-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .gallery-counter {
        padding: 8px 18px;
        font-size: 0.95rem;
        min-width: 90px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .gallery-cta .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .gallery-nav-btn:active {
        transform: scale(0.95);
    }
    
    .gallery-cta .btn:active {
        transform: translateY(-1px);
    }
    
    .gallery-swipe-container {
        cursor: grab;
    }
    
    .gallery-swipe-container:active {
        cursor: grabbing;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .gallery-track,
    .gallery-slide,
    .gallery-nav-btn,
    .dot,
    .gallery-cta .btn {
        transition: none;
    }
    
    .gallery-track {
        transition: transform 0.1s ease;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .gallery-nav-btn,
    .gallery-cta .btn {
        border: 2px solid currentColor;
    }
    
    .dot {
        border-width: 3px;
    }
    
    .gallery-swipe-container {
        border: 2px solid currentColor;
    }
}

/* Dark Mode Optimizations */
@media (prefers-color-scheme: dark) {
    .gallery-swipe-container {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.05);
    }
}

/* Print Styles */
@media print {
    .gallery-nav,
    .gallery-dots,
    .gallery-cta {
        display: none;
    }
    
    .gallery-track {
        height: auto;
        transform: none !important;
        flex-direction: column;
    }
    
    .gallery-slide {
        opacity: 1;
        transform: none;
        margin-bottom: 20px;
        break-inside: avoid;
    }
}


























/* Video Section - Complete Styles */
.videos {
    padding: 80px 0;
    background: var(--bg-color);
    transition: var(--transition);
}

.videos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.videos h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.videos h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    max-width: 600px;
    margin: 25px auto 0;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Video Card Base Styles */
.video-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-color), var(--accent-color));
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(168, 218, 220, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    color: white;
    font-size: 3.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.video-card:hover .play-overlay i {
    transform: scale(1);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.platform-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.youtube-badge {
    background: #FF0000;
}

/* Video Content */
.video-content {
    padding: 25px;
}

.video-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.3;
    font-weight: 600;
}

.video-content p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.video-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
}

.meta-item i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Facebook Live Card Specific Styles */
.facebook-live {
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--card-bg), var(--card-bg)) padding-box,
                linear-gradient(135deg, #1877F2, #0A7CFF) border-box;
    position: relative;
    overflow: visible;
}

.facebook-live::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #1877F2, #0A7CFF);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.facebook-live:hover::before {
    opacity: 1;
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #1877F2, #0A7CFF);
    color: white;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        opacity: 1; 
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.7; 
    }
    100% { 
        transform: scale(1);
        opacity: 1; 
    }
}

.platform-icon i {
    font-size: 1.8rem;
    opacity: 0.9;
}

/* Live Schedule */
.live-schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(24, 119, 242, 0.05);
    border-radius: 12px;
    border-left: 4px solid #1877F2;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 8px 0;
}

.schedule-item i {
    color: #1877F2;
    width: 16px;
    text-align: center;
    font-size: 1rem;
}

.schedule-item span {
    font-weight: 500;
}

/* Live Actions */
.live-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.btn-live-primary {
    background: linear-gradient(135deg, #1877F2, #0A7CFF);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.btn-live-primary:hover {
    background: linear-gradient(135deg, #0A7CFF, #1877F2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.btn-live-secondary {
    background: transparent;
    color: #1877F2;
    border: 2px solid #1877F2;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
}

.btn-live-secondary:hover {
    background: #1877F2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}







  /* Video Grid */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        /* Video Card Styles */
        .video-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .video-thumbnail {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }

        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-card:hover .play-overlay {
            opacity: 1;
        }

        .play-overlay i {
            font-size: 3rem;
            color: white;
            background: rgba(231, 76, 60, 0.9);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .video-card:hover .play-overlay i {
            transform: scale(1.1);
        }

        .video-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
        }

        .video-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
        }

        .uploaded-badge {
            background: #3498db;
        }

        .youtube-badge {
            background: #e74c3c;
        }

        .video-content {
            padding: 20px;
        }

        .video-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .video-content p {
            color: #7f8c8d;
            margin-bottom: 15px;
        }

        .video-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #95a5a6;
        }

        .meta-item i {
            margin-right: 5px;
        }

        .video-actions {
            display: flex;
            gap: 10px;
        }

        .action-btn {
            flex: 1;
            padding: 8px 12px;
            border: none;
            border-radius: 6px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .play-btn {
            background: #3498db;
            color: white;
        }

        .play-btn:hover {
            background: #2980b9;
        }

        .download-btn {
            background: #f8f9fa;
            color: #2c3e50;
            border: 1px solid #e0e0e0;
        }

        .download-btn:hover {
            background: #e9ecef;
        }

        .share-btn {
            background: #2ecc71;
            color: white;
        }

        .share-btn:hover {
            background: #27ae60;
        }

        /* Facebook Live Card */
        .facebook-live {
            border: 2px solid #4267B2;
        }

        .live-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: #4267B2;
            color: white;
        }

        .live-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .live-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #e74c3c;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .platform-icon i {
            font-size: 1.5rem;
        }

        .live-schedule {
            margin: 15px 0;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .schedule-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .schedule-item:last-child {
            margin-bottom: 0;
        }

        .live-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .btn-live-primary {
            background: #4267B2;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-live-primary:hover {
            background: #365899;
        }

        .btn-live-secondary {
            background: white;
            color: #4267B2;
            border: 1px solid #4267B2;
            padding: 12px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-live-secondary:hover {
            background: #f0f2f5;
        }

        /* Social Media CTA */
        .social-cta {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-top: 30px;
        }

        .social-cta p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .youtube-btn {
            background: #e74c3c;
            color: white;
        }

        .facebook-btn {
            background: #4267B2;
            color: white;
        }

        /* Modal Styles */
        .video-modal, .facebook-live-modal, .success-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .video-modal-content, .facebook-live-modal-content, .success-modal-content {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #7f8c8d;
            cursor: pointer;
            z-index: 10;
        }

        .modal-close:hover {
            color: #e74c3c;
        }

        /* Video Player Modal */
        .video-player-container {
            position: relative;
            background: #000;
            border-radius: 12px 12px 0 0;
        }

        .video-player {
            width: 100%;
            height: 450px;
            background: #000;
        }

        .video-player video {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .video-controls {
            background: #2c3e50;
            padding: 15px;
            color: white;
        }

        .progress-controls {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .progress-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
        }

        .progress-filled {
            height: 100%;
            background: #3498db;
            border-radius: 3px;
            width: 0%;
        }

        .time-display {
            font-size: 0.9rem;
            color: #ecf0f1;
        }

        .control-buttons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .control-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .control-btn:hover {
            color: #3498db;
        }

        #volumeSlider {
            width: 80px;
        }

        .video-info {
            padding: 20px;
        }

        .video-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .video-info p {
            color: #7f8c8d;
            margin-bottom: 15px;
        }

        .video-stats {
            display: flex;
            gap: 20px;
            color: #95a5a6;
            font-size: 0.9rem;
        }

        .video-stats i {
            margin-right: 5px;
        }

        /* Facebook Live Modal */
        .modal-header {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .modal-header i {
            font-size: 2rem;
            color: #4267B2;
        }

        .modal-header h3 {
            color: #2c3e50;
        }

        .modal-body {
            padding: 20px;
        }

        .modal-body p {
            margin-bottom: 20px;
            color: #7f8c8d;
        }

        .live-options {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        @media (min-width: 768px) {
            .live-options {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .live-option {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .live-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .option-icon {
            text-align: center;
            margin-bottom: 15px;
        }

        .option-icon i {
            font-size: 2.5rem;
            color: #4267B2;
        }

        .option-content h4 {
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .option-content p {
            color: #7f8c8d;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .btn-option {
            display: block;
            text-align: center;
            padding: 10px;
            background: #4267B2;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .btn-option:hover {
            background: #365899;
        }

        .stream-info {
            border-top: 1px solid #e0e0e0;
            padding-top: 20px;
        }

        .stream-info h4 {
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        @media (min-width: 768px) {
            .info-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 6px;
        }

        .info-label {
            font-weight: 600;
            color: #2c3e50;
            min-width: 100px;
        }

        .info-value {
            flex: 1;
            color: #7f8c8d;
            font-family: monospace;
            font-size: 0.9rem;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .copy-btn {
            background: none;
            border: none;
            color: #3498db;
            cursor: pointer;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .copy-btn:hover {
            color: #2980b9;
        }

        /* Success Modal */
        .success-modal-content {
            text-align: center;
            padding: 40px;
            max-width: 500px;
        }

        .success-icon {
            font-size: 4rem;
            color: #2ecc71;
            margin-bottom: 20px;
        }

        .success-modal-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .success-modal-content p {
            color: #7f8c8d;
            margin-bottom: 25px;
        }

        .btn-primary {
            background: #3498db;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .btn-primary:hover {
            background: #2980b9;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
            
            .social-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .video-player {
                height: 300px;
            }
            
            .video-meta {
                flex-direction: column;
                gap: 5px;
            }
            
            .video-actions {
                flex-direction: column;
            }
            
            .control-buttons {
                justify-content: space-between;
            }
        }


















/* Social CTA */
.social-cta {
    text-align: center;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-cta p {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 150px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.youtube-btn {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
}

.youtube-btn:hover {
    background: linear-gradient(135deg, #CC0000, #FF0000);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2, #0A7CFF);
    color: white;
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #0A7CFF, #1877F2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

/* Facebook Live Modal */
.facebook-live-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.facebook-live-modal.active {
    opacity: 1;
    visibility: visible;
}

.facebook-live-modal-content {
    position: relative;
    background: var(--bg-color);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.facebook-live-modal.active .facebook-live-modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: var(--dark-color);
    transform: rotate(90deg) scale(1.1);
}

.modal-header {
    background: linear-gradient(135deg, #1877F2, #0A7CFF);
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.modal-header i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.modal-body {
    padding: 30px;
}

.modal-body > p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Live Options */
.live-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.live-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--card-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.live-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.option-content {
    flex: 1;
}

.option-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
}

.option-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-option {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-option:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    color: white;
}

/* Stream Info */
.stream-info {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stream-info h4 {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-color);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-label {
    font-weight: 600;
    color: var(--text-color);
    min-width: 100px;
    font-size: 0.9rem;
}

.info-value {
    flex: 1;
    color: var(--text-color);
    opacity: 0.8;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    word-break: break-all;
}

.copy-btn {
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .videos {
        padding: 60px 0;
    }
    
    .videos h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: 20px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-content {
        padding: 20px;
    }
    
    .video-content h3 {
        font-size: 1.2rem;
    }
    
    .live-header {
        padding: 15px 20px;
    }
    
    .live-schedule {
        padding: 15px;
        margin: 15px 0;
    }
    
    .live-actions {
        margin-top: 20px;
    }
    
    .social-cta {
        padding: 30px 20px;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Modal Mobile Styles */
    .facebook-live-modal-content {
        margin: 10px;
    }
    
    .modal-header {
        padding: 30px 20px 25px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .live-option {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .option-icon {
        align-self: center;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .info-label {
        min-width: auto;
    }
    
    .info-value {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .videos h2 {
        font-size: 1.8rem;
    }
    
    .video-thumbnail {
        height: 160px;
    }
    
    .play-overlay i {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .live-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .btn-live-primary,
    .btn-live-secondary {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .social-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}











/* Tickets Section */
.tickets {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
    transition: var(--transition);
}

.tickets .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tickets h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
}

.tickets h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.tickets .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Ticket Cards */
.ticket-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ticket-card {
    background: var(--bg-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ticket-card.popular {
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--bg-color), var(--bg-color)) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--accent-color)) border-box;
    transform: scale(1.05);
}

.ticket-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.ticket-badge, .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popular-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--dark-color);
}

.ticket-type {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.ticket-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.ticket-period {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 30px;
    font-weight: 500;
}

.ticket-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.ticket-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-features li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.ticket-card .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ticket-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

/* Ticket Note */
.ticket-note {
    background: var(--bg-color);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.ticket-note p {
    color: var(--text-color);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.ticket-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Payment Modal */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.payment-modal.active {
    opacity: 1;
    visibility: visible;
}

.payment-modal-content {
    position: relative;
    background: var(--bg-color);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.payment-modal.active .payment-modal-content {
    transform: scale(1);
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 20px 20px 0 0;
}

.payment-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.payment-close, .presidents-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.payment-close:hover, .presidents-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.payment-body {
    padding: 30px;
}

/* Payment Info */
.payment-info {
    margin-bottom: 30px;
}

.ticket-summary {
    text-align: center;
    padding: 25px;
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ticket-summary h4 {
    margin: 0 0 10px 0;
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.payment-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.payment-description {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-method {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--card-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-method.active {
    border-color: var(--primary-color);
    background: rgba(230, 57, 70, 0.05);
}

.payment-method:hover:not(.active) {
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.payment-method i {
    font-size: 2rem;
    color: var(--primary-color);
}

.payment-method.active i {
    color: var(--primary-color);
}

.payment-method span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Payment Sections */
.payment-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.payment-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* QR Payment */
.qr-code-container {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.qr-code {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-code img {
    width: 200px;
    height: 200px;
    display: block;
}

.qr-instruction {
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* WhatsApp Payment */
.whatsapp-info {
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #25D366;
}

.whatsapp-avatar {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.whatsapp-details h5 {
    margin: 0 0 8px 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.phone-number strong {
    color: var(--primary-color);
}

.whatsapp-instructions {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
}

.whatsapp-instructions h6 {
    margin: 0 0 15px 0;
    color: var(--text-color);
    font-size: 1rem;
}

.whatsapp-instructions ol {
    margin: 0;
    padding-left: 20px;
    color: var(--text-color);
}

.whatsapp-instructions li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.whatsapp-instructions strong {
    color: var(--primary-color);
}

/* Payment Notes */
.payment-notes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.payment-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(230, 57, 70, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.payment-note i {
    color: var(--primary-color);
    width: 16px;
}

.payment-note span {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Payment Actions */
.payment-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.payment-actions .btn {
    flex: 1;
    padding: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-actions .btn:hover {
    transform: translateY(-2px);
}

/* Presidents Modal Specific Styles */
.presidents-info {
    text-align: center;
}

.presidents-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.presidents-info h4 {
    margin: 0 0 15px 0;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.presidents-info > p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.presidents-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.president-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.president-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.president-card h5 {
    margin: 0 0 15px 0;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.presidents-note {
    background: rgba(230, 57, 70, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    text-align: left;
}

.presidents-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.presidents-note i {
    color: var(--primary-color);
    margin-top: 2px;
}

.presidents-note strong {
    color: var(--primary-color);
}

/* Copy Button */
.copy-btn {
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.copy-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tickets {
        padding: 60px 0;
    }
    
    .tickets h2 {
        font-size: 2rem;
    }
    
    .tickets .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .ticket-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ticket-card.popular {
        transform: none;
    }
    
    .ticket-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .ticket-card {
        padding: 30px 20px;
    }
    
    .ticket-price {
        font-size: 2.5rem;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .presidents-list {
        grid-template-columns: 1fr;
    }
    
    .qr-code img {
        width: 180px;
        height: 180px;
    }
    
    .whatsapp-card {
        flex-direction: column;
        text-align: center;
    }
    
    .phone-number {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .tickets h2 {
        font-size: 1.8rem;
    }
    
    .ticket-card {
        padding: 25px 15px;
    }
    
    .ticket-price {
        font-size: 2.2rem;
    }
    
    .payment-header {
        padding: 20px;
    }
    
    .payment-body {
        padding: 20px;
    }
    
    .payment-amount {
        font-size: 2rem;
    }
    
    .qr-code img {
        width: 150px;
        height: 150px;
    }
}









/* Sponsors Section */
.sponsors {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--card-bg) 100%);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sponsors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(230, 57, 70, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 218, 220, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.sponsors .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.sponsors h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
}

.sponsors h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.sponsors .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Sponsor Logos Grid */
.sponsor-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.sponsor-logo {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    max-width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.sponsor-logo::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.6s ease;
}

.sponsor-logo:hover::before {
    left: 100%;
}

.sponsor-logo:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 57, 70, 0.2);
}

.sponsor-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.sponsor-logo:hover span {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Specific sponsor styling variations */
.sponsor-logo:nth-child(1) {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(230, 57, 70, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
}

.sponsor-logo:nth-child(2) {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(168, 218, 220, 0.05) 100%);
    border-left: 4px solid var(--accent-color);
}

.sponsor-logo:nth-child(3) {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(29, 53, 87, 0.05) 100%);
    border-left: 4px solid var(--dark-color);
}

.sponsor-logo:nth-child(4) {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(241, 250, 238, 0.05) 100%);
    border-left: 4px solid var(--light-color);
}

.sponsor-logo:nth-child(5) {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(69, 123, 157, 0.05) 100%);
    border-left: 4px solid #457b9d;
}

/* Animation for sponsor logos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sponsor-logo {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.sponsor-logo:nth-child(1) { animation-delay: 0.1s; }
.sponsor-logo:nth-child(2) { animation-delay: 0.2s; }
.sponsor-logo:nth-child(3) { animation-delay: 0.3s; }
.sponsor-logo:nth-child(4) { animation-delay: 0.4s; }
.sponsor-logo:nth-child(5) { animation-delay: 0.5s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .sponsors {
        padding: 60px 0;
    }
    
    .sponsors h2 {
        font-size: 2rem;
    }
    
    .sponsors .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .sponsor-logos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .sponsor-logo {
        padding: 30px 20px;
        height: 100px;
        max-width: 180px;
    }
    
    .sponsor-logo span {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .sponsors h2 {
        font-size: 1.8rem;
    }
    
    .sponsor-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sponsor-logo {
        padding: 25px 15px;
        height: 90px;
        max-width: none;
    }
    
    .sponsor-logo span {
        font-size: 1rem;
    }
    
    .sponsor-logo:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .sponsor-logos {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sponsor-logo {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Optional: Add a call-to-action for potential sponsors */
.sponsor-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sponsor-cta h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.sponsor-cta p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sponsor-cta .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.sponsor-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}




/* Enhanced version for actual logo images */
.sponsor-logo.has-image {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sponsor-logo.has-image img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-logo.has-image:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* For when you have actual logos, replace the span with:
<div class="sponsor-logo has-image">
    <img src="path/to/sponsor-logo.png" alt="Sponsor Name">
</div>
*/









/* Footer Section */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a2e 100%);
    color: white;
    padding: 60px 0 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Social Section */
.social-section {
    margin-top: 30px;
}

.social-section h4 {
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-social-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Social Media Brand Colors */
.footer-social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
}

.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(245, 96, 64, 0.2));
    border-color: #e1306c;
}

.footer-social-link.tiktok:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: #000000;
}

/* Footer Links */
.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: white;
    padding-left: 10px;
}

.footer-section a:hover::before {
    width: 8px;
}

/* Contact Info */
.footer-section .fa-map-marker-alt,
.footer-section .fa-phone,
.footer-section .fa-envelope {
    color: var(--primary-color);
    width: 20px;
    margin-right: 10px;
    text-align: center;
}

/* Extended Footer Bottom */
.footer-bottom-extended {
    background: linear-gradient(90deg, 
        rgba(230, 57, 70, 0.1) 0%, 
        rgba(168, 218, 220, 0.2) 50%, 
        rgba(230, 57, 70, 0.1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.footer-bottom-extended::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(168, 218, 220, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-left a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-left a:hover {
    color: var(--primary-color);
}

/* Smaller Design Credit */
.design-credit-extended {
    display: flex;
    align-items: center;
}

.design-by {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    position: relative;
}

.mj-signature-extended {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: linear-gradient(135deg, 
        rgba(230, 57, 70, 0.8) 0%, 
        rgba(168, 218, 220, 0.9) 50%, 
        rgba(230, 57, 70, 0.8) 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
    min-width: 60px;
    justify-content: center;
}

.mj-signature-extended::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.6s ease;
}

.mj-signature-extended:hover::before {
    left: 100%;
}

.mj-signature-extended:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.signature-text {
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.signature-line {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
    margin: 0 3px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-section:first-child {
        grid-column: 1;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-section h4 {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social-links {
        align-items: center;
    }
    
    .footer-social-link {
        width: 200px;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .design-credit-extended {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer .container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-logo span {
        font-size: 1.5rem;
    }
    
    .footer-logo img {
        width: 40px;
        height: 40px;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-social-link {
        width: 100%;
        max-width: 250px;
    }
    
    .footer-bottom-left p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .design-by {
        font-size: 0.75rem;
    }
    
    .mj-signature-extended {
        padding: 3px 10px;
        min-width: 50px;
    }
    
    .signature-text {
        font-size: 0.8rem;
    }
}

/* Dark mode adjustments for footer */
[data-theme="dark"] footer {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

[data-theme="dark"] .footer-bottom-extended {
    background: linear-gradient(90deg, 
        rgba(230, 57, 70, 0.15) 0%, 
        rgba(168, 218, 220, 0.25) 50%, 
        rgba(230, 57, 70, 0.15) 100%);
}

/* Animation for footer elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

/* Subtle Signature Animation */
@keyframes signatureGlow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
    }
    50% {
        box-shadow: 0 2px 12px rgba(230, 57, 70, 0.4);
    }
}

.mj-signature-extended {
    animation: signatureGlow 4s ease-in-out infinite;
}