@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  a{
    text-decoration: none;
  }
  body {
  font-family: 'Inter', sans-serif;

  background-color: #000; /* Base background color */
  background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.897), rgb(0, 0, 0, 0.897)), 
    url('../img/tron.png'); /* Watermark image */

  background-repeat: no-repeat;
  background-position: center center;
  background-size: 500px; /* Controls watermark image size */

  color: #fff;
  line-height: 1.6;
}

  header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: rgba(0,0,0,0.8); */
    background-color: #fff;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    z-index: 100;
  }
  .logo {
    font-size: 2rem;
    /* color: #00bfff; */
    color: #fe0103;
    font-weight: bold;
  }
  nav a {
    color: #000;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  nav a:hover {
    /* color: #00bfff; */
    color: #240101;
  }
  /* Hamburger Icon */
  .hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fe0103;
    transition: transform 0.3s ease;
  }

  .tops{
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px 5px;
    font-family: 'Orbitron', sans-serif;
  }
  .tops h2{
    text-shadow: 1px 2px 15px #fe0103;
    font-size: 25px;
    letter-spacing: 10px;
  }


  .hero {
    height: 70vh;
    background: url('https://www.transparenttextures.com/patterns/stardust.png'), #240101;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    max-width: 600px;
  }
  .hero .cta {
    display: flex;
    gap: 15px;
  }
  .cta a {
    /* background-color: #00bfff;
    border: #00bfff solid 2px; */
    background-color: #fff;
    border: #fff solid 2px;
    padding: 12px 24px;
    margin-top: 20px;
    /* color: #000; */
    color: #240101;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: all ease-in-out 0.3s;
  }
  .cta a:hover{
    /* background: none;
    border: #00bfff solid 2px;
    color: #00bfff; */
    transform: scale(1.05)
  }
  /* .tron_logo{
    width: 35px;
    height: 35px;
    object-fit: contain;

    display: flex;
    gap: 50px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
  }
  .tron_logo img{
    width: 100%;
    height: 100%;
  } */

  /* .tron_wrapper {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.tron_logo {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.tron_logo img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} */

  .stats {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background: #fff;
    flex-wrap: wrap;
  }
  .stat-box {
    background: #240101;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 200px;
    margin: 10px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease;
  }
  .stat-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  .stat-box h2 {
    /* color: #00bfff; */
    color: #fff;
    font-size: 2rem;
  }
  .help, .features, .ecosystem, .reserve, .community, .benefits {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
  }
  .help{
    display: flex;
    justify-content: center;
    align-items:center;
    gap: 15px;
  }
  .help .text{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
  }
  .help .text>a{
    background: #fe0103;
    color: #fff;
    text-align: center;
    padding: 10px 5px;
    font-weight: bolder;
    border: #fe0103 solid 2px;
    transition: all ease-in-out 0.5s;
  }
  .help .text>a:hover{
    background: #fff;
    color: #fe0103;
    border: #fff solid 2px;
  }
  .features h2, .ecosystem h2, .reserve h2, .community h2, .benefits h2 {
    text-align: center;
    color: #fe0103;
    margin-bottom: 30px;
  }
  .feature-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .feature-item {
    flex: 1;
    margin: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease;
  }
  .feature-item:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(207, 2, 2, 0.3);
  }
  .secure{
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  footer {
    text-align: center;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.8);

  }
  /* footer a {
    color: #00bfff;
    margin: 0 10px;
    text-decoration: none;
  } */
  footer p {
    /* color: #00bfff; */
    color: #fff;
    font-family: 'Orbitron', sans-serif;
  }

  /* ----------------THE RESERVE PAGE IS HERE ----------------------*/
  /* Reserve Page Styling */
  .activeHome{
    text-decoration: underline #9c0202 2px;
  }
  .activeReserve{
    text-decoration: underline #9c0202 2px;
  }
  .activeQfs{
    text-decoration: underline #9c0202 2px;
  }
.reserve-hero {
    background: linear-gradient(to right, #240101, #000);
    color: white;
    text-align: center;
    padding: 100px 20px 60px;
  }
  .reserve-hero .hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .reserve-info, .reserve-form-section, .reserve-status {
    padding: 60px 20px;
    /* background: #0c0c0c; */
    color: white;
  }
  .container {
    max-width: 900px;
    margin: auto;
  }
  .reserve-info h2,
  .reserve-form-section h2,
  .reserve-status h2 {
    font-size: 28px;
    color: #9c0202;
    margin-bottom: 20px;
  }
  .reserve-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .reserve-form input,
  .reserve-form select {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
  }
  .reserve-form a {
    background-color: #fff;
    border: #fff solid 2px;
    padding: 12px 24px;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: all ease-in-out 0.3s;text-align: center;
  }
  .reserve-form a:hover {
    transform: scale(1.01);
    color: #9c0202;
  }
  .status-table {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
  }
  .status-header,
  .status-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .status-header {
    font-weight: bold;
    color: #9c0202;
  }
  .status-row:last-child {
    border-bottom: none;
  }

  /* ----------------THE QFS PAGE IS HERE ----------------------*/
  .qfs-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .qfs-section h1 {
    text-align: center;
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out;
  }
  
  .qfs-section p.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
  }
  
  .qfs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  
  .qfs-item {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 25px;
    border-radius: 12px;
    flex: 1 1 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease;
  }
  
  .qfs-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(207, 2, 2, 0.3);
  }
  
  .qfs-item h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .qfs-item p {
    font-size: 0.95rem;
    color: #dbefff;
  }
  
  .qfs-cta {
    text-align: center;
    margin-top: 50px;
    animation: pulseFade 2s infinite;
  }
  
  .qfs-cta a {
    background-color: red;
    color: #fff;
    border: red 2px solid;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: ease-in-out 0.5s all
  }
  .qfs-cta a:hover{
    background-color: #fff;
    color: red;
  }
  
  

  /* ------------------ MEDIA QUERY -------------*/
  @media only screen and (max-width: 450px) {
    body {
  
  background-size: 300px; /* Controls watermark image size */
}
    body.no-scroll {
        height: 100vh;
        overflow: hidden;
      }

      .logo {
    font-size: 1.5rem;
    /* color: #00bfff; */
    color: #fe0103;
    font-weight: bold;
  }

    .hamburger {
        display: block;
      }
    
      nav {
        flex-direction: column;
    background: #000;
    position: absolute;
    top: 90px;
    right: 0;
    width: 60%;
    padding: 0;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    border-radius: 8px;
    border-left: solid 1.5px #9c0202;
    border-bottom: solid 1.5px #9c0202;
    border-right: solid 1.5px #9c0202;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
        width: 100vw;
        height: 40vh;
      }
    
      nav a {
        margin-top: 50px;
        padding: 10px;
        border-bottom: 2px solid #9c0202;
        display: block;
        width: 50%;
        color: #fff;
      }
    
      nav.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        padding: 10px 0;
      }

      .hamburger.rotate {
        transform: rotate(90deg);
      }


      .tops{
    padding: 20px 5px;
  }
  .tops h2{
    font-size: 20px;
    letter-spacing: 5px;
  }

  .help{
    flex-direction: column;
  }
  .help .img>img{
    width: 350px;
    height: 350px;
  }
    
    
    
    .hero{
        height: 60vh;
    }
    .hero h1{
        font-size: 2rem;
    }
    .features{
      padding-top: 2px;
    }
    .feature-grid{
        flex-direction: column;
    }
    .activeHome{
      text-decoration: none;
    }
    .activeReserve{
        text-decoration: none;
      }
      .activeQfs{
        text-decoration: none;
      }
  }
  