/* ============================================
   SANCTA GOSPEL - Style Principal
   Palette basée sur le logo :
   - Cyan/Turquoise : #00BCD4 / #0097A7
   - Vert Lime : #8BC34A / #7CB342
   - Orange : #FF9800 / #F57C00
   - Fond sombre pour contraste
   ============================================ */

:root {
    /* Couleurs principales du logo */
    --cyan: #00BCD4;
    --cyan-dark: #0097A7;
    --cyan-light: #4DD0E1;
    --green: #8BC34A;
    --green-dark: #7CB342;
    --green-light: #AED581;
    --orange: #FF9800;
    --orange-dark: #F57C00;
    --orange-light: #FFB74D;

    /* Neutres */
    --black: #0a0a0a;
    --black-light: #141414;
    --black-lighter: #1e1e1e;
    --white: #ffffff;
    --gray: #9e9e9e;
    --gray-light: #bdbdbd;
    --gray-dark: #616161;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
    --gradient-accent: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.95) 100%);

    /* Shadows */
    --shadow-cyan: 0 8px 32px rgba(0, 188, 212, 0.3);
    --shadow-green: 0 8px 32px rgba(139, 195, 74, 0.3);
    --shadow-orange: 0 8px 32px rgba(255, 152, 0, 0.3);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.text-cyan { color: var(--cyan) !important; }
.text-green { color: var(--green) !important; }
.text-orange { color: var(--orange) !important; }
.text-gray { color: var(--gray) !important; }

.bg-cyan { background-color: var(--cyan) !important; }
.bg-green { background-color: var(--green) !important; }
.bg-orange { background-color: var(--orange) !important; }

/* Buttons */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--black);
    border: none;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cyan);
    color: var(--black);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

/* Section Styling */
.section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s ease;
    z-index: 1050;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-brand .brand-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
}

.navbar-brand .brand-text .text-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--cyan) !important;
}

.nav-link:hover::after {
    width: 70%;
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 28px;
    height: 28px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 0;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 30px;
}

.hero-edition {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

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

.hero-tagline {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 300;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.1rem;
}

.hero-info-item i {
    color: var(--cyan);
    font-size: 1.3rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Countdown */
.countdown-wrapper {
    margin-top: 50px;
}

.countdown-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 25px;
    min-width: 100px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.countdown-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-item .label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 10px;
    background: var(--cyan);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: uppercase;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--black);
}

.about-content {
    padding-right: 40px;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-image-main img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image-main img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--gradient-primary);
    color: var(--black);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-cyan);
}

.about-badge .number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background: var(--black-light);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stat-item:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: var(--shadow-cyan);
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-item .label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   LINEUP / ARTISTS SECTION
   ============================================ */
.lineup-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
}

.lineup-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-btn {
    background: var(--black-lighter);
    color: var(--white);
    border: 2px solid transparent;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: transparent;
    border-color: var(--cyan);
    color: var(--cyan);
}

/* Artist Cards */
.artist-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.artist-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: all 0.3s ease;
}

.artist-card:hover .artist-overlay {
    background: linear-gradient(180deg, rgba(0,188,212,0.2) 0%, rgba(0,0,0,0.95) 100%);
}

.artist-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.artist-role {
    font-size: 0.85rem;
    color: var(--cyan);
    font-weight: 500;
}

.artist-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.artist-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.artist-play i {
    color: var(--black);
    font-size: 1.5rem;
    margin-left: 4px;
}

.artist-card:hover .artist-play {
    transform: translate(-50%, -50%) scale(1);
}

/* ============================================
   PROGRAM SECTION
   ============================================ */
.program-section {
    padding: 100px 0;
    background: var(--black);
}

.program-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.program-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.program-time {
    flex-shrink: 0;
    width: 100px;
    text-align: right;
}

.program-time .time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan);
}

.program-time .duration {
    font-size: 0.85rem;
    color: var(--gray);
}

.program-content {
    flex: 1;
    background: var(--black-light);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--cyan);
    transition: all 0.3s ease;
}

.program-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-cyan);
}

.program-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.program-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.program-content.worship { border-left-color: var(--green); }
.program-content.praise { border-left-color: var(--orange); }
.program-content.preaching { border-left-color: var(--cyan); }

/* ============================================
   TICKETS SECTION
   ============================================ */
.tickets-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.ticket-card {
    background: var(--black-light);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.ticket-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan);
    box-shadow: var(--shadow-cyan);
}

.ticket-card.featured {
    background: linear-gradient(180deg, var(--black-light) 0%, rgba(0,188,212,0.1) 100%);
    border-color: var(--cyan);
}

.ticket-card.vip {
    background: linear-gradient(180deg, var(--black-light) 0%, rgba(255,152,0,0.1) 100%);
    border-color: var(--orange);
}

.ticket-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--black);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticket-card.vip .ticket-badge {
    background: var(--gradient-accent);
    color: var(--white);
}

.ticket-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
}

.ticket-price {
    margin-bottom: 30px;
}

.ticket-price .currency {
    font-size: 1rem;
    color: var(--gray);
}

.ticket-price .amount {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket-card.vip .ticket-price .amount {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ticket-features li {
    padding: 12px 0;
    color: var(--gray);
    border-bottom: 1px solid var(--black-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-features li i {
    color: var(--cyan);
}

.ticket-card.vip .ticket-features li i {
    color: var(--orange);
}

.ticket-status {
    margin-top: 20px;
}

.ticket-status .badge {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
}

/* ============================================
   EDITIONS / HISTORY SECTION
   ============================================ */
.editions-section {
    padding: 100px 0;
    background: var(--black);
}

.edition-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.edition-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.edition-card:hover img {
    transform: scale(1.1);
}

.edition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.edition-year {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.edition-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.edition-stats {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ============================================
   SPONSORS SECTION
   ============================================ */
.sponsors-section {
    padding: 80px 0;
    background: var(--black-light);
}

.sponsor-tier {
    margin-bottom: 50px;
}

.sponsor-tier-title {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 30px;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.sponsor-logo {
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 60px;
    width: auto;
}

.sponsor-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ============================================
   PRACTICAL INFO SECTION
   ============================================ */
.practical-section {
    padding: 100px 0;
    background: var(--black);
}

.info-card {
    background: var(--black-light);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.info-card:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.info-card-icon i {
    font-size: 1.8rem;
    color: var(--black);
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--gray);
    margin: 0;
    line-height: 1.8;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(0,0,0,0.7);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    flex: 1;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
    outline: none;
}

.newsletter-form .btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: var(--black-light);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black-light);
    padding: 80px 0 40px;
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gradient-primary);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--black-lighter);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--cyan);
    text-decoration: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 26px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 30px;
        border-radius: 15px;
        margin-top: 15px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .hero-info {
        gap: 20px;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }

    .countdown-item .number {
        font-size: 1.8rem;
    }

    .program-item {
        flex-direction: column;
        gap: 15px;
    }

    .program-time {
        width: auto;
        text-align: left;
    }

    .ticket-card {
        padding: 30px 20px;
    }

    .about-badge {
        right: 10px;
        bottom: -15px;
        padding: 15px 20px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--black-lighter);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

/* Selection */
::selection {
    background: var(--cyan);
    color: var(--black);
}
