  body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; 
    background-color: #1e1e24;
    color: white;
  }
  
  header {
    box-sizing: border-box;
    position: fixed;
    width: 100%;
    top: 0;
    background: #101b38;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    z-index: 999;
  }
  
  header img {
    height: 40px;
  }
  
  nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  
  nav a:hover::after {
    width: 100%;
  }
  
  nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #775ce5;
    transition: width 0.3s ease;
  }
  
  .register {
    text-decoration: none;
    background: #775ce5;
    padding: 8px 20px;
    border-radius: 8px;
    color: white;
    margin-right: 10px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  .register:hover {
    background: #6040dd;
  }
  
  .login {
    text-decoration: none;
    border: 1px solid #775ce5;
    padding: 8px 18px;
    border-radius: 8px;
    color: #c5bfff;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .login:hover {
    background: #1a2550;
    color: white;
  }
  
  #burger-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }
  
  #mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background: #101b38;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 998;
  }
  
  #mobile-menu ul {
    list-style: none;
    padding: 0;
  }
  
  #mobile-menu a {
    display: block;
    padding: 12px 0;
    color: white;
    font-size: 18px;
  }
  #mobile-menu ul li a {
    border-bottom: 1px solid #2b3a5c;
    text-decoration: none;
  }

  #mobile-menu ul li:hover {
    border-radius: 10px;
    background: #6040dd;
    transition: background 0.3s ease;
  }

  #mobile-menu a.register{
    margin-right: 0;
  }

  #mobile-menu a.register,
  #mobile-menu a.login {
    margin-top: 20px;
  }
  
  #menu-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    z-index: 997;
    transition: opacity 0.3s ease;
  }
  
  #mobile-menu.show {
    text-align: center;
    border-radius: 20px;
    margin-left: 7px;
    top: 75px;
    left: 0;
  }
  
  #menu-blur.active {
    opacity: 1;
    pointer-events: all;
  }

  .bonus {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    margin-top: 70px;
    border-bottom: solid 2px #775ce5;
    border-top: solid 2px #775ce5;
  }
  
  .bonus img {
    filter: blur(2px) brightness(0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .bonus div {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto;
  }
  
  .bonus h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease;
  }
  
  .bonus h1 {
    font-size: 55px;
    margin: 10px 0;
    font-weight: 900;
    animation: zoomIn 1s ease;
  }
  
  .bonus h1 span {
    color: #a66eff;
  }
  
  .bonus p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
  }
  
  .bonus a {
    display: inline-block;
    padding: 16px 32px;
    background: #7928d6;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
  }
  
  .bonus a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(121, 40, 214, 0.6);
  }

  .slots h2 {
    font-size: 24px;
    margin: 20px;
    color: #fff;
  }
  
  .slots > div {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .slots > div::-webkit-scrollbar {
    height: 8px;
  }
  .slots > div::-webkit-scrollbar-thumb {
    background-color: #8859ff;
    border-radius: 4px;
  }
  .slots > div::-webkit-scrollbar-track {
    border-radius: 4px;
    margin: 5px;
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .slots > div > div {
    flex: 0 0 auto;
    width: 180px;
    background-color: #1c1c2b;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
  }
  
  .slots > div > div:hover {
    transform: scale(1.05);
  }
  
  .slots > div > div img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }

  .slots > div > div img:hover{
    filter: blur(1px) brightness(0.5);
  }
  
  .slots > div > div span {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    background: #222;
  }
  
  .slots > div > div div {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
  }
  
  .slots > div > div:hover div {
    display: flex;
  }
  
  .slots > div > div a {
    padding: 6px 12px;
    background: #6a3eea;
    color: #fff;
    font-size: 13px;
    text-align: center;
    border-radius: 6px;
    transition: background 0.3s ease;
    text-decoration: none;
  }
  
  .slots > div > div a:hover {
    background: #a275f9;
  }
  
  .progress{
text-align: center;
  }

  [role="progressbar"] {
    margin: 0 20px 0;
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    overflow: hidden;
  }
  
  [role="progressbar"] > span {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #ffffff; 
  }
  
  [role="progressbar"] > div {
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
  }
  
  [role="progressbar"] > div > div {
    height: 100%;
    background: linear-gradient(to right, #7928d6, #3d0f72);
    transition: width 1s ease;
    border-radius: 10px 0 0 10px;
  }

  

  .content > section {
    max-width: 1300px;
    margin: 40px auto;
    padding: 32px 24px;
    border-radius: 16px;
    background-color: rgb(28 28 28 / 65%); 
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: 'Inter', sans-serif;
    animation: fadeInUp 0.6s ease;
  }

  .content > section img{
    width: 100%;
    border-radius: 20px;
  }
  
  .content h2, h3, h4 {
    color: #7928d6;
    margin-top: 24px;
    margin-bottom: 12px;
  }
  
  .content p {
    line-height: 1.6;
    margin-bottom: 16px;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  footer {
    background: linear-gradient(145deg, #0B0F26, #04112f);
    color: #fff;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    animation: fadeInUp 0.8s ease;
  }
  
  footer div:first-child {
    margin-bottom: 24px;
  }
  
  footer div:first-child img {
    height: 80px;
    width: auto;
    margin-bottom: 12px;
    animation: pulseLogo 2.5s infinite;
  }
  
  footer p {
    color: #B0B7C3;
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  footer nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
  }
  
  footer nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
  }
  
  footer nav a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  footer div:last-child div {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
  }
  
  footer div:last-child i {
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s, color 0.3s;
  }
  
  footer div:last-child i:hover {
    transform: scale(1.2);
    color: #775ce5;
  }
  
  @keyframes pulseLogo {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.06);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 1000px) {
    nav,
    header > div:not(.auth):not(.logo) {
      display: none;
    }
  
    #burger-toggle {
      display: block;
    }
  }

  @media (max-width: 768px) {
    .bonus {
      padding: 60px 20px;
    }
  
    .bonus h1 {
      font-size: 40px;
    }
  
    .bonus p {
      font-size: 16px;
    }
  
    .bonus a {
      padding: 14px 24px;
      font-size: 15px;
    }
  }

  @keyframes fadeInDown {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
  }
  
  @keyframes fadeInUp {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
  }
  
  @keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(121, 40, 214, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(121, 40, 214, 0); }
    100% { box-shadow: 0 0 0 0 rgba(121, 40, 214, 0); }
  }

  @media (max-width: 768px) {
    footer nav {
        flex-direction: column;
        gap: 10px;
      }
    
      footer div:last-child div {
        flex-wrap: wrap;
      }
    .slots h2 {
        font-size: 20px;
        text-align: center;
      }
    
      .slots > div {
        gap: 12px;
        padding: 12px;
      }
    
      .slots > div > div {
        width: 140px;
      }
    
      .slots > div > div img {
        height: 133px;
      }
    
      .slots > div > div a {
        font-size: 12px;
      }
    }