body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #36000a;
}

/* Стили для хедера */
.header {
    background: linear-gradient(135deg,rgb(193,6,38) 0%,rgb(224,79,41) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: 75px;
}

.bonus-container {
    background: #4d0308;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    max-width: 750px;
    margin: 20px auto;
}

.bonus-banner img {
    width: 100%;
    border-radius: 10px;
}

.bonus-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
}

.bonus-button {
    background: #ffcc66;
    color: black;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.bonus-button:hover {
    background: #e6b854;
}

/* Адаптация под мобильные устройства */



.auth-buttons {
    display: flex;
    gap: 10px;
}

.register-btn {
    background: linear-gradient(135deg,rgb(193,6,38) 0%,rgb(224,79,41) 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid #ffffff;
}

.register-btn:hover {
    background: linear-gradient(135deg,rgb(117, 4, 23) 0%,rgb(155, 53, 27) 100%);
}

.login-btn {
    background: linear-gradient(135deg,rgb(193,6,38) 0%,rgb(224,79,41) 100%);
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: linear-gradient(135deg,rgb(117, 4, 23) 0%,rgb(155, 53, 27) 100%);
}

/* Нижняя линия */
.header-line {
    width: 100%;
    height: 2px;
    background: #ffffff;
    margin-top: 5px;
}

.danger{
    text-align: center;
    color: #fff;
    background-color: #36000a;
    font-size: 15px;
    padding: 20px 0;
}

.casino-footer {
    background: linear-gradient(135deg,rgb(193,6,38) 0%,rgb(224,79,41) 100%);
    color: #ffffff;
    padding: 40px 20px 20px;
    border-top: 2px solid #ffffff;
    font-family: 'Inter', sans-serif;
    margin-top: 60px;
  }

  .nav {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
  }
  
  .nav-links li a {
    color: #ffcc66;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: white;
    text-shadow: 0 0 5px #ffcc66;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
  
  .footer-logo img {
    max-width: 150px;
    filter: drop-shadow(0 0 8px rgba(255, 204, 102, 0.4));
  }
  
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav ul li {
    margin-bottom: 8px;
  }
  
  .footer-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .footer-nav ul li a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px #ffcc66;
  }
  
  .footer-socials p {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icons a {
    color: #ffffff;
    font-size: 1.4rem;
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icons a:hover {
    color: #ff0022;
    transform: scale(1.2);
  }
  
  .footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #ffffff;
    padding-top: 20px;
    color: #ffdb8b;
  }
  
  .love-note {
    font-size: 13px;
    color: #ffffff;
    margin-top: 5px;
  }

.casino-table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    background: #4d0308;
    color: #ffcc66;
    font-size: 16px;
}

.casino-table td {
    padding: 12px;
}

.casino-table tr:nth-child(odd) {
    background: #60040a;
}



img{
    width: 100%;
    border-radius: 20px;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.2em;
    color: #fff;
}

/* Стили для всех заголовков */
h1, h2, h3, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: #e6b854;
    margin-bottom: 0.5em;
    text-align: center;
}

/* Стили для списков */
ul, ol {
    margin: 0;
    padding-left: 20px;
    color: #fff;
}

li {
    margin-bottom: 0.5em;
    color: #fff;
}

section{
    margin: 15px 20px;
    display: grid;
    justify-items: stretch;
    line-height: 1.6;
}

main {
    border-radius: 20px;
    margin: 30px auto 30px;
    line-height: 1.6;
    display: grid;
    justify-content: center;
    max-width: 1300px;
}

.bonus-offer {
    background: linear-gradient(135deg,rgb(193,6,38) 0%,rgb(224,79,41) 100%);
    border: 2px solid #ffffff;
    padding: 40px 20px;
    border-radius: 20px;
    max-width: 1100px;
    margin: 40px auto;
    box-shadow: 0 0 20px rgba(255, 204, 102, 0.2);
  }
  
  .bonus-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .bonus-info {
    flex: 1;
    color: #fff;
  }
  
  .bonus-info h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffcc66;
    text-shadow: 0 0 5px #ffcc66;
  }
  
  .bonus-description {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .bonus-description .highlight {
    color: #ffc107;
    font-weight: bold;
  }
  
  .bonus-timer {
    font-size: 20px;
    color: #ffffff;
    background-color: #600a0f;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 8px rgba(255, 204, 102, 0.4);
    animation: blink 1s infinite alternate;
  }
  
  @keyframes blink {
    from { box-shadow: 0 0 8px #ffc107; }
    to { box-shadow: 0 0 20px #ff6a00; }
  }
  
  .bonus-activate-btn {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    font-size: 16px;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
    margin-left: 20px;
  }
  
  .bonus-activate-btn:hover {
    background: #ffcc66;
    transform: scale(1.05);
    box-shadow: 0 0 12px #ffc107;
  }
  
  .bonus-image {
    flex: 1;
    max-width: 480px;
  }
  
  .bonus-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 204, 102, 0.3);
  }

  .wheel-section {
    background: linear-gradient(135deg,rgb(193,6,38) 0%,rgb(224,79,41) 100%);
    padding: 50px 20px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 0 15px rgba(255, 204, 102, 0.3);
    border: 2px solid #ffffff;
  }
  
  .wheel-desc {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ffcc66;
  }

  .wheel-container {
    position: relative;
    display: inline-block;
    margin-top: 20px;
  }
  
  canvas {
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 204, 102, 0.3);
  }
  
  .spin-btn {
    margin-top: 20px;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .spin-btn:hover {
    background: #ffd54f;
    transform: scale(1.05);
  }
  
  .prize-display {
    margin-top: 40px;
    padding: 20px;
    border-radius: 14px;
    background: #4d0308;
    color: #ffcc66;
    box-shadow: 0 0 12px rgba(255, 204, 102, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .prize-display.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .claim-link {
    display: inline-block;
    margin-top: 12px;
    background: linear-gradient(135deg,rgb(193,6,38) 0%,rgb(224,79,41) 100%);
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.3s;
  }
  
  .claim-link:hover {
    background: linear-gradient(135deg,rgb(117, 4, 23) 0%,rgb(155, 53, 27) 100%);
    transform: scale(1.05);
  }
  
  .hidden {
    display: none;
  }

  .wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid red;
    z-index: 2;
  }

@media (max-width: 1216px){
    main{
        margin: 30px 10px;
    }
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
    }
    .bonus-grid {
        flex-direction: column;
        text-align: center;
      }
    
      .bonus-info h2 {
        font-size: 22px;
      }
    
      .bonus-description {
        font-size: 16px;
      }
    
      .bonus-timer {
        font-size: 18px;
      }
    
      .bonus-activate-btn {
        width: 75%;
        justify-content: center;
        margin-left: 0;
      }

      .container {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
      }
    
      .nav-links {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
      }
    
      .auth-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
      }


    .register-btn, .login-btn {
        padding: 8px 15px;
    }


    .bonus-text {
        font-size: 16px;
    }

    .bonus-button {
        width: 100%;
    }
    .casino-table {
        font-size: 12px;
    }

    .casino-table td {
        display: block;
        text-align: center;
    }

    .casino-table tr {
        display: block;
        margin-bottom: 10px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
      }
    
      .footer-logo img {
        margin-bottom: 20px;
      }
}

@media (max-width: 500px) {

    .register-btn, .login-btn {
        padding: 4px 7px;
    }
    canvas {
        width: 250px !important;
        height: 250px !important;
      }
    
      .spin-btn {
        width: 100%;
      }
}

