    :root {
      --bg-dark: #0a0d1a;
      --accent: #00f0ff;
      --text: #ffffff;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-dark);
      color: var(--text);
    }

    header {
      background: linear-gradient(90deg, #0f111a, #1b1f30);
      padding: 16px 24px;
      position: relative;
      z-index: 1000;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
    }

    .logo img {
      width: 70px;
    }

    nav {
      display: flex;
      gap: 24px;
    }

    nav a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover {
      color: var(--accent);
    }

    .header-buttons {
      display: flex;
      gap: 12px;
    }

    .login-btn,
    .register-btn {
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      font-size: 14px;
      border: none;
      transition: background 0.3s;
    }

    .login-btn {
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
    }

    .login-btn:hover {
      background: var(--accent);
      color: #000;
    }

    .register-btn {
      background: var(--accent);
      color: #000;
    }

    .register-btn:hover {
      background: #00c6e0;
    }

    .burger {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--accent);
      cursor: pointer;
    }

    .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0b0e18;
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 40px 20px;
}

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

.mobile-menu ul {
  list-style: none;
  text-align: center;
  margin-bottom: 30px;
}
.mobile-menu ul li {
  margin: 16px 0;
}
.mobile-menu ul li a {
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  font-weight: 500;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--accent);
  cursor: pointer;
}

.mobile-auth {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.mobile-auth a {
  padding: 10px 24px;
  border-radius: 30px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}
.mobile-auth .login-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.mobile-auth .login-btn:hover {
  background: var(--accent);
  color: #000;
}
.mobile-auth .register-btn {
  background: var(--accent);
  color: #000;
}
.mobile-auth .register-btn:hover {
  background: #00c6e0;
}

.slider-wrapper {
  padding: 20px 80px 20px;
  text-align: center;
  position: relative;
}
.slider-wrapper h1 {
  font-size: 24px;
  color: #00f0ff;
  margin-bottom: 20px;
}

.slider {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  background-size: cover;
  background-position: center;
  transition: left 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active {
  left: 0;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1;
}
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.slide-content h2 {
  font-size: 18px;
  color: #5ef1d6;
  margin-bottom: 8px;
}
.slide-content p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 23px;
}
.slide-content a {
  padding: 8px 18px;
  background: #5ef1d6;
  color: #000;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
  margin-right: 100px;
}
.slider-controls button {
  background: #242f5c;
    border: none;
    color: #ffffff;
    font-size: 18px;
    padding: 6px 12px;
    border-radius: 25%;
    cursor: pointer;
    transition: background 0.3s;
}
.slider-controls button:hover {
  background: #313e72;
}

.bonus-benefits {
  padding: 40px 20px;
  text-align: center;
}
.bonus-benefits h2 {
  font-size: 24px;
  color: #00f0ff;
  margin-bottom: 30px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.benefit-grid a {
  display: block;
  text-decoration: none;
  background: #121623;
  border-radius: 14px;
  padding: 24px 20px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  color: inherit;
}

.benefit-grid a:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
  background: #161b2b;
}

.benefit-grid i {
  font-size: 28px;
  color: #00f0ff;
  margin-bottom: 14px;
}

.benefit-grid h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.benefit-grid p {
  font-size: 14px;
  color: #bbb;
}

.why-us {
  padding: 40px 20px;
  text-align: center;
}

.why-us h2 {
  font-size: 24px;
  color: #00f0ff;
  margin-bottom: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.why-grid a {
  display: block;
  text-decoration: none;
  background: #121623;
  border-radius: 14px;
  padding: 24px 20px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  color: inherit;
}

.why-grid a:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
  background: #161b2b;
}

.why-grid i {
  font-size: 28px;
  color: #00f0ff;
  margin-bottom: 14px;
}

.why-grid h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.why-grid p {
  font-size: 14px;
  color: #bbb;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 24px;
  background: #00f0ff;
  color: #000;
  border: none;
  padding: 6px 9px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
  display: none;
  transition: all 0.3s ease;
}
#scrollTopBtn:hover {
  background: #3ed9bd;
}

/* Footer */
footer {
  background: #0a0d1a;
  color: #bbb;
  padding-top: 40px;
  font-size: 14px;
  border-top: 3px solid #00f0ff;
}

.footer-banner {
  text-align: center;
  padding: 40px 20px;
  background: #121825;
}
.footer-banner h2 {
  font-size: 22px;
  color: #00f0ff;
  margin-bottom: 16px;
}
.footer-banner .footer-cta {
  background: #00f0ff;
  color: #000;
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.footer-banner .footer-cta:hover {
  background: #3ed9bd;
}

.footer-columns {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
}
.footer-columns ul {
  list-style: none;
  padding: 0;
}
.footer-columns li {
  margin-bottom: 12px;
}
.footer-columns a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-columns a:hover {
  color: #00f0ff;
}

.footer-socials {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.footer-socials i {
  font-size: 20px;
  color: #00f0ff;
  transition: color 0.3s;
}
.footer-socials i:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px;
  text-align: center;
}
.footer-bottom img {
  height: 36px;
  margin-bottom: 10px;
}
.footer-bottom p {
  color: #666;
  font-size: 13px;
}

  main {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        font-family: 'Inter', sans-serif;
        color: #ccc;
        line-height: 1.7;
      }

      section {
        background: rgba(0, 0, 0, 0.2);
        padding: 30px;
        border-radius: 12px;
      }

      h2 {
        color: #00f0ff;
        font-size: 24px;
        margin: 40px 0 16px;
      }

      p {
        font-size: 16px;
        margin-bottom: 18px;
        color: #ccc;
      }

      strong {
        color: #ffffff;
      }

      ul {
        padding-left: 20px;
        margin-bottom: 20px;
      }

      li {
        margin-bottom: 10px;
      }

      a {
        color: #5ef1d6;
        text-decoration: underline;
      }

      a:hover {
        color: #ffffff;
      }

     main img {
        width: 100%;
        border-radius: 10px;
        margin: 20px 0;
      }

    @media (max-width: 768px) {
        .slider-wrapper{
            padding: 20px 5px 20px;
        }
  .slider {
    height: 240px;
  }
  .slide-content h2 {
    font-size: 16px;
  }
  .slide-content p {
    font-size: 13px;
  }
       nav,
      .header-buttons .login-btn {
        display: none;
      }

      .burger {
        display: block;
      }
    }

    @media (min-width: 769px) {
      .mobile-menu {
        display: none !important;
      }
    }

    @media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
}