.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

@media (max-width: 768px) {
    .bonuses .buttons-container {
        display: none !important;
    }
}

/* Base styles for the container and images */
.bonuses-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .bonus {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 20px;
  }
  
  .bonus img {
    width: 100%;
    height: auto;
  }
  
  /* Styles for tablets */
  @media (min-width: 600px) and (max-width: 1199px) {
    .bonus img {
      width: 80%;
    }
  }
  
  /* Styles for mobile devices */
  @media (max-width: 599px) {
    .bonus img {
      width: 80%;
    }
  }
  
  /* Styles for large screens */
  @media (min-width: 1200px) {
    .bonus img {
      width: 95%;
    }
  }
  


.mobile-menu-button span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 21, 21, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }
}

  :root {
      --primary-bg: #0a0a0a;
      --secondary-bg: #151515;
      --accent-color: #00ffff;
      --text-color: #ffffff;
      --gradient: linear-gradient(45deg, #00ffff, #ff00ff, #ff7700);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--primary-bg);
      color: var(--text-color);
      line-height: 1.6;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  header {
      background-color: rgba(21, 21, 21, 0.9);
      backdrop-filter: blur(10px);
      position: fixed;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
  }

  .logo {
      font-size: 1.8rem;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: transform 0.3s ease;
  }

  .logo:hover {
      transform: scale(1.05);
  }

  nav ul {
      display: flex;
      list-style: none;
  }

  nav ul li {
      margin-left: 30px;
  }

  nav ul li a {
      color: var(--text-color);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease, transform 0.3s ease;
      display: inline-block;
  }

  nav ul li a:hover {
      color: var(--accent-color);
      transform: translateY(-2px);
  }

  nav ul.mobile-menu {
      display: none;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-top: 20px;
  }

  nav ul.mobile-menu.active {
      display: flex;
  }

  .mobile-menu-button {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      cursor: pointer;
  }

  .mobile-menu-button span {
      width: 25px;
      height: 3px;
      background-color: var(--text-color);
      margin: 2px 0;
      transition: all 0.3s ease;
  }

  .mobile-menu-button.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-button.active span:nth-child(2) {
      opacity: 0;
  }

  .mobile-menu-button.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
      background: var(--secondary-bg);
      padding: 180px 0 120px;
      position: relative;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 50%, rgba(255, 119, 0, 0.1) 100%);
      animation: rotate 20s linear infinite;
      z-index: 1;
  }

  @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }

  .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
  }

  .hero h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero p {
      font-size: 1.3rem;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
  }

  .cta-button {
      display: inline-block;
      padding: 15px 40px;
      background: var(--gradient);
      color: var(--text-color);
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: all 0.5s ease;
  }

  .cta-button:hover::before {
      left: 100%;
  }

  .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  .hero-points {
      display: flex;
      justify-content: center;
      margin-top: 40px;
      flex-wrap: wrap;
  }

  .hero-point {
      margin: 10px 20px;
      display: flex;
      align-items: center;
      font-size: 1.1rem;
      background: rgba(255, 255, 255, 0.1);
      padding: 10px 20px;
      border-radius: 30px;
      transition: all 0.3s ease;
  }

  .hero-point:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
  }

  .hero-point i {
      font-size: 1.5rem;
      margin-right: 10px;
      color: var(--accent-color);
  }

  .video-section {
      padding: 100px 0;
      background-color: var(--primary-bg);
  }

  .video-container {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
  }

  .video-container:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }

  .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .features, .comparison, .about-vision, .partner, .bonuses {
      background-color: var(--secondary-bg);
      padding: 80px 20px;
      margin-bottom: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .features h2, .comparison h2, .about-vision h2, .partner h2, .bonuses h2 {
      text-align: center;
      margin-bottom: 50px;
      font-size: 3rem;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .features .features-container, .comparison .comparison-container, .bonuses .bonuses-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }

  .features .feature, .comparison .box, .bonuses .bonus {
      background-color: rgba(255, 255, 255, 0.05);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 30px;
      transition: all 0.3s ease;
      flex-basis: 100%;
  }

  .features .feature:hover, .comparison .box:hover, .bonuses .bonus:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .features .feature i, .comparison .box ul li .icon, .bonuses .bonus i {
      font-size: 3rem;
      color: var(--accent-color);
      margin-bottom: 20px;
  }

  .features .feature h3, .comparison .box .title, .bonuses .bonus h3 {
      font-size: 1.8rem;
      margin-bottom: 15px;
      color: #e5e5e5;
  }

  .features .feature p, .comparison .box ul li, .bonuses .bonus p {
      font-size: 1.1rem;
  }

  .comparison .box ul {
      list-style: none;
      padding: 0;
  }

  .comparison .box ul li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      text-align: left;
  }

  .comparison .box ul li .icon {
      margin-right: 15px;
      min-width: 30px;
      min-height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      font-size: 1.2rem;
      color: #ffffff;
  }

  .comparison .box ul li .icon.red {
      background-color: #ff4d4d;
  }

  .comparison .box ul li .icon.blue {
      background-color: #4d79ff;
  }

  .cta-button2 {
      padding: 15px 30px;
      background: transparent;
      color: #ffffff;
      font-size: 1.2em;
      text-decoration: none;
      border-radius: 30px;
      border: 2px solid transparent;
      background-image: linear-gradient(var(--secondary-bg), var(--secondary-bg)),
          var(--gradient);
      background-origin: border-box;
      background-clip: padding-box,
      border-box;
      transition: all 0.3s ease;
      outline: none;
      display: inline-block;
      width: calc(100% - 40px);
      box-sizing: border-box;
      text-align: center;
      font-weight: 600;
      position: relative;
      overflow: hidden;
  }

  .cta-button2:hover {
      background-color: rgba(255, 255, 255, 0.1);
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
  }

  .cta-button2::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: all 0.5s ease;
  }

  .cta-button2:hover::before {
      left: 100%;
  }

  .bonuses .bonus video {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      margin-top: 20px;
      transition: all 0.3s ease;
  }

  .bonuses .bonus video:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }

  .buttons-container {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
      gap: 15px;
  }

  .buttons-container button {
      padding: 15px 20px;
      background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
      color: var(--text-color);
      border: none;
      border-radius: 30px;
      font-size: 1.2rem;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .buttons-container button:hover {
      background: linear-gradient(135deg, #00e6ff 0%, #0092ff 100%);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  .footer {
      background-color: #151515;
      padding: 40px 20px;
      text-align: center;
      border-top: 1px solid #2a2a2a;
      margin-top: 60px;
  }

  .footer p {
      margin: 0;
      color: #777777;
      font-size: 1.1rem;
  }

  .footer-links {
      margin-top: 20px;
  }

  .footer-links a {
      color: #c0c0c0;
      text-decoration: none;
      margin: 0 15px;
      transition: color 0.3s ease;
      font-size: 1rem;
  }

  .footer-links a:hover {
      color: #ffffff;
  }

  .disclaimer {
      margin-top: 40px;
      padding: 20px;
      border: 2px dashed #ff4d4d;
      border-radius: 10px;
      color: white;
      background-color: rgba(255, 77, 77, 0.1);
      text-align: center;
      font-size: 0.9rem;
      line-height: 1.5;
  }

  @media (max-width: 1200px) {
      .hero h1 {
          font-size: 3.5rem;
      }

      .cta-button, .cta-button2 {
          padding: 12px 30px;
          font-size: 1.1rem;
      }
  }

  @media (max-width: 768px) {
      .header-content {
          flex-direction: column;
          align-items: center;
      }

      .mobile-menu-button {
          display: flex;
      }

      .header-content nav ul {
          display: none;
      }

      .header-content nav ul.mobile-menu {
          display: flex;
      }

      .hero h1 {
          font-size: 2.8rem;
      }

      .hero p {
          font-size: 1.1rem;
      }

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

      .hero-point {
          margin: 10px 0;
          width: 100%;
          justify-content: center;
      }

      .features .feature, .comparison .box, .bonuses .bonus {
          padding: 20px;
      }

      .cta-button2 {
          width: 100%;
          border-radius: 30px;
      }
  }

  @media (max-width: 480px) {
      .hero h1 {
          font-size: 2.2rem;
      }

      .hero p {
          font-size: 1rem;
      }

      .cta-button, .cta-button2 {
          padding: 10px 20px;
          font-size: 1rem;
      }

      .features h2, .comparison h2, .about-vision h2, .partner h2, .bonuses h2 {
          font-size: 2.2rem;
      }
  }

  @media (min-width: 1200px) {
      .features .feature, .comparison .box {
          flex-basis: calc(33.33% - 20px);
          margin-right: 10px;
          margin-left: 10px;
      }

      .comparison .box {
          flex-basis: calc(50% - 20px);
          margin-right: 10px;
          margin-left: 10px;
      }

      .bonuses .bonus {
          display: none;
      }

      .bonuses .bonus.active {
          display: block;
      }
  }