/* ====================================
   IGNITE 2026 - PREMIUM FIRE FESTIVAL
   ULTIMATE VERSION: Fire Typography + Maximum Contrast + Premium Form
   ==================================== */

   @import url('https://fonts.googleapis.com/css2?family=Righteous&family=Russo+One&family=Bungee+Shade&family=Bebas+Neue&family=Creepster&family=Cinzel+Decorative:wght@700;900&family=Playfair+Display:wght@700;900&family=Poppins:wght@400;600;700;800&family=Teko:wght@600;700&display=swap');

   /* === RESET & BASE === */
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }
   
   :root {
       --fire-orange: #C85A8E;
       --lava-red: #E91E8C;
       --amber-yellow: #D8A7D8;
       --deep-black: #0A0610;
       --charcoal: #1A0F2E;
       --dark-gray: #2D1B4E;
       --light-gray: #E8D4F0;
       --pure-white: #FFFFFF;
   
       --gold-primary: #E8B4F0;
       --saffron-primary: #D87BB5;
       --flame-yellow: #F5C6EC;
       --ember-orange: #B85599;
   
       --glow-intense: 0 0 40px rgba(200, 90, 142, 0.8), 0 0 80px rgba(139, 76, 184, 0.4);
       --glow-soft: 0 0 20px rgba(200, 90, 142, 0.5), 0 0 40px rgba(139, 76, 184, 0.2);
       --glow-pulse: 0 0 60px rgba(184, 85, 153, 0.6), 0 0 120px rgba(200, 90, 142, 0.3);
   }
   
   body {
       font-family: 'Poppins', sans-serif;
       background: var(--deep-black);
       color: var(--pure-white);
       line-height: 1.6;
       overflow-x: hidden;
       position: relative;
   }
   
   /* === ANIMATED BACKGROUND === */
   body::before {
       content: '';
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background:
           radial-gradient(circle at 20% 80%, rgba(200, 90, 142, 0.2) 0%, transparent 50%),
           radial-gradient(circle at 80% 20%, rgba(139, 76, 184, 0.18) 0%, transparent 50%),
           radial-gradient(circle at 50% 50%, rgba(216, 167, 216, 0.12) 0%, transparent 70%);
       z-index: -1;
       animation: atmosphereShift 20s ease-in-out infinite alternate;
   }
   
   @keyframes atmosphereShift {
       0% {
           transform: scale(1) rotate(0deg);
           opacity: 0.5;
       }
   
       50% {
           transform: scale(1.1) rotate(2deg);
           opacity: 0.7;
       }
   
       100% {
           transform: scale(1.05) rotate(-2deg);
           opacity: 0.6;
       }
   }
   
   /* === WRAPPER === */
   .wrapper {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 40px;
   }
   
  /* === HEADER === */
   header {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       z-index: 1000;
       background: rgba(10, 6, 16, 0.95);
       backdrop-filter: blur(20px);
       border-bottom: 3px solid rgba(200, 90, 142, 0.5);
       box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
       transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   }
   
     header:hover {
       border-bottom-color: rgba(200, 90, 142, 0.9);
       box-shadow: 0 10px 60px rgba(200, 90, 142, 0.3);
   }
   
   .nav-content {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 20px 0;
   }
   
   /* Navigation buttons container */
   .nav-buttons {
       display: flex;
       align-items: center;
       gap: 15px;
   }
   
   /* Small header buttons */
   .header-btn {
       display: inline-block;
       padding: 12px 28px;
       font-family: 'Russo One', sans-serif;
       font-size: 0.85rem;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 2px;
       text-decoration: none;
       border-radius: 50px;
       transition: all 0.3s ease;
       cursor: pointer;
       border: 2px solid transparent;
   }
   
     /* Book Pass button */
   .header-btn.book-pass {
       color: var(--deep-black);
       background: linear-gradient(135deg, #F5C6EC, #D8A7D8);
       box-shadow: 0 8px 25px rgba(216, 167, 216, 0.4);
   }
   
   .header-btn.book-pass:hover {
       transform: translateY(-3px);
       box-shadow: 0 12px 35px rgba(216, 167, 216, 0.6);
       filter: brightness(1.15);
   }
   
   /* Admin Dashboard button */
   .header-btn.admin-dash {
       color: var(--pure-white);
       background: rgba(26, 15, 46, 0.8);
       border-color: rgba(200, 90, 142, 0.5);
       backdrop-filter: blur(10px);
   }
   
   .header-btn.admin-dash:hover {
       background: rgba(200, 90, 142, 0.15);
       border-color: #C85A8E;
       transform: translateY(-3px);
       box-shadow: 0 8px 25px rgba(200, 90, 142, 0.3);
   }
   
   /* UPDATED: Fire Icon + IGNITE text styling */
   .logo {
       font-family: 'Russo One', sans-serif;
       font-size: 2rem;
       font-weight: 700;
       letter-spacing: 3px;
       text-transform: uppercase;
       color: var(--pure-white);
       display: flex;
       align-items: center;
       gap: 10px;
       filter: drop-shadow(0 0 25px rgba(200, 90, 142, 0.7));
       animation: logoFlicker 3s ease-in-out infinite;
   }
   
   .logo::before {
       content: '🌸';
       font-size: 2.2rem;
       animation: flameFlicker 1.5s ease-in-out infinite;
   }
   
   @keyframes flameFlicker {
   
       0%,
       100% {
           transform: scale(1) rotate(-5deg);
           opacity: 1;
       }
   
       50% {
           transform: scale(1.15) rotate(5deg);
           opacity: 0.9;
       }
   }
   
   @keyframes logoFlicker {
   
       0%,
       100% {
           filter: drop-shadow(0 0 25px rgba(200, 90, 142, 0.7));
       }
   
       50% {
           filter: drop-shadow(0 0 45px rgba(216, 167, 216, 0.9));
       }
   }
   
   /* === Responsive Logo (only media queries) === */
   @media (max-width: 1024px) {
     .logo {
       font-size: 1.8rem;
       letter-spacing: 2.5px;
       gap: 8px;
     }
     .logo::before {
       font-size: 2rem;
     }
   }
   
   @media (max-width: 768px) {
     .logo {
       font-size: 1.5rem;
       letter-spacing: 2px;
       gap: 7px;
     }
     .logo::before {
       font-size: 1.7rem;
     }
   }
   
   @media (max-width: 480px) {
     .logo {
       font-size: 1.25rem;
       letter-spacing: 1.5px;
       gap: 6px;
       filter: drop-shadow(0 0 18px rgba(255, 107, 0, 0.6));
     }
     .logo::before {
       font-size: 1.45rem;
     }
   }
   
   /* === Responsive Event Badge === */
   @media (max-width: 1024px) {
     .animate-up span {
       font-size: 1.3rem !important;
       padding: 5px 24px !important;
     }
   }
   
   @media (max-width: 768px) {
     .animate-up span {
       font-size: 1.1rem !important;
       padding: 5px 20px !important;
     }
   }
   
   @media (max-width: 480px) {
     .animate-up span {
       font-size: 0.95rem !important;
       padding: 6px 16px !important;
       box-shadow: 0 0 12px var(--saffron-primary) !important;
     }
   }
   
   @media (max-width: 480px) {
     .animate-up {
       text-align: center;
     }
   }
   
   /* === HERO SECTION === */
   .hero {
       position: relative;
       min-height: 100vh;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       overflow: hidden;
       padding-top: 80px;
       background-size: cover;
       background-position: center;
   }
   
   
   .hero-bg {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 0;
   }
   
   /* Update .hero-bg - around line 450 */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 120%;  /* Changed from 100% */
    height: 120%;  /* Changed from 100% */
    object-fit: cover;
    transform: scale(1.2);  /* Added zoom */
    z-index: 0;
    left: -10%;  /* Center the zoomed video */
    top: -10%;  /* Center the zoomed video */
}

   /* Enhanced dark overlay with intense warmth */
   .hero::before {
       content: '';
       position: absolute;
       inset: 0;
       background:
           radial-gradient(ellipse at top, rgba(184, 85, 153, 0.35) 0%, transparent 60%),
           radial-gradient(ellipse at bottom, rgba(200, 90, 142, 0.28) 0%, transparent 70%),
           linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(10, 6, 16, 0.8));
       animation: heroGlow 8s ease-in-out infinite alternate;
       z-index: 1;
   }
   
   @keyframes heroGlow {
       0% {
           transform: scale(1);
           opacity: 0.7;
       }
   
       100% {
           transform: scale(1.15);
           opacity: 0.9;
       }
   }
   
   .hero::after {
       content: '';
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       width: 700px;
       height: 700px;
       background: radial-gradient(circle, rgba(216, 167, 216, 0.22) 0%, transparent 70%);
       border-radius: 50%;
       animation: pulseCore 6s ease-in-out infinite;
       z-index: 1;
   }
   
   @keyframes pulseCore {
   
       0%,
       100% {
           transform: translate(-50%, -50%) scale(1);
           opacity: 0.3;
       }
   
       50% {
           transform: translate(-50%, -50%) scale(1.6);
           opacity: 0.6;
       }
   }
   
   .hero .wrapper {
       position: relative;
       z-index: 2;
   }
   
   /* Jagannath Protsaha Sanga - Spiritual Sanskrit style - FULLY FIXED NO CUTTING */
   /* Update .brush-text - around line 551 */
.brush-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.5rem, 2.5vw, 4rem);
    font-weight: 700;
    color: #F5C6EC;
    text-shadow:
        0 3px 15px rgba(0, 0, 0, 1),
        0 0 40px rgba(245, 198, 236, 0.4),
        0 2px 4px rgba(200, 90, 142, 0.6);
    margin-bottom: 100px;  /* Changed from 30px */
    margin-top: 100px;  /* Changed from 25px */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: spiritualGlow 4s ease-in-out infinite alternate;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    word-spacing: 3px;
    padding: 0 30px;
}
   
   @keyframes spiritualGlow {
       0% {
           filter: drop-shadow(0 0 20px rgba(245, 198, 236, 0.5));
           text-shadow: 0 4px 20px rgba(0, 0, 0, 1), 0 0 50px rgba(245, 198, 236, 0.4);
       }
   
       100% {
           filter: drop-shadow(0 0 40px rgba(232, 180, 240, 0.8));
           text-shadow: 0 4px 20px rgba(0, 0, 0, 1), 0 0 80px rgba(245, 198, 236, 0.6);
       }
   }
   
   /* Disable animations on header elements */
   header .animate-up,
   header .logo,
   header nav {
       animation: none !important;
       transform: none !important;
   }
   
   /* BLISS - Cinzel Decorative with PINK GLOW */
.hero h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(4.5rem, 14vw, 12rem);
    font-weight: 700;
    letter-spacing: 18px;
    text-transform: uppercase;
    margin: 0;
    line-height: 0.85;
    
    /* Pure white base */
    color: #FFFFFF;
    
    /* PINK GLOW */
    text-shadow: 
        0 0 20px rgba(255, 182, 193, 1),
        0 0 35px rgba(255, 105, 180, 0.9),
        0 0 50px rgba(255, 20, 147, 0.8),
        0 0 70px rgba(219, 112, 147, 0.75),
        0 0 95px rgba(255, 105, 180, 0.7),
        0 0 120px rgba(255, 20, 147, 0.6),
        0 0 160px rgba(255, 182, 193, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3);
    
    animation: blissPinkGlow 4s ease-in-out infinite;
    
    filter: 
        drop-shadow(0 0 35px rgba(255, 105, 180, 0.9))
        drop-shadow(0 0 70px rgba(255, 20, 147, 0.7));
}

/* Update around line 595 */
.hero h1 + h1 {
    margin-top: 150px;  /* Changed from 100px for better balance */
}

/* Update .hero section - around line 433 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 150px;  /* Changed from 80px */
    padding-bottom: 150px;  /* Added */
    background-size: cover;
    background-position: center;
}

@keyframes blissPinkGlow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 182, 193, 1),
            0 0 35px rgba(255, 105, 180, 0.9),
            0 0 50px rgba(255, 20, 147, 0.8),
            0 0 70px rgba(219, 112, 147, 0.75),
            0 0 95px rgba(255, 105, 180, 0.7),
            0 0 120px rgba(255, 20, 147, 0.6),
            0 0 160px rgba(255, 182, 193, 0.5);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 182, 193, 1),
            0 0 50px rgba(255, 105, 180, 1),
            0 0 70px rgba(255, 20, 147, 0.9),
            0 0 95px rgba(219, 112, 147, 0.85),
            0 0 125px rgba(255, 105, 180, 0.8),
            0 0 160px rgba(255, 20, 147, 0.7),
            0 0 200px rgba(255, 182, 193, 0.6);
    }
}
   
   @keyframes igniteFlame {
       0% {
           filter:
               drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 30px rgba(200, 90, 142, 0.9)) drop-shadow(0 0 60px rgba(184, 85, 153, 0.7));
       }
   
       50% {
           filter:
               drop-shadow(0 0 25px rgba(255, 255, 255, 1)) drop-shadow(0 0 50px rgba(200, 90, 142, 1)) drop-shadow(0 0 100px rgba(184, 85, 153, 0.9)) drop-shadow(0 10px 120px rgba(139, 76, 184, 0.8));
       }
   
       100% {
           filter:
               drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 30px rgba(200, 90, 142, 0.9)) drop-shadow(0 0 60px rgba(184, 85, 153, 0.7));
       }
   }
   
   
   /* Update .tagline - around line 656 */
.tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    font-style: italic;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-shadow:
        0 3px 15px rgba(0, 0, 0, 1),
        0 0 40px rgba(200, 90, 142, 0.3),
        0 0 60px rgba(255, 255, 255, 0.1);
    margin: 70px 0;  /* Changed from 20px 0 */
    animation: kindleGlow 3.5s ease-in-out infinite alternate;
}
   
      @keyframes kindleGlow {
       0% {
           text-shadow:
               0 3px 15px rgba(0, 0, 0, 1),
               0 0 40px rgba(200, 90, 142, 0.3);
       }
   
       100% {
           text-shadow:
               0 3px 15px rgba(0, 0, 0, 1),
               0 0 60px rgba(200, 90, 142, 0.5),
               0 0 80px rgba(245, 198, 236, 0.3);
       }
   }
   
   /* Update .event-details - around line 677 */
.event-details {
    margin: 60px auto;  /* Changed from 40px auto */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 900px;
}
   
   .event-card {
       position: relative;
       background: linear-gradient(135deg, rgba(200, 90, 142, 0.15), rgba(184, 85, 153, 0.1));
       backdrop-filter: blur(15px);
       border: 2px solid rgba(200, 90, 142, 0.4);
       border-radius: 20px;
       padding: 25px 40px;
       min-width: 280px;
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 8px;
       transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
       box-shadow: 0 10px 40px rgba(200, 90, 142, 0.2);
   }
   
   
   .event-card:hover {
       transform: translateY(-8px) scale(1.03);
       border-color: rgba(200, 90, 142, 0.8);
       box-shadow: 0 20px 60px rgba(200, 90, 142, 0.4);
       background: linear-gradient(135deg, rgba(200, 90, 142, 0.25), rgba(184, 85, 153, 0.15));
   }
   
   .event-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 3px;
       background: linear-gradient(90deg, transparent, #F5C6EC, #C85A8E, transparent);
       border-radius: 20px 20px 0 0;
   }
   
   .event-icon {
       font-size: 2.5rem;
       margin-bottom: 5px;
       animation: iconPulse 2s ease-in-out infinite;
   }
   
   @keyframes iconPulse {
   
       0%,
       100% {
           transform: scale(1);
           opacity: 0.9;
       }
   
       50% {
           transform: scale(1.15);
           opacity: 1;
       }
   }
   
   .event-label {
       font-family: 'Teko', sans-serif;
       font-size: 0.9rem;
       font-weight: 600;
       letter-spacing: 2px;
       text-transform: uppercase;
       color: rgba(245, 198, 236, 0.8);
       margin-bottom: -5px;
   }
   
   .event-value {
       font-family: 'Russo One', sans-serif;
       font-size: 1.8rem;
       font-weight: 700;
       letter-spacing: 1px;
       color: #FFFFFF;
       text-shadow: 0 0 20px rgba(200, 90, 142, 0.5);
   }
   
   .event-subtext {
       font-family: 'Poppins', sans-serif;
       font-size: 0.95rem;
       color: rgba(255, 255, 255, 0.7);
       letter-spacing: 0.5px;
   }
   
   /* === BUTTONS === */
   .hero .btn {
       margin-top: 100px;
   }
   
   .btn {
       display: inline-block;
       padding: 22px 55px;
       font-family: 'Russo One', sans-serif;
       font-size: 2rem;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 4px;
       color: var(--deep-black);
       background: linear-gradient(135deg, #F5C6EC, #D8A7D8, #C85A8E);
       background-size: 200% 200%;
       border: none;
       border-radius: 60px;
       text-decoration: none;
       cursor: pointer;
       position: relative;
       overflow: hidden;
       transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
           box-shadow:
           0 12px 40px rgba(200, 90, 142, 0.6),
           inset 0 -4px 12px rgba(0, 0, 0, 0.3),
           inset 0 2px 0 rgba(255, 255, 255, 0.4);
       animation: buttonPulse 3s ease-in-out infinite;
   }
   
   @keyframes buttonPulse {
   
       0%,
       100% {
           background-position: 0% 50%;
           box-shadow: 0 12px 40px #B85599;
       }
   
       50% {
           background-position: 100% 50%;
           box-shadow: 0 15px 60px #B85599;
       }
   }
   
   /* === RESPONSIVE HERO SECTION === */
   @media (max-width: 1024px) {
       .hero {
           min-height: 95vh;
           padding-top: 70px;
       }
       
       .brush-text {
           font-size: clamp(1rem, 2.2vw, 1.8rem) !important;
           margin-bottom: 25px;
           margin-top: 20px;
       }
       
       .hero h1 {
           font-size: clamp(4rem, 12vw, 10rem);
           letter-spacing: 14px;
           margin: 40px 0 50px 0;
       }
       
       .event-details {
           gap: 20px;
           margin: 35px auto;
       }
       
       .event-card {
           padding: 20px 35px;
           min-width: 250px;
       }
       
       .event-icon {
           font-size: 2.2rem;
       }
       
       .event-value {
           font-size: 1.6rem;
       }
   }
   
   @media (max-width: 768px) {
       .hero {
           min-height: 90vh;
           padding-top: 60px;
           padding-left: 15px;
           padding-right: 15px;
       }
       
       .brush-text {
           font-size: 1.2rem !important;
           margin-bottom: 20px;
           margin-top: 15px;
           transform: translateY(10px) !important;
           padding: 0 10px !important;
       }
       
       .hero h1 {
           font-size: clamp(4rem, 16vw, 7rem);
           letter-spacing: 10px;
           margin: 30px 0 40px 0;
           line-height: 1.1;
       }
       
       .event-details {
           gap: 15px;
           margin: 30px auto;
           flex-direction: column;
       }
       
       .event-card {
           padding: 18px 30px;
           min-width: 100%;
           max-width: 350px;
       }
       
       .event-icon {
           font-size: 2rem;
       }
       
       .event-value {
           font-size: 1.5rem;
       }
       
       .btn {
           padding: 18px 40px;
           font-size: 1.1rem;
           letter-spacing: 3px;
       }
       
       .hero .btn {
           margin-top: 35px;
       }
   }
   
   @media (max-width: 480px) {
       .hero {
           min-height: 100vh;
           padding-top: 70px;
           padding-left: 10px;
           padding-right: 10px;
       }
       
       .brush-text {
           font-size: 1rem !important;
           margin-bottom: 15px;
           margin-top: 10px;
           transform: translateY(5px) !important;
           letter-spacing: 1px !important;
       }
       
       .hero h1 {
           font-size: clamp(3rem, 20vw, 6rem);
           letter-spacing: 6px;
           margin: 20px 0 30px 0;
           line-height: 1;
       }
       
       .event-details {
           gap: 12px;
           margin: 25px auto;
       }
       
       .event-card {
           padding: 16px 25px;
           min-width: 100%;
           max-width: 320px;
           border-radius: 15px;
       }
       
       .event-icon {
           font-size: 1.8rem;
       }
       
       .event-value {
           font-size: 1.3rem;
       }
       
       .btn {
           padding: 16px 35px;
           font-size: 0.95rem;
           letter-spacing: 2px;
           border-radius: 50px;
       }
       
       .hero .btn {
           margin-top: 30px;
       }
   }
   
   /* === Responsive Header Buttons === */
   @media (max-width: 768px) {
       .header-btn {
           padding: 10px 22px;
           font-size: 0.75rem;
           letter-spacing: 1.5px;
       }
   }
   
   @media (max-width: 480px) {
       .header-btn {
           padding: 8px 18px;
           font-size: 0.7rem;
           letter-spacing: 1px;
       }
   }
   
   .event-badge-inline {
       background: var(--gold-primary);
       color: #000;
       padding: 5px 30px;
       font-weight: 800;
       font-size: 1.5rem;
       text-transform: uppercase;
       box-shadow: 0 0 20px var(--saffron-primary);
       display: inline-block;
   }
   
   .event-date-info {
       color: var(--gold-primary);
       font-size: 1.5rem;
       text-shadow: 2px 2px 4px #000;
       font-weight: bold;
       margin-bottom: 30px;
   }
   
   @media (max-width: 768px) {
       .event-badge-inline {
           font-size: 1.2rem;
           padding: 5px 24px;
       }
       
       .event-date-info {
           font-size: 1.2rem;
           margin-bottom: 25px;
       }
   }
   
   @media (max-width: 480px) {
       .event-badge-inline {
           font-size: 1rem;
           padding: 6px 20px;
       }
       
       .event-date-info {
           font-size: 1rem;
           margin-bottom: 20px;
       }
       
       .tagline {
           font-size: 1.3rem !important;
           margin-top: 30px !important;
       }
   }
   
   .btn::before {
       content: '';
       position: absolute;
       top: 50%;
       left: 50%;
       width: 0;
       height: 0;
       border-radius: 50%;
       background: rgba(255, 255, 255, 0.4);
       transform: translate(-50%, -50%);
       transition: width 0.6s, height 0.6s;
   }
   
   .btn:hover::before {
       width: 400px;
       height: 400px;
   }
   
   .btn:hover {
       transform: translateY(-8px) scale(1.08);
       box-shadow:
           0 25px 70px #B85599,
           0 0 100px rgba(255, 235, 59, 0.6),
           inset 0 2px 0 rgba(255, 255, 255, 0.6);
       filter: brightness(1.25);
   }
   
   .btn:active {
       transform: translateY(-4px) scale(1.04);
   }
   
  /* Update around line 783 */
.hero .btn {
    margin-top: 100px;  /* Changed from 50px */
}
   
   .btn {
       display: inline-block;
       padding: 22px 55px;
       font-family: 'Russo One', sans-serif;
       font-size: 1.25rem;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 4px;
       color: var(--deep-black);
       background: linear-gradient(135deg, var(--flame-yellow), var(--amber-yellow), var(--fire-orange));
       background-size: 200% 200%;
       border: none;
       border-radius: 60px;
       text-decoration: none;
       cursor: pointer;
       position: relative;
       overflow: hidden;
       transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
       box-shadow:
           0 12px 40px rgba(255, 152, 0, 0.6),
           inset 0 -4px 12px rgba(0, 0, 0, 0.3),
           inset 0 2px 0 rgba(255, 255, 255, 0.4);
       animation: buttonPulse 3s ease-in-out infinite;
   }
   
   /* === Responsive Button === */
   @media (max-width: 768px) {
       .btn {
           padding: 18px 40px;
           font-size: 1.1rem;
           letter-spacing: 3px;
       }
       
       .hero .btn {
           margin-top: 35px;
       }
   }
   
   @media (max-width: 480px) {
       .btn {
           padding: 16px 35px;
           font-size: 0.95rem;
           letter-spacing: 2px;
           border-radius: 50px;
       }
       
       .hero .btn {
           margin-top: 30px;
       }
   }
   
   /* === SECTIONS === */
   section {
       padding: 120px 0;
       position: relative;
   }
   
   h2 {
       font-family: 'Righteous', sans-serif;
       font-size: clamp(4rem, 10vw, 7rem);
       font-weight: 700;
       letter-spacing: 10px;
       text-transform: uppercase;
       margin-bottom: 70px;
       text-align: center;
   
         background: linear-gradient(135deg,
               #F5C6EC 0%,
               #D8A7D8 25%,
               #C85A8E 50%,
               #B85599 75%,
               #F5C6EC 100%);
       background-size: 300% 300%;
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
   
       animation: fireFlow 6s ease-in-out infinite;
       filter: drop-shadow(0 0 50px rgba(255, 152, 0, 0.5));
   }
   
   @keyframes fireFlow {
   
       0%,
       100% {
           background-position: 0% 50%;
       }
   
       50% {
           background-position: 100% 50%;
       }
   }
   
   h3 {
       font-family: 'Teko', sans-serif;
       font-size: 3rem;
       font-weight: 700;
       color: var(--flame-yellow);
       margin-bottom: 18px;
       letter-spacing: 3px;
       text-transform: uppercase;
       text-shadow: 0 0 20px rgba(255, 235, 59, 0.4);
   }
   
   p {
       font-family: 'Poppins', sans-serif;
       font-size: 2rem;
       line-height: 1.8;
       color: var(--light-gray);
   }
   
   /* === GLASS CARDS === */
   .glass-card {
       background: rgba(26, 15, 46, 0.7);
       backdrop-filter: blur(20px);
       border: 2px solid rgba(200, 90, 142, 0.3);
       border-radius: 20px;
       padding: 45px;
       position: relative;
       overflow: hidden;
       transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
         box-shadow:
           0 12px 50px rgba(0, 0, 0, 0.6),
           inset 0 1px 0 rgba(200, 90, 142, 0.15);
   }
   
   .glass-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.15), transparent);
       transition: left 0.6s;
   }
   
   .glass-card:hover::before {
       left: 100%;
   }
   
   .glass-card:hover {
       transform: translateY(-12px);
       border-color: rgba(200, 90, 142, 0.7);
       box-shadow:
           0 25px 70px rgba(200, 90, 142, 0.4),
           0 0 100px rgba(200, 90, 142, 0.3),
           inset 0 1px 0 rgba(200, 90, 142, 0.4);
   }
   
   .glass-card::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       height: 4px;
       background: linear-gradient(90deg,
               var(--flame-yellow),
               var(--amber-yellow),
               var(--fire-orange),
               var(--ember-orange),
               var(--flame-yellow));
       background-size: 300% 100%;
       animation: shimmer 4s linear infinite;
       opacity: 0;
       transition: opacity 0.5s;
   }
   
   .glass-card:hover::after {
       opacity: 1;
   }
   
   @keyframes shimmer {
       0% {
           background-position: -300% 0;
       }
   
       100% {
           background-position: 300% 0;
       }
   }
   
   /* === LINEUP GRID === */
   .lineup-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 40px;
       margin-top: 60px;
   }
   
   @media (max-width: 900px) {
       .lineup-grid {
           grid-template-columns: 1fr;
       }
   }
   
   .feature-icon {
       font-size: 4.5rem;
       margin-bottom: 25px;
         filter: drop-shadow(0 0 30px rgba(200, 90, 142, 0.7));
       animation: iconFloat 3s ease-in-out infinite;
   
   @keyframes pulseGlow {
       0% {
           opacity: 0.7;
           text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
       }
       50% {
           opacity: 1;
           text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
       }
       100% {
           opacity: 0.7;
           text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
       }
   }}
   
   @keyframes iconFloat {
   
       0%,
       100% {
           transform: translateY(0) rotate(-5deg);
       }
   
       50% {
           transform: translateY(-15px) rotate(5deg);
       }
   }
   
   /* === FORM STYLING - CLEAN & PROPER DESIGN === */
   .registration-section {
       padding: 120px 0;
       position: relative;
       background:
           radial-gradient(circle at 30% 50%, rgba(255, 87, 34, 0.08) 0%, transparent 60%),
           radial-gradient(circle at 70% 50%, rgba(255, 152, 0, 0.08) 0%, transparent 60%);
   }
   
   .form-container {
       max-width: 650px;
       margin: 0 auto;
       position: relative;
   }
   
   .form-header {
       text-align: center;
       margin-bottom: 50px;
   }
   
   .form-subtitle {
       font-family: 'Cinzel Decorative', serif;
       font-size: 1.1rem;
       color: var(--flame-yellow);
       letter-spacing: 3px;
       text-transform: uppercase;
       margin-bottom: 15px;
       text-shadow: 0 0 20px rgba(245, 198, 236, 0.4);
   }
   
   .form-glass {
       background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.8));
       backdrop-filter: blur(30px);
       border: 3px solid rgba(200, 90, 142, 0.3);
       border-radius: 25px;
       padding: 50px 45px;
       position: relative;
       overflow: hidden;
       box-shadow:
          0 20px 60px rgba(0, 0, 0, 0.7),
           inset 0 1px 0 rgba(200, 90, 142, 0.2),
           0 0 100px rgba(200, 90, 142, 0.1);
   }
   
   .form-glass::before {
       content: '';
       position: absolute;
       top: -2px;
       left: -2px;
       right: -2px;
       height: 150px;
       background: linear-gradient(180deg,
                rgba(245, 198, 236, 0.12) 0%,
               rgba(200, 90, 142, 0.08) 50%,
               transparent 100%);
       border-radius: 25px 25px 0 0;
       pointer-events: none;
   }
   
   form {
       display: flex;
       flex-direction: column;
       gap: 25px;
       position: relative;
       z-index: 1;
   }
   
   .form-group {
       display: flex;
       flex-direction: column;
       gap: 10px;
       width: 100%;
   }
   
   label {
       color: var(--flame-yellow);
       font-family: 'Teko', sans-serif;
       font-weight: 700;
       font-size: 1.1rem;
       text-transform: uppercase;
       letter-spacing: 2px;
       text-shadow: 0 0 15px rgba(245, 198, 236, 0.3);
       display: flex;
       align-items: center;
       gap: 8px;
   }
   
   label::before {
      content: '✦';
       color: #C85A8E;
       font-size: 0.8rem;
   }
   
   input,
   select,
   textarea {
       width: 100%;
       padding: 16px 20px;
       font-size: 1rem;
       font-family: 'Poppins', sans-serif;
       font-weight: 500;
           background: rgba(10, 6, 16, 0.6);
       border: 2px solid rgba(200, 90, 142, 0.3);
       border-radius: 12px;
       color: var(--pure-white);
       transition: all 0.3s ease;
       outline: none;
       box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
   }
   
   textarea {
       resize: vertical;
       min-height: 100px;
       font-family: 'Poppins', sans-serif;
   }
   
   select {
       cursor: pointer;
       appearance: none;
       background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23FFB800' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
       background-repeat: no-repeat;
       background-position: right 15px center;
       background-size: 18px;
       padding-right: 45px;
   }
   
   input:focus,
   select:focus,
   textarea:focus {
        border-color: #C85A8E;
       background: rgba(10, 6, 16, 0.8);
       box-shadow:
           0 0 25px rgba(200, 90, 142, 0.3),
           inset 0 2px 8px rgba(0, 0, 0, 0.5);
       transform: translateY(-2px);
   }
   
   input::placeholder,
   textarea::placeholder {
       color: rgba(229, 229, 229, 0.4);
       font-weight: 400;
   }
   
   input:hover,
   select:hover,
   textarea:hover {
       border-color: rgba(255, 152, 0, 0.5);
   }
   
   /* Checkbox styling */
   .checkbox-group {
       display: flex;
       align-items: flex-start;
       gap: 12px;
       padding: 18px;
       background: rgba(255, 152, 0, 0.05);
       border: 2px solid rgba(255, 152, 0, 0.2);
       border-radius: 12px;
       transition: all 0.3s ease;
       margin-top: 10px;
   }
   
   .checkbox-group:hover {
       background: rgba(255, 152, 0, 0.08);
       border-color: rgba(255, 152, 0, 0.4);
   }
   
   .checkbox-group input[type="checkbox"] {
       width: 20px;
       height: 20px;
       min-width: 20px;
       margin-top: 2px;
       padding: 0;
       cursor: pointer;
       accent-color: var(--fire-orange);
   }
   
   .checkbox-group label {
       font-family: 'Poppins', sans-serif;
       font-size: 0.9rem;
       font-weight: 400;
       letter-spacing: 0.3px;
       text-transform: none;
       text-shadow: none;
       line-height: 1.5;
       margin: 0;
       cursor: pointer;
       color: rgba(255, 255, 255, 0.9);
   }
   
   .checkbox-group label::before {
       display: none;
   }
   
   /* Submit Button */
   .submit-btn {
       width: 100%;
       padding: 20px 50px;
       margin-top: 15px;
       font-family: 'Russo One', sans-serif;
       font-size: 1.2rem;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 3px;
       color: var(--deep-black);
       background: linear-gradient(135deg,
                  #F5C6EC 0%,
               #D8A7D8 50%,
               #C85A8E 100%);
       background-size: 200% 200%;
       border: none;
       border-radius: 50px;
       cursor: pointer;
       position: relative;
       overflow: hidden;
       transition: all 0.4s ease;
       box-shadow:
               0 12px 40px rgba(200, 90, 142, 0.5),
           inset 0 -4px 10px rgba(0, 0, 0, 0.3),
           inset 0 1px 0 rgba(255, 255, 255, 0.4);
       animation: submitPulse 3s ease-in-out infinite;
   }
   
   @keyframes submitPulse {
   
       0%,
       100% {
           background-position: 0% 50%;
       }
   
       50% {
           background-position: 100% 50%;
       }
   }
   
   .submit-btn::before {
       content: '🌸';
       position: absolute;
       left: 25px;
       top: 50%;
       transform: translateY(-50%);
       font-size: 1.5rem;
       animation: flameFlicker 1.5s ease-in-out infinite;
   }
   
   .submit-btn::after {
       content: '🌸';
       position: absolute;
       right: 25px;
       top: 50%;
       transform: translateY(-50%);
       font-size: 1.5rem;
       animation: flameFlicker 1.5s ease-in-out infinite 0.75s;
   }
   
   .submit-btn:hover {
       transform: translateY(-5px);
       box-shadow:
            0 18px 60px rgba(200, 90, 142, 0.7),
           0 0 80px rgba(245, 198, 236, 0.4),
           inset 0 1px 0 rgba(255, 255, 255, 0.6);
       filter: brightness(1.2);
   }
   
   .submit-btn:active {
       transform: translateY(-2px);
   }
   
   small {
       color: rgba(229, 229, 229, 0.6);
       font-size: 0.85rem;
       font-style: italic;
       display: block;
       margin-top: 15px;
       text-align: center;
       line-height: 1.5;
   }
   
  /* === ENHANCED FOOTER === */
footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

/* Animated top border with glow */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        var(--flame-yellow),
        var(--fire-orange),
        var(--ember-orange),
        var(--fire-orange),
        var(--flame-yellow),
        transparent);
    animation: borderFlow 6s linear infinite;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.6);
}

@keyframes borderFlow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

/* Subtle background pattern */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 152, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
    padding: 80px 0 30px;
}

/* Top section with logo and tagline */
.footer-top {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 152, 0, 0.15);
}

.footer-logo {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--flame-yellow), var(--fire-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 30px rgba(255, 152, 0, 0.4));
}

.footer-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    font-style: italic;
}

/* Middle section - 3 column layout */
.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    text-align: left;
}

.footer-column h4 {
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--flame-yellow);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--fire-orange), transparent);
    border-radius: 2px;
}

.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-grid a {
    color: rgba(229, 229, 229, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 0;
}

.footer-links-grid a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--fire-orange);
}

.footer-links-grid a:hover {
    color: var(--flame-yellow);
    padding-left: 15px;
    text-shadow: 0 0 15px rgba(255, 235, 59, 0.3);
}

.footer-links-grid a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact info styling */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(229, 229, 229, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item .icon {
    font-size: 1.3rem;
    min-width: 25px;
    color: var(--fire-orange);
}

/* Social media icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 50%;
    color: var(--flame-yellow);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 152, 0, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(10deg);
    border-color: var(--fire-orange);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

/* Admin Dashboard Button */
.admin-link-wrapper {
    margin-top: 25px;
}

.admin-footer-btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 152, 0, 0.15);
    border: 2px solid rgba(255, 152, 0, 0.4);
    border-radius: 30px;
    color: var(--flame-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.admin-footer-btn:hover {
    background: rgba(255, 152, 0, 0.25);
    border-color: var(--fire-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

/* Bottom section */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 152, 0, 0.15);
}

.footer-bottom p {
    color: rgba(229, 229, 229, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-credits {
    color: rgba(229, 229, 229, 0.4);
    font-size: 0.85rem;
    margin-top: 15px;
}

.footer-credits a {
    color: var(--fire-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credits a:hover {
    color: var(--flame-yellow);
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

/* === FOOTER RESPONSIVE === */
@media (max-width: 768px) {
    .footer-container {
        padding: 60px 0 25px;
    }

    .footer-logo {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-grid {
        align-items: center;
    }

    .footer-links-grid a:hover {
        padding-left: 0;
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-column h4 {
        font-size: 1.2rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .admin-footer-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}
   
   /* === TICKET MODAL === */
   .ticket-modal {
       display: none;
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.95);
       backdrop-filter: blur(15px);
       z-index: 10000;
       justify-content: center;
       align-items: center;
       opacity: 0;
       transition: opacity 0.3s ease;
   }
   
   .ticket-content {
       background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(10, 10, 10, 0.98));
       border: 4px solid var(--fire-orange);
       border-radius: 30px;
       padding: 50px 60px;
       text-align: center;
       max-width: 600px;
       width: 90%;
       position: relative;
       box-shadow:
           0 30px 80px rgba(200, 90, 142, 0.7),
           0 0 100px rgba(200, 90, 142, 0.3),
           inset 0 0 60px rgba(200, 90, 142, 0.1);
       animation: modalEntry 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
   }
   
   .ticket-content::before {
       content: '';
       position: absolute;
       top: -3px;
       left: -3px;
       right: -3px;
       bottom: -3px;
        background: linear-gradient(45deg,
               #C85A8E,
               #F5C6EC,
               #D8A7D8,
               #C85A8E);
       border-radius: 30px;
       z-index: -1;
       opacity: 0.3;
       animation: borderGlow 3s linear infinite;
   }
   
   @keyframes borderGlow {
       0% {
           filter: hue-rotate(0deg);
       }
   
       100% {
           filter: hue-rotate(360deg);
       }
   }
   
   @keyframes modalEntry {
       from {
           transform: scale(0.5) rotate(-10deg);
           opacity: 0;
       }
   
       to {
           transform: scale(1) rotate(0deg);
           opacity: 1;
       }
   }
   
   .ticket-content h2 {
       font-family: 'Russo One', sans-serif;
       font-size: 2.5rem;
           color: #F5C6EC;
       margin-bottom: 10px;
        text-shadow: 0 0 30px rgba(245, 198, 236, 0.6);
       border: none;
   }
   
   .ticket-content>p {
       font-family: 'Poppins', sans-serif;
       font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.8);
       margin-bottom: 20px;
   }
   
   .ticket-number {
       font-family: 'Bungee Shade', cursive;
       font-size: 3rem;
       background: linear-gradient(135deg,
               #F5C6EC,
               #D8A7D8,
               #C85A8E);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
       margin: 30px 0;
       letter-spacing: 5px;
       filter: drop-shadow(0 0 30px rgba(200, 90, 142, 0.8));
       padding: 20px;
       background-color: rgba(200, 90, 142, 0.1);
       border-radius: 15px;
       border: 2px solid rgba(200, 90, 142, 0.3);
   }
   
   .ticket-content hr {
       border: none;
       height: 2px;
       background: linear-gradient(90deg,
                  transparent,
               #C85A8E,
               #F5C6EC,
               #C85A8E,
               transparent);
       margin: 25px 0;
   }
   
   .ticket-content button {
       margin: 10px 5px;
       cursor: pointer;
   }
   
   /* Responsive ticket modal */
   @media (max-width: 768px) {
       .ticket-content {
           padding: 40px 30px;
           width: 95%;
       }
   
       .ticket-content h2 {
           font-size: 2rem;
       }
   
       .ticket-number {
           font-size: 2rem;
           letter-spacing: 3px;
       }
   }
   
   /* === ANIMATIONS === */
   .animate-up {
       animation: slideUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
   }
   
   .delay-1 {
       animation-delay: 0.2s;
   }
   
   .delay-2 {
       animation-delay: 0.4s;
   }
   
   .delay-3 {
       animation-delay: 0.6s;
   }
   
   @keyframes slideUp {
       from {
           opacity: 0;
           transform: translateY(80px);
       }
   
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   /* === RESPONSIVE === */
   @media (max-width: 768px) {
       .wrapper {
           padding: 0 20px;
       }
   
       /* Header responsive */
       .nav-content {
           flex-direction: column;
           gap: 15px;
           padding: 15px 0;
       }
   
       .logo {
           font-size: 1.5rem;
           letter-spacing: 2px;
       }
   
       .logo::before {
           font-size: 1.8rem;
       }
   
       .nav-buttons {
           width: 100%;
           justify-content: center;
           gap: 10px;
       }
   
       .header-btn {
           padding: 10px 20px;
           font-size: 0.75rem;
           letter-spacing: 1.5px;
       }
   
       .hero {
           padding-top: 140px;
       }
   
       .hero h1 {
           font-size: 5rem;
           letter-spacing: 8px;
           margin: 40px 0 50px 0;
       }
   
       .brush-text {
           font-size: 0.75rem;
           letter-spacing: 1px;
           padding: 0 10px;
           max-width: 95%;
           line-height: 1.8;
       }
   
       .tagline {
           font-size: 1.3rem;
       }
   
       .event-details {
           flex-direction: column;
           gap: 20px;
           margin: 30px auto;
       }
   
       .event-card {
           min-width: 100%;
           max-width: 320px;
           padding: 20px 30px;
       }
   
       .event-icon {
           font-size: 2rem;
       }
   
       .event-value {
           font-size: 1.5rem;
       }
   
       .lineup-grid {
           grid-template-columns: 1fr;
           gap: 30px;
       }
   
       .btn {
           padding: 18px 40px;
           font-size: 1.05rem;
           letter-spacing: 2px;
       }
   
       .hero .btn {
           margin-top: 35px;
       }
   
       .ticket-content {
           padding: 35px;
           margin: 20px;
       }
   
       h2 {
           font-size: 3rem;
           letter-spacing: 5px;
       }
   
       h3 {
           font-size: 1.8rem;
       }
   
       /* Form responsive */
       .form-glass {
           padding: 35px 25px;
       }
   
       form {
           gap: 22px;
       }
   
       input,
       select,
       textarea {
           padding: 15px 18px;
           font-size: 0.95rem;
       }
   
       label {
           font-size: 1rem;
       }
   
       .submit-btn {
           padding: 18px 40px;
           font-size: 1.1rem;
           letter-spacing: 2px;
       }
   
       .submit-btn::before,
       .submit-btn::after {
           font-size: 1.4rem;
       }
   
       .submit-btn::before {
           left: 20px;
       }
   
       .submit-btn::after {
           right: 20px;
       }
   
       .checkbox-group {
           padding: 15px;
       }
   
       .checkbox-group label {
           font-size: 0.85rem;
       }
   }
   
   /* Extra small devices */
   @media (max-width: 480px) {
       .brush-text {
           font-size: 0.7rem;
           letter-spacing: 0.5px;
           word-spacing: 2px;
       }
   
       .hero h1 {
           font-size: 4rem;
           letter-spacing: 5px;
       }
   
       .nav-buttons {
           flex-direction: column;
           width: 100%;
       }
   
       .header-btn {
           width: 100%;
           text-align: center;
       }
   
       .event-card {
           padding: 18px 25px;
       }
   
       .event-value {
           font-size: 1.3rem;
       }
   
       .event-subtext {
           font-size: 0.85rem;
       }
   }
   
   /* === SPECIAL FIRE EFFECTS === */
   @keyframes fireGlow {
   
       0%,
       100% {
           filter: brightness(1) contrast(1);
       }
   
       25% {
           filter: brightness(1.2) contrast(1.1);
       }
   
       50% {
           filter: brightness(1.4) contrast(1.2);
       }
   
       75% {
           filter: brightness(1.2) contrast(1.1);
       }
   }
   
   /* Add fire glow to specific elements */
   .hero h1,
   .logo,
   .btn {
       animation: fireGlow 4s ease-in-out infinite;
   }