/* Import Orbitron font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');



/* Global Reset & Base */
body {
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
    font-family: 'Orbitron', sans-serif;
    filter: brightness(0.9)
    contrast(1.1);
    margin: 0;
    padding: 10;
    background-color: #111827;
     background-position:center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
    animation: pulseNeon 20s ease-in-out infinite alternate;
}
 @keyframes pulseNeon {
            0% {
                background-position: left center;
            }
            100% {
                background-position: right center;
            }
        }
        @media (max-width: 768px) {
            .navbar {
              flex-direction: column;
            }
          }

          
          * {
            box-sizing: border-box;
          }

          .header-logo-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            background-color: inherit;
            gap: 20px;
            flex-wrap: wrap;
          }
          
          .header-logo-container img {
            position: relative;
            object-fit: cover;
            height: 50px;
            width: 50px;
            border-radius: 50%;
            border: 2px solid #00ffff;
            box-shadow: 0 0 12px #00ffff, 0 0 25px #ff00ff, 0 0 15px #00ffff, 0 0 20px #ff00ff;
            transition: transform 0.3s ease-in-out;
          }
          
          .header-logo-container img:hover {
            transform: scale(1.05);
            animation: pulseGlow 1.5s infinite;
          }
          
          @keyframes pulseGlow {
            0% { box-shadow: 0 0 10px #0ff, 0 0 20px #ff00ff; }
            50% { box-shadow: 0 0 20px #ff00ff, 0 0 30px #0ff; }
            100% { box-shadow: 0 0 10px #0ff, 0 0 20px #ff00ff; }
          }
          
          .header-text {
            color: #0ff;
            font-family: 'Orbitron', sans-serif;
            margin-left: 0;
          }
          
          .header-text h1.gradient-heading {
            margin: 0;
            font-size: 24px;
            line-height: 1;
            font-weight: bold;
            letter-spacing: 1px;
            background: linear-gradient(270deg, #0ff, #ff00ff, #0ff);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientSlide 5s ease infinite;
            text-shadow: 0 0 6px #0ff, 0 0 12px #ff00ff;
          }
          
          @keyframes gradientSlide {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
          }
          
        
          
          .updates-btn {
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            padding: 8px 14px;
            border-radius: 5px;
            color: white;
            font-weight: bold;
            font-size: 16px;
            margin-right: 10px;
            animation: glowPulse 2s infinite ease-in-out;
            border: none;
            cursor: pointer;
          }
          
          @keyframes glowPulse {
            0% { box-shadow: 0 0 5px #ff00ff; }
            50% { box-shadow: 0 0 12px #00ffff; }
            100% { box-shadow: 0 0 5px #ff00ff; }
          }
          
          /* Event Strips */
          
           @keyframes flickerSpin { 0% { opacity: 1; transform: rotate(0deg) scale(1); }
    25% { opacity: 0.6; transform: rotate(20deg) scale(1.2); }
    50% { opacity: 1; transform: rotate(0deg) scale(1); }
    75% { opacity: 0.6; transform: rotate(-20deg) scale(1.2); }
    100% { opacity: 1; transform: rotate(0deg) scale(1); }
  }

  @keyframes flicker {
    0% { opacity: 1; text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff; }
    50% { opacity: 0.5; text-shadow: 0 0 2px #ff00ff; }
    100% { opacity: 1; text-shadow: 0 0 7px #ff00ff, 0 0 12px #ff00ff; }
  }

  .magenta-star {
    @apply text-pink-500 mx-3 text-[18px];
    animation: flickerSpin 2s infinite ease-in-out;
  }

  .flicker-star {
    @apply text-pink-500 text-sm;
    animation: flicker 1.2s infinite alternate;
  }

  .orbitron {
    font-family: 'Orbitron', sans-serif;
  }

  .strip-text {
    font-family: 'Times New Roman', serif;
    /* font-family: 'Montserrat', sans-serif; */ /* Uncomment this to use Montserrat instead */
  }
/*           
.gradient-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin: 0;
    background: linear-gradient(10deg, #0ff, #ff00ff, #0ff, #ff00ff);
    background-size: 600% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientSlide 5s ease-in-out infinite;
    font-weight: bolder;
    letter-spacing: 1px;
} */

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.logo-wrapper img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid #0ff;
    box-shadow: 0 0 10px #0ff, 0 0 20px magenta;
}

.header-logo-container img {
    position:relative;
    object-fit: cover;
    margin-left:20px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 2px solid #00ffff;

}


.header-logo-container img:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 15px #0ff,
        0 0 25px #ff00ff,
        0 0 35px #0ff,
        0 0 45px #ff00ff;
}
.header-text {
    color: #0ff;
    font-family: 'Orbitron', sans-serif;
    margin-left: 0;
}

.header-subtext {
    color: #fff;
    font-size: 08px;
    margin-top: 2px;
    font-family: 'montserrat',sans-serif;
}


.header-text h1 {
    margin: 0;
    font-size: 24px;
    line-height: 1;
    text-shadow: 0 0 6px #0ff, 0 0 12px #ff00ff;
}

.header-subtext {
    color: #fff;
    font-size: 12px;
    margin: 2px 0 0 0;
    line-height: 1;
}
.yukti-strip {
    overflow: hidden;
    position: relative;
    height: 100px;
    background: #000; /* fallback bg */
    margin-top: 20px;
    border-top: 2px solid #0ff;
    border-bottom: 2px solid magenta;
}

.yukti-slide-track {
    display: flex;
    width: calc(250px * 6); /* width = 250px * number of images */
    animation: scroll 30s linear infinite;
}

.yukti-slide-track img {
    width: 250px;
    height: 100px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 6px;
    box-shadow: 0 0 10px #0ff, 0 0 20px magenta;
}

html {
    scroll-behavior: smooth;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid #00ffff;
    margin-top: 10px auto;
}

.hero-presents {
    position: relative;
    font-weight: bolder;
    letter-spacing: 5px;
     font-size: x-large;
    background: linear-gradient(270deg, #0ff, #ff00ff, #0ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientSlide 5s ease infinite;
}
.slideshow-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: 20;
}



.slideshow-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-color: #000;
    opacity: 100;
    animation: slideShow 25s infinite ease-in-out;
}

.hero-content {
    position: absolute;
    top: 0;
   text-align: center;
    z-index: 15;
    color: #e6dddd;
    border-bottom: 2px solid #0ff5;
}

.hero-content h1 {
    font-size: 7rem;
    color: #00ffff;
    font-weight: 500;
   margin-top: 0;
    margin-bottom:0;
    font-family: Lora;
    letter-spacing: 5px;
    text-shadow:#00fddf;
                }
.laec h1 {
    position:relative;
    font-size: 7rem;
    font-family: 'Orbitron',sans-serif;
    margin-top:0;
    text-shadow:
    00 00 05px #00ffff,
    00 00 00px #00ffff,
    00 00 00px #00ffff,
    00 00 00px #0ff,
    00 00 00px #0ff,
    00 00 00px #0ff;
                }



                @media (max-width: 768px) {
    .hero-content h1 {
        font-size: 100rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .kite h1 {
        font-size: 3.5rem;
    }
}


.hero-content h2  {
    color: white;
    font-size:30px;
    font-weight: 400;
    margin-top: 0;
    letter-spacing: 10px;
    margin-bottom: 0;
                }


/* Gradient text animation */
@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Background slideshow animation
@keyframes slideShow {
    0% { background-image: url('./yukti6.jpg'); }
    20% { background-image: url('./yukti7.jpg'); }
    40% { background-image: url('./yukti3.jpg'); }
    60% { background-image: url('./yukti8.jpg'); }
    80% { background-image: url('./yukti5.jpeg'); }
} */


@keyframes gradient-text {
    0% { background-position: 0% }
    100% { background-position: 100% }
}
.kite h1{
    font-size: 5rem;
    font-family: "Arial Black";
    font-weight: bolder;
    letter-spacing:0;
    color:#00ffff;
    margin-top: 0;
    margin-bottom:0;
                }


.stylish-k,.stylish-zero,.stylish-o {
    background: linear-gradient(100deg, #f0f, #f0f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    display:inline-block;
    animation: pulse 1.5s infinite;
}
 @keyframes pulse {
     0% {
         transform: scale(1);
         opacity:1;
     }
        50% {
                transform: scale(1.1);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }


/* Header & Footer */
footer  {
    font-family: 'montserrat',sans-serif;
    padding: 15px 20px;
    text-align: center;
    background: #172326;

}
/* Mobile Hamburger Menu */
.gradient-text {
  background: linear-gradient(to right, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.5s ease;
  background-size: 200% 100%;
  background-position: 0% 50%;
}

.gradient-text:hover {
  background-position: 100% 50%;
}

  
  /* Desktop Navigation */
  .desktop-nav {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  
  .desktop-nav a {
    background: linear-gradient(90deg, #00f0ff, #ff00ff, #00f0ff);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradientMove 3s linear infinite;
    text-decoration: none;
    padding: 10px 15px;
    font-family: Cambria;
    font-size: 18px;
    font-weight: 550;
    transition: transform 0.3s ease;
  }
  
  .desktop-nav a:hover {
    text-shadow: 0 0 5px #00f0ff, 0 0 10px #ff00ff;
    transform: scale(1.1);
  }
  
  /* Gradient Animation */
  @keyframes gradientMove {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: 200% center;
    }
  }
  
  /* Responsive Rules */
  @media (min-width: 768px) {
    .desktop-nav {
      display: flex;
    }
    .menu-container {
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    .menu-container {
      display: block;
    }
    .desktop-nav {
      display: none;
    }
  }
  

/* Banner */
.college-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    width: 100%;
}
.college-banner img {
    width: 100%;
    max-width: 900px;
    height: auto;
    animation: glow 1.5s infinite alternate;
}

/* Sections */
section {
    padding: 40px 20px;
    text-align: center;
}
.section-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 50%;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    transition: transform 0.3s, box-shadow 0.3s;
}
.section-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px #ff00ff, 0 0 30px #00ffff;
}
.section-box h2 {
    color: #0ff;
    font-size: 24px;
    text-shadow: 0 0 7px #0ff;
}
.section-box p {
    color:#e0e0e0;;
    font-size: 15px;
    font-family: 'Montserrat',sans-serif;
    letter-spacing:1px;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 100px 20px;
    position: relative;
}
#hero h2 {
    position: relative;
    margin-top:0px;
    font-size: 2rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 03px #00fddf;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    letter-spacing:1px;
}
#hero p {
    font-family: Cambria;
    font-size: 1.2rem;
    font-weight: 500;
    color: #0ff;
    letter-spacing: 1.5px;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    animation: subtleGlow 2s infinite alternate;
    margin-bottom: 20px;
}
#hero .btn {
    display: block;
    margin: 20px auto;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    background: #ff00ff;
    color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px #ff00ff;
    transition: transform 0.2s ease-in-out;
    width: fit-content;
}
#hero .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #ff00ff;
}

/* Divider */
.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #0ff, transparent);
    margin: 20px 0;
}

/* Buttons */
.btn, a {
    position: relative;
    overflow: hidden;
}
.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px #ff00ff;
}
.btn::after, a::after {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.6) 10%, transparent 50%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease-out;
}
.btn:active::after, a:active::after {
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.2s ease-out;
}
.register-btn1 {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s ease;
}
.register-btn:hover {
    background: #cc5500;
}

/* Neon Background Animation */
.neon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.neon-strip {
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.8), rgba(255, 0, 255, 0.8));
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.9), 0 0 30px rgba(255, 0, 255, 0.7);
    animation: neonMove 6s infinite ease-in-out;
    opacity: 0.7;
    filter: blur(2px);
}
.neon-strip:nth-child(1) { left: 10%; animation-duration: 5s; animation-delay: 0s; }
.neon-strip:nth-child(2) { left: 30%; animation-duration: 6s; animation-delay: 1s; }
.neon-strip:nth-child(3) { left: 50%; animation-duration: 7s; animation-delay: 2s; }
.neon-strip:nth-child(4) { left: 70%; animation-duration: 5.5s; animation-delay: 1.5s; }
.neon-strip:nth-child(5) { left: 90%; animation-duration: 8s; animation-delay: 0.5s; }

/* AI Car Float */
.ai-car {
    position: relative;
    width: 100px;
    animation: floatcars 3s infinite ease-in-out;
}


.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.events-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.event-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00ffff;
    border-radius: 15px;
    padding: 20px 30px;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 0 5px #0ff;
    box-shadow: 0 0 15px #00ffff, inset 0 0 10px rgba(255, 0, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    min-width: 200px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.event-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #ff00ff, inset 0 0 15px rgba(0, 255, 255, 0.5);
}

.ticker-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 12px;
    box-shadow: 0 0 15px #0ff;
    animation: portalOpen 1.2s ease-in-out;
    backdrop-filter: blur(6px);
}

.ticker-logo {
    height: 70px;
    animation: glow 2s infinite alternate;
}

.ticker-text {
    color: #0ff;
    text-align: right;
    line-height: 1.3;
    font-size: 14px;
}

.ticker-text .college-name {
    font-size: 18px;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 10px #0ff;
}

.ticker-text .affiliation {
    font-size: 13px;
    color: #ccc;
    font-style: italic;
    text-shadow: 0 0 4px #0ff;
}
            .floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}


@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.neon-gradient-text {
    background: linear-gradient(270deg, #00ffff, #ff00ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-slide 5s ease infinite;
    font-weight: bold;
   font-family: 'Orbitron', sans-serif;
}


.neon-btn {
    background: linear-gradient(270deg, #00ffff, #ff00ff);
    position: relative;
    margin-right: 80px;
    background-size: 400% 400%;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    animation: gradient-slide 5s ease infinite;
    transition: transform 0.3s;
    cursor: pointer;

}

.neon-btn:hover {
    transform: scale(1.05);
}


@keyframes gradient-slide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
   .neon-slide-letter {
    display: inline-block;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: letter-slide 2s linear infinite;
}

@keyframes letter-slide {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.event-strip-1 {
    position: relative;
    background-color: #1c1c1c; 
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family:"Times New Roman", Times, serif;
    font-size: 20px;
    color: #00ffff;
    font-weight: 300;
     }


.magenta-star {
    color: magenta;
    margin: 0 12px;
    font-size: 18px;
    animation: flickerSpin 2s infinite ease-in-out;
}
@keyframes flickerSpin {
    0% { opacity: 1; transform: rotate(0deg) scale(1); }
    25% { opacity: 0.6; transform: rotate(20deg) scale(1.2); }
    50% { opacity: 1; transform: rotate(0deg) scale(1); }
    75% { opacity: 0.6; transform: rotate(-20deg) scale(1.2); }
    100% { opacity: 1; transform: rotate(0deg) scale(1); }
}

  .event-strip-2 {
    position: relative;
    background-color: #1c1c1c; /* solid black for both strips */
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
    color: #00ffff;
    font-weight: 300;
     border-top: 1px solid #0ff5;  }



.event-strip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
    opacity: 0.4;
    transform: translateY(-50%);
}

.event-strip span {
    margin-right: 40px;
    text-shadow: 0 0 3px #0ff9, 0 0 5px #f0f7;
}

.flicker {
    animation: flicker 1.2s infinite alternate;
    color: #ff00ff;
    font-size: 14px;
}

@keyframes flicker {
    0%   { opacity: 1; text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff; }
    50%  { opacity: 0.5; text-shadow: 0 0 2px #ff00ff; }
    100% { opacity: 1; text-shadow: 0 0 7px #ff00ff, 0 0 12px #ff00ff; }
}

.magenta-star {
    color: magenta;
    margin: 0 12px;
    font-size: 18px;
    animation: flickerSpin 2s infinite ease-in-out;
}

@keyframes flickerSpin {
    0% { opacity: 1; transform: rotate(0deg) scale(1); }
    25% { opacity: 0.6; transform: rotate(20deg) scale(1.2); }
    50% { opacity: 1; transform: rotate(0deg) scale(1); }
    75% { opacity: 0.6; transform: rotate(-20deg) scale(1.2); }
    100% { opacity: 1; transform: rotate(0deg) scale(1); }
}

.updates-btn {
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    padding: 8px 14px;
    border-radius: 1px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
    animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 5px #ff00ff; }
    50% { box-shadow: 0 0 12px #00ffff; }
    100% { box-shadow: 0 0 5px #ff00ff; }
}
@media (max-width: 768px) {
    .updates-btn {
      position: absolute;
      top: 5px;
      left: 0px;
      z-index: 10; 
    background-color: #000; 
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    }
  
    .event-strip-container {
      position: relative;
    }
  
    .event-strip-2 {
      position: relative;
    }
  }
  
.gradient-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    background: linear-gradient(270deg, #0ff, #ff00ff, #0ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientSlide 5s ease infinite;
    font-weight: bold;
    letter-spacing: 3px;
    margin-left:20px;
    margin-bottom: 5px;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.header-subtext {
    position: relative;
    color: #fff;
    font-size: 12px;
    margin-top: 0px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 20px;
  }

--------------
.artist-section {
    margin: 50px auto;
    padding: 20px;
    color: white;
    max-width: 800px;
}

.cyberpunk-heading {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.artist-box {
    display: flex;
    color: #e0e0e0;

    }

.artist-box {
    margin-left: 30px;
    display: flex;
    background-color: #0a0a0a;
    border: 2px solid #00ffff;
    border-radius: 08px;
     margin: 100px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Montserrat', sans-serif;
}
.neon-title {
    font-family:'Orbitron',sans-serif;
    color:magenta;
    font-size:30px;
}

.artist-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px #ff00ff, 0 0 30px #00ffff;
}

.artist-image img {
    margin:30px;
    justify-content:center;
    width: 300px;
    height: auto;
    height: auto;
    background-color: #0a0a0a;
    border: 2px solid #00ffff;
    border-radius: 12px;
    margin-right: 25px;
}

.artist-details {
    color: #e0e0e0;
}

.artist-details h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ff00ff;
    font-size: 28px;
    margin-bottom: 10px;
}

.artist-details .highlight {
    color: #00ffff;
    font-weight: bold;
}

.artist-details ul {
    list-style-type: disc;
    margin-left: 20px;
}
----------------------------
  .events {
    max-width: 50%;
    padding: 2px;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
  }

  .section {
    border: 2px solid #00f0ff;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a0033, #000033);
    overflow: hidden;
    transition: 0.3s;
  }

  .section-header {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #00f0ff;
  }

  .section-header h2 {
    color: #ff00ff;
    font-family: 'Orbitron', sans-serif; /* stylish techy font */
    text-align: center;
    padding: 10px 0;
    background: linear-gradient(to right, #ff00ff, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s ease;
  }

  .games {
    display: none;
    padding: 15px;
  }

  .game {
    background-color: #12122b;
    border: 1px solid #00f0ff;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 10px;
  }

  .register-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 8px 16px;
    background: #00f0ff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.2s;
  }

  .register-btn:hover {
    background: #ff00ff;
    color: #fff;
  }
  .section-description {
    padding: 10px 20px;
    color: #ddd;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    background-color: #0e0e1a;
    border-top: 1px solid #00f0ff;
  }
  .section-description {
    padding: 10px 20px;
    color: #ddd;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    background-color: #0e0e1a;
    border-top: 1px solid #00f0ff;
  }

  /* animation for event section */
  @keyframes gradient-slide {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }

  .animate-gradient-slide {
    animation: gradient-slide 3s linear infinite alternate;
  }


  
  

  /* Stylish font import */
  @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

@keyframes gradient-x {
  0%, 100% {
    background-position: left center;
  }
  50% {
    background-position: right center;
  }
}

.animate-gradient-x {
  background-size: 200% 200%;
  animation: gradient-x 5s ease infinite;
}
.neon-glow {
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
}
