    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: sans-serif;
      background: #00111d;
      color: white;
    }
    a {
      color: #0E3CA6;
    }

    header {
      background: #00111d;
      border-bottom: 1px solid #002233;
      position: relative;
      z-index: 10;
    }
    ol li, ul, li {
      margin-left: 20px;
    }
    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 10px 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: nowrap;
    }

    .logo img {
      height: 40px;
    }

    .nav ul {
      flex-wrap: wrap;
    margin: 5px;
    display: flex;
    gap: 17px;
    list-style: none;
    }

    .nav a {
      text-decoration: none;
      color: white;
      font-weight: bold;
      font-size: 14px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .right-side {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .auth-buttons {
      display: flex;
      gap: 10px;
    }

    .auth-buttons a {
      text-decoration: none;
      display: inline-block;
      padding: 7px 14px;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;
      color: white;
    }

.auth-buttons-mob{
    text-align: center;
}

    .auth-buttons-mob a {
text-decoration: none;
      display: inline-block;
      padding: 7px 14px;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;
      color: white;
    }

    .login {
      background: linear-gradient(to bottom, #f90, #ff5e00);
    }

    .register {
      background: linear-gradient(to bottom, #00e600, #00cc00);
    }

    .social-icons {
      display: flex;
      gap: 10px;
    }

    .social-icons a {
      color: white;
      font-size: 16px;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #ffd700;
    }

    .burger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      cursor: pointer;
    }

    .burger span {
      height: 3px;
      background: white;
      border-radius: 2px;
      transition: 0.3s ease;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      background: rgba(0, 17, 29, 0.95);
      padding: 20px;
      gap: 15px;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      box-shadow: 0 4px 10px rgba(0,0,0,0.4);
      backdrop-filter: blur(4px);
      animation: slideFade 0.3s ease forwards;
    }

    @keyframes slideFade {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
    }

    .mobile-menu a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 15px;
    }

    .mobile-bonus a {
      display: block;
      background: linear-gradient(135deg, #ffd700, #ff8c00);
      color: #000;
      padding: 10px;
      border-radius: 6px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
    }

    .bonuses {
  background: #0b0f26;
  padding: 40px 20px;
  text-align: center;
}

.bonus-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.bonus-card {
  background: #04112f;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.bonus-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}

.bonus-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffd700;
}

.bonus-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #b0b7c3;
}

.bonus-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: linear-gradient(to right, #ffd700, #ffa500);
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.bonus-btn:hover {
  background: linear-gradient(to right, #ffcc00, #ff7f00);
  transform: translateY(-2px);
}

.bonus-wrapper h1 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px #ffffff;
}

.casino-block {
  margin: auto;
    text-align: center;
    max-width: 1100px;
    background: #00111d;
    padding: 40px 20px;
}

.casino-block h2 {
  color: #00e600;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.casino-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.casino-slider::-webkit-scrollbar {
  height: 6px;
}

.casino-slider::-webkit-scrollbar-thumb {
  background: #00cc00;
  border-radius: 3px;
}

.game-card {
  min-width: 150px;
  background: #04112f;
  border-radius: 8px;
  text-align: center;
  scroll-snap-align: start;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: scale(1.03);
}

.game-thumb {
  position: relative;
  overflow: hidden;
}

.game-thumb img {
  width: 100%;
  max-width: 200px;
  display: block;
  transition: all 0.4s ease;
}

.game-card:hover .game-thumb img {
  filter: brightness(0.4) blur(2px);
  transform: scale(1.05);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 2;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-overlay a {
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}

.play-btn {
  background: linear-gradient(to bottom, #00cc00, #009900);
}

.demo-btn {
  background: linear-gradient(to bottom, #ff3333, #cc0000);
}

.game-card p {
  color: white;
  font-size: 13px;
  padding: 8px;
  font-weight: bold;
  text-transform: uppercase;
}

.more-btn-wrap {
  text-align: center;
  margin-top: 20px;
}

.more-btn {
  display: inline-block;
  background: linear-gradient(to right, #ffd700, #ffa500);
  color: black;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.more-btn:hover {
  background: linear-gradient(to right, #ffcc00, #ff7f00);
}

main section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 15px;
  color: white;
  line-height: 1.6;
  background: #00111d;
}

main section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #00e600;
  text-transform: uppercase;
}

main section p {
  font-size: 16px;
  margin-bottom: 20px;
}

main section img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  /*max-height: 300px;*/
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

footer {
  background: #00111d;
  padding: 40px 20px 20px;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  border-top: 1px solid #002233;
    padding-top: 20px;
    justify-items: center;
}

.footer-top h4 {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-top ul li {
  margin-bottom: 8px;
}

.footer-top ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #b0b7c3;
  transition: color 0.3s ease;
}

.footer-top ul li a:hover {
  color: #00e600;
}

.footer-top ul li:first-child a {
  color: #00e600;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
  border-top: 1px solid #002233;
  padding-top: 20px;
}

.footer-bottom img {
  max-height: 50px;
  max-width: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
}

.footer-bottom img:hover {
  filter: none;
  opacity: 1;
}
.author-box {
  display: flex;
  align-items: center;
  background-color: #0B0F26;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.a
.author_name {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #f7f7f7;
}

.author-info p {
  margin: 0;
  color: #fefefe;
  font-size: 15px;
  line-height: 1.4;
}
.meta-date {
  color: #A9C4C5;
  font-size: 12px;
}
    @media (max-width: 768px) {
        main section h2{
            font-size: 20px;
            text-align: left;
        }
      .nav,
      .auth-buttons,
      .social-icons {
        display: none;
      }

      .burger {
        display: flex;
      }

      .mobile-menu.active {
        display: flex;
      }
    }