body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0b0f2b, #11163e);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
  }

  main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px;
    background: linear-gradient(145deg, #0d122c, #1c2347);
    border-radius: 16px;
    box-shadow:
      0 4px 6px rgba(0, 0, 0, 0.6),
      0 0 40px rgba(255, 230, 0, 0.05);
      padding: 0 16px;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #ffe600;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  p {
    margin-bottom: 16px;
    font-size: 16px;
  }

  ul, ol {
    margin-left: 24px;
    margin-bottom: 16px;
  }

  li {
    margin-bottom: 8px;
  }

  a {
    color: #ffe600;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  }

  table, th, td {
    border: 1px solid #fff;
  }

  th, td {
    padding: 10px;
    text-align: left;
  }

  th {
    background-color: #061030;
  }

  code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #0b0f2b;
    position: relative;
    z-index: 1000;
  }

  .logo {
    display: flex;
    justify-content: center;
  }

  .logo-img {
    max-height: 40px;
    border-radius: 0;
  }

  .nav-links ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-links li a {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }

  .nav-links li a:hover {
    color: #ffe600;
  }

  .auth-buttons {
    display: flex;
    gap: 10px;
  }

  .btn {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
  }

  .btn.primary {
    background: #ffe600;
    color: #000;
  }

  .btn.primary:hover {
    background: #fff200;
    box-shadow: 0 0 10px #ffe600;
  }

  .btn.secondary {
    border: 2px solid #ffe600;
    color: #ffe600;
    background: transparent;
  }

  .btn.secondary:hover {
    background: #ffe600;
    color: #000;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .burger span {
    width: 24px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0b0f2b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .mobile-menu-content nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-size: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-menu nav li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }

  .mobile-menu nav li a:hover {
    color: #ffe600;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
  }

  .slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .slider-container {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
  }

  .slider-container a {
    flex: 0 0 100%;
  }

  .slider-container img {
    width: 100%;
    height: auto;
    display: block;
  }

  .slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
  }

  .slider-controls button {
    background: #ffe600;
    border: none;
    padding: 8px 16px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    margin: 15px;
  }

  .slider-dots {
    text-align: center;
    margin-top: 12px;
  }

  .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .dot.active {
    background: #ffe600;
  }

  .below-slider-section {
    background: #061030;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 10px;
    flex-wrap: wrap;
  }

  .below-slider-section a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px;
    flex: 1 1 100px;
    transition: transform 0.3s;
  }
  
  .below-slider-section a:hover {
    transform: scale(1.1);
  }
  
  .below-slider-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .below-slider-item span {
    font-size: 14px;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bonus-section {
    margin: 20px;
    background: #061030;
    border-radius: 16px;
    padding: 16px;
    position: relative;
    overflow: hidden;
  }
  
  .bonus-timer {
    color: #ffe600;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .bonus-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
  }
  
  .bonus-image img {
    max-width: 300px;
    width: 100%;
  }
  
  .bonus-content {
    padding: 20px;
    text-align: center;
    position: relative;
  }
  
  .bonus-label {
    background: #f4016b;
    color: #fff;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .bonus-content p {
    color: #ffe600;
    font-size: 24px;
    margin: 8px 0;
  }
  
  .bonus-prize {
    font-size: 36px;
    font-weight: bold;
    margin: 12px 0;
  }
  
  .bonus-slots-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
  }
  
  .slot-images {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  
  .slot-images img {
    height: 60px;
    border-radius: 8px;
  }
  
  
  .bonus-btn {
    background: #ffe600;
    color: #000;
    border: none;
    padding: 10px 24px;
    font-size: 16px;
    border-radius: 20px;
    margin-top: 12px;
    cursor: pointer;
    font-weight: bold;
  }

  .slot-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 30px auto;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .game-slider {
    display: flex;
    gap: 12px;
    overflow: hidden;
    max-width: 90vw;
  }
  
  .game-slider img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    filter: blur(4px);
    transition: all 0.3s ease;
    opacity: 0.6;
  }
  
  .game-slider img.active {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
  }
  
  .slot-nav {
    background: #ffe600;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
  }

  .scroll-top-button {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 16px;
    z-index: 1000;
    background: #ffe600;
    border: none;
    padding: 12px 16px;
    font-size: 24px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .scroll-top-button:hover {
    background: #fff200;
  }

  .footer {
    background: #030f2e;
    padding: 40px 16px;
    color: #fff;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .footer-column {
    flex: 1 1 200px;
    min-width: 180px;
  }
  
  .footer-logo {
    width: 120px;
    margin-bottom: 12px;
  }
  
.footer-social{
    flex-direction: column;
}
  
  .footer-social a img {
    width: 36px;
    margin-right: 8px;
    border: 2px solid #ffe600;
    border-radius: 8px;
    padding: 4px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #ffe600;
  }
  
  .bot-banner {
    width: 180px;
    margin-bottom: 12px;
    border-radius: 6px;
  }
  
  #footer-time {
    color: #ffe600;
    font-weight: bold;
  }

  .slotoBotSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #04245c, #0a2d7c);
    padding: 10px 20px;
    border-radius: 8px;
    color: #ffe600;
    height: 60px;
    box-sizing: border-box;
    overflow: hidden;
    gap: 20px;
    margin-top: 20px;
  }
  
  .slotoBotText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
  }
  
  .textTitle {
    font-size: 14px;
    font-weight: 400;
  }
  
  .textSubTitle {
    font-size: 18px;
    font-weight: 700;
  }
  
  .telegramIcon img {
    width: 130px;
    height: 60px;
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    .below-slider-item img {
        width: 28px;
        height: 28px;
      }

      .below-slider-item img {
        width: 28px;
        height: 28px;
      }

      .footer-container {
        align-items: flex-start;
        gap: 24px;
      }
    
      .footer-logo {
        width: 100px;
      }
    
      .footer-social a img {
        width: 32px;
      }
    
      .bot-banner {
        width: 100%;
      }
    
      .below-slider-item span {
        font-size: 12px;
      }

      .below-slider-item span {
        font-size: 12px;
      }

    .burger {
      display: flex;
    }

    .auth-buttons {
      display: flex;
      gap: 6px;
      align-items: center;
    }
    .btn {
        font-size: 14px;
    }
    .slider-controls button {
        padding: 6px 12px;
        font-size: 14px;
      }
      .bonus-container {
        flex-direction: column;
        text-align: center;
      }

      
    
      .bonus-image img {
        max-width: 200px;
      }
    
      .bonus-content h2 {
        font-size: 20px;
      }
    
      .bonus-prize {
        font-size: 28px;
      }
    
      .slot-images img {
        height: 50px;
      }
    
      .slot-nav {
        font-size: 16px;
        width: 28px;
        height: 28px;
      }
    
      .bonus-btn {
        font-size: 14px;
        padding: 8px 16px;
      }
  }

  @media (max-width: 600px) {
    .slotoBotSection {
      padding: 12px;
      gap: 12px;
    }
  
    .textTitle {
      font-size: 12px;
    }
  
    .textSubTitle {
      font-size: 16px;
    }
  
    .telegramIcon img {
      width: 120px;
      height: 50px;
    }
  }

  @media (max-width: 500px) {
    .bonus-section {
      flex-direction: column;
      padding: 16px;
      text-align: center;
    }


  
    .bonus-section img {
      max-width: 100%;
      height: auto;
      margin-bottom: 12px;
    }
  
    .bonus-content h2 {
      font-size: 18px;
    }
  
    .bonus-content .amount {
      font-size: 28px;
    }
  
    .bonus-timer {
      font-size: 12px;
      margin-bottom: 8px;
    }
  
    .game-slider {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      gap: 8px;
      padding-bottom: 8px;
    }
  
    .game-slider img {
      width: 60px;
      height: auto;
      flex-shrink: 0;
    }
  
    .bonus-btn {
      font-size: 14px;
      padding: 8px 14px;
    }
  
    .bonus-section .slider-nav {
      display: none;
    }
  }

  @media (max-width: 450px) {
  .header {
    justify-content: space-between;
    padding: 16px 15px;
  }
  .btn {
    padding: 5px 6px;
  }
  .slider-controls button {
    padding: 4px 8px;
    font-size: 12px;
  }
  }

  @media (max-width: 350px) {
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-collapse: separate;
        border-spacing: 0;
      }
    
      thead {
        display: none;
      }
    
      tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid #444;
        border-radius: 8px;
        padding: 8px;
        background-color: #0b0f2b;
      }
    
      td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none;
        border-bottom: 1px solid #333;
      }
    
      td::before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        top: 10px;
        font-weight: bold;
        color: #ffe600;
        text-align: left;
      }
    
      td:last-child {
        border-bottom: none;
      }
  }

