/* Загальні стилі */
body {
    margin: 0;
    font-family: 'inter', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    background: url('https://balthazar.club/o/uploads/posts/2023-10/1697180934_balthazar-club-p-zadnii-fon-priroda-pinterest-6.jpg') no-repeat center center fixed;
    background-size: cover;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* Хедер */
  .site-header {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    top: 0;
    z-index: 1000;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo img {
    height: 100px;
    width: 100px;
  }
  
  .main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .main-nav li a {
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
  }
  .main-nav li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: orange;
    transition: width 0.3s ease;
  }
  .main-nav li a:hover::after {
    width: 100%;
  }
  .main-nav li a:hover {
    color: orange;
  }
  
  /* Кнопки */
  .user-actions .btn {
    margin-left: 10px;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.2s ease;
    white-space: nowrap;
  }
  .btn.login {
    background-color: #f1c40f;
  }
  .btn.register {
    background-color: #2ecc71;
  }
  .btn.login:hover {
    transform: scale(1.05);
  }
  
  /* Пульсація */
  .pulse {
    animation: pulse 2s infinite !important;
  }
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
  }
  
  /* Промо блок */
  .promo {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 30px 0;
    margin-top: 24px;
    animation: fadeInUp 0.8s ease-out;
    margin: auto;
    max-width: 1100px;
    margin-top: 30px;
  }
  
  .promo-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
  }
  
  .promo-text h1 {
    font-size: 32px;
    color: #f39c12;
  }
  .btn.claim {
    display: inline-block;
    margin-top: 12px;
    background-color: #e74c3c;
    padding: 10px 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: bold;
  }

  .promo-text a:hover {
    transform: scale(1.05);
  }

  .promo-img img {
    width: 370px;
    animation: pulse 2s infinite;
    border-radius: 10px;
  }
  
  /* Слоти */
  .slots {
    margin-top: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    padding: 10px;
    max-width: 1100px;
    margin: auto;
    border-radius: 10px;
    margin-top: 30px;
  }
  .slots h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .slot-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, 1fr);
  }
  
  .slot-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 150px;
    background-color: #1a1a1a;
    cursor: pointer;
  }
  
  .slot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease, filter 0.3s ease;
  }
  
  .slot-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.4) blur(2px);
  }
  
  .slot-item span {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    font-size: 13px;
    border-radius: 6px;
    z-index: 2;
    color: #fff;
  }
  .slot-item:hover {
    transform: scale(1.05);
  }
  .slot-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    align-items: center;
  }
  
  .slot-item:hover .slot-buttons {
    opacity: 1;
  }
  
  .slot-buttons a {
    background-color: rgba(230, 126, 34, 0.9);
    color: white;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.2s;
    text-align: center;
    min-width: 80px;
  }
  .slot-buttons a:hover {
    background-color: #d35400;
  }

  .more-games {
    margin-top: 24px;
    text-align: center;
  }
  .btn-more {
    display: inline-block;
    background-color: #2980b9;
    color: white;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 12px;
    transition: background-color 0.3s;
  }
  .btn-more:hover {
    background-color: #1f6391;
  }
  
  img{
    display: block;
    max-width: 100%;
    margin: 10px auto;
    border-radius: 20px;
  }

  section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 16px 16px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border-radius: 10px;
  }
  
  h1, h2 {
    color: #f1c40f;
    margin-top: 24px;
    margin-bottom: 12px;
  }
  
  p {
    margin-bottom: 16px;
    line-height: 1.6;
  }
  
  ul {
    margin-left: 20px;
    margin-bottom: 16px;
  }
  li {
    margin-bottom: 8px;
  }
  
  /* Таблиці */
  .table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    min-width: 600px;
  }
  
  thead {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  th {
    font-weight: bold;
  }

  .slot-section {
 
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
  }
  .slot-section h2 {
    color: #f39c12;
  }
  
  .site-footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 40px 16px 20px;
    margin-top: 60px;
    animation: fadeInUp 1s ease;
  }
  
  .footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
        align-items: center;
        text-align: center;
    flex-wrap: wrap;
    gap: 20px;
    
  }
  
  .footer-logo {
    flex: 1;
    min-width: 220px;
  }
  .footer-logo img {
    height: 100px;
    width: 100px;
    margin-bottom: 12px;
    animation: pulse-logo 2s infinite;
  }
  .footer-logo p {
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
  }
  
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-nav a {
    color: #f1c40f;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
  }
  .footer-nav a:hover {
    transform: translatex(5px);
    color: #ffffff;
  }
  
  .footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #aaa;
  }
  
  /* Анімація логотипа */
  @keyframes pulse-logo {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  

  /* Анімації */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    table {
        min-width: 100%;
      }
    .logo img {
        height: 73px;
    width: 70px;
    }
    .promo-content {
        flex-direction: column;
        text-align: center;
      }
    
      .promo-img img {
        width: 280px;
        margin-top: 12px;
      }
    
      .slot-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    
      .header-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }
    
      .main-nav ul {
        gap: 10px;
        width: 100%;
      }
    
      .user-actions {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
      }
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    
      .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
    
      .footer-logo img {
        height: 70px;
        width: 70px;
      }
  }
  