:root {
      --bg: #06002a;
      --neon-blue: #00d7ff;
      --neon-blue2: #0077ff;
    }
.register-text {
  margin-top: 8px;
  font-size: 1rem;
  color: #dfeeff;
}



.hidden-link {
  display: none;
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: bold;
}
.hidden-link a {
  color: var(--neon-blue);
  text-decoration: none;
}
.hidden-link a:hover {
  color: var(--neon-blue2);
  text-decoration: underline;
}

    
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: url("background2.jpeg") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
}


    /* Opening Video Overlay */
    #video-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: black;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      overflow: hidden;
      cursor: pointer;
    }
    #intro-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Logo Bar */
    .logo-bar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 80px;
      background: #06002a;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 25px;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.6);
    }
    .logo-bar img {
      height: 60px;
      width: auto;
      object-fit: contain;
    }
    .logo-bar img:first-child {
      height: 45px;
    }
    .logo-bar img:last-child {
      margin-right: 40px;
    }

   .title {
  font-size: 5rem;
  font-weight: 800;
  margin: 140px 0 40px;
  color: var(--neon-blue);
  text-shadow: 0 0 7px var(--neon-blue), 0 0 6px var(--neon-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
}

    section {
      margin: 55px auto;
      padding: 20px;
      max-width: 1100px;
      background: rgba(255,255,255,0.04);
      border-radius: 14px;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    section h2 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 20px;
      color: #fff;
      text-shadow: 0 0 8px #00f7ff;
      text-transform: uppercase;
      text-decoration: underline;
    }

    /* About */
    .about p {
      line-height: 1.5;
      font-size: 1.25rem;
      color: #dfeeff;
    }

    /* Domains */
    .domains {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .domain {
      background: rgba(255,255,255,0.05);
      border-radius: 12px;
      padding: 16px;
      cursor: pointer;
      transition: transform 0.3s;
      position: relative;
      box-shadow: 0 6px 18px rgba(0,0,0,0.4);
      overflow: hidden;
    }
    .domain:hover {
      transform: translateY(-5px) scale(1.02);
    }
    .domain .label {
      font-size: 1.4rem;
      font-weight: 800;
    }
    .domain .venue {
      font-size: 1rem;
      margin-top: 6px;
      opacity: 0.9;
    }

    /* Register button */
    .register-btn {
      margin: 20px auto 10px auto;
      display: inline-block;
      background: var(--neon-blue);
      color: #000;
      font-weight: 900;
      font-size: 1.3rem;
      padding: 14px 32px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 0 22px var(--neon-blue);
      text-transform: uppercase;
    }
    .register-btn:hover {
      background: var(--neon-blue2);
      color: #fff;
      box-shadow: 0 0 28px var(--neon-blue2);
    }

    /* Highlights carousel */
    .carousel-container {
      width: 100%;
      overflow: hidden;
      margin-top: 20px;
      border-radius: 12px;
      box-shadow: 0 0 22px var(--neon-blue2);
    }
    .carousel-track {
      display: flex;
      animation: scroll 30s linear infinite;
    }
    .carousel-track img {
      width: 350px;
      height: 220px;
      margin: 0 12px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
      box-shadow: 0 0 18px var(--neon-blue2);
      transition: transform 0.3s;
    }
    .carousel-track img:hover {
      transform: scale(1.08);
    }
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    /* Modal Timeline & QR */
    .timeline, .qr-modal {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 500px;
      background: rgba(0, 0, 0, 0.95);
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      font-size: 1rem;
      box-shadow: 0 0 20px var(--neon-blue);
      z-index: 2000;
      color: #fff;
    }
    .timeline.active, .qr-modal.active {
      display: block;
    }
    .timeline-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 1500;
    }
    .timeline-overlay.active {
      display: block;
    }
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      background: transparent;
      border: none;
      color: var(--neon-blue);
      font-size: 1.5rem;
      font-weight: bold;
      cursor: pointer;
    }

    /* QR Section */
    .qr-container {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 20px;
    }
    .qr {
      width: 150px;
      height: 150px;
      cursor: pointer;
      border-radius: 12px;
      transition: transform 0.3s;
      box-shadow: 0 0 12px var(--neon-blue2);
    }
    .qr:hover {
      transform: scale(1.08);
    }
    .qr-modal img {
      width: 300px;
      height: 300px;
      border-radius: 12px;
    }
    .qr-modal p {
      margin-top: 12px;
      font-size: 1.2rem;
      color: var(--neon-blue);
      font-weight: bold;
    }

    @media(max-width:768px) {
      .domains {
        grid-template-columns: 1fr;
      }
      .carousel-track img {
        width: 260px;
        height: 160px;
      }
      .logo-bar {
        height: 65px;
        padding: 0 15px;
      }
      .logo-bar img {
        height: 45px;
      }
      .title {
        margin: 110px 10px 10px 10px;
        font-size: 40px;
      }
      section h2{
        font-size: 24px;
      }
      section{
        margin: 22px 10px 22px 10px;
      }

    }

    .socials-img {
        margin-bottom: 25px;
    }