body {
  margin: 0;
  font-family: 'inter', Arial, sans-serif;
  background: #181f2f;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #071626;
position: relative;
  z-index: 5;
}
.header__logo {
  font-weight: 700;
  font-size: 26px;
  color: #fff;
}
.header__nav {
  display: flex;
  gap: 28px;
}
.header__nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
.header__nav a:hover {
  color: #ffe663;
}
.header__buttons {
  display: flex;
  gap: 12px;
}
.btn {
  display: inline-block;
  border-radius: 4px;
  padding: 8px 20px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: opacity .15s;
}
.btn--orange {
  background: linear-gradient(90deg, #fdbe28, #ff8900);
  color: #fff;
}
.btn--green {
  background: linear-gradient(90deg, #1de33e, #22b701 80%);
  color: #fff;
}
.btn--orange:hover, .btn--green:hover {
  opacity: 0.88;
}

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 21;
}
.burger span {
  display: block;
  width: 30px;
  height: 4px;
  background: #ffe663;
  border-radius: 2px;
}

/* Мобильное меню */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 0; right: 0;
  width: 80vw;
  max-width: 340px;
  height: 100vh;
  background: #101b2f;
  z-index: 100;
  padding: 34px 24px 22px 24px;
  gap: 22px;
  animation: slidein .24s;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu__close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 36px;
  color: #ffe663;
  cursor: pointer;
}
.mobile-menu a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  padding: 9px 0;
  border-bottom: 1px solid #253450;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu__buttons {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.mobile-menu__buttons .btn {
  width: 50%;
  text-align: center;
  font-size: 16px;
}

/* Оверлей */
.mobile-menu__overlay {
  display: none;
}
.mobile-menu__overlay.active {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(11,19,42,0.92);
  z-index: 90;
  animation: fadein .18s;
}

.header__logos {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__logo-img {
  height: 48px;
  width: auto;
}
.header__promo-img {
  height: 55px;
  width: auto;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.slides {
    display: flex;
    transition: 0.5s ease;
}
.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    color: white;
    text-align: center;
    padding: 60px 20px;
}
.slide:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(8px) brightness(0.4);
    z-index: -1;
}
.slide:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(8px) brightness(0.4);
    z-index: -1;
}
.slide:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(8px) brightness(0.4);
    z-index: -1;
}
.slide:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(8px) brightness(0.4);
    z-index: -1;
}
.slide:nth-child(5)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(8px) brightness(0.4);
    z-index: -1;
}
.slide h2 {
    margin: 0 0 10px;
}
.slide a {
    text-decoration: none;
    margin-top: 15px;
    padding: 7px 14px;
    background-color: #fdbe28;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.slide a:hover {
    background-color: #ff8900;
}
.nav-btn {
    width: 35px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}

.slide p{
    margin: 16px;
}

.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: #ffe663;
    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: #9b8100;
    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: #ffe663;
  }

.goxbet-footer {
  background: linear-gradient(90deg, #081228 65%, #ffe6630d 100%);
  color: #fff;
  padding: 46px 0 0 0;
  font-family: 'Manrope', Arial, sans-serif;
  margin-top: 64px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
  padding: 0 24px;
}
.footer-brand {
  flex: 1 1 250px;
  min-width: 200px;
}
.footer-logo {
  height: 50px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 18px #ffe66355);
}
.footer-brand p {
  color: #ffe663;
  font-size: 1.05rem;
  margin: 0 0 8px 0;
  font-weight: 600;
  line-height: 1.4;
}
.footer-links {
  flex: 1 1 180px;
  min-width: 180px;
}
.footer-links h4,
.footer-social h4 {
  font-size: 1.13rem;
  margin-bottom: 14px;
  color: #ffe663;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color .13s;
  font-size: 1.07rem;
  font-weight: 600;
}
.footer-links a:hover {
  color: #ffe663;
  text-shadow: 0 0 6px #ffe66355;
}
.footer-social {
  flex: 1 1 160px;
  min-width: 150px;
}
.footer-social__icons {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}
.footer-social__icons a {
  color: #ffe663;
  font-size: 2.1rem;
  transition: color .14s, transform .14s;
}
.footer-social__icons a:hover {
  color: #fff;
  transform: scale(1.13) rotate(-4deg);
}
.footer-bottom {
  border-top: 1.5px solid #ffe66344;
  text-align: center;
  padding: 18px 0 15px 0;
  margin-top: 28px;
  background: #081228;
  color: #ffe663cc;
  font-size: 1rem;
  letter-spacing: .01em;
}

main {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  padding: 0 14px;
}
.content {
  background: linear-gradient(110deg, #081228 72%, #ffe66309 100%);
  border-radius: 18px;
  box-shadow: 0 6px 30px #0005;
  padding: 38px 20px 30px 20px;
  color: #fff;
}
.content h2, h3 {
  color: #ffe663;
  margin-top: 0;
  font-weight: 800;
  letter-spacing: .03em;
  text-shadow: 0 2px 8px #ffe66322;
}
.content h2 { font-size: 2.1rem; margin-bottom: 22px; }
.content h3 { font-size: 1.3rem; margin-bottom: 10px; margin-top: 28px; }
.content p {
  font-size: 1.07rem;
  line-height: 1.68;
  margin-bottom: 18px;
}
.content ul {
  margin: 16px 0 22px 18px;
  padding: 0 0 0 16px;
  font-size: 1.05rem;
}
.content ul li {
  margin-bottom: 7px;
  color: #ffe663;
  font-weight: 600;
  list-style: disc inside;
}
.content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 11px;
  margin: 20px auto;
  box-shadow: 0 6px 24px #0003;
  background: #0d1522;
}
/* Горизонтальные картинки */
.content img[alt*="слоты"], img[alt*="banner"], img[alt*="payments"] {
  width: 100%;
  max-width: 900px;
  min-height: 140px;
}
/* Вертикальные картинки */
.content img[alt*="вертикальный"], img[alt*="vertical"] {
  width: 220px;
  min-width: 120px;
  max-width: 98vw;
  height: auto;
}

h1 {
  font-size: 2.5rem;
  margin: 38px auto 30px auto;
  text-align: center;
  color: #ffe663;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.16;
  text-shadow: 0 3px 20px #ffe66344, 0 2px 10px #0008;
  background: linear-gradient(90deg, #ffe663 70%, #fdbe28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Адаптив */
@media (max-width: 900px) {
    .footer-brand {
  flex: 1 1 0px;
  min-width: 200px;
}
  .header__nav, .header__buttons {
    display: none;
  }
  .burger {
    display: flex;
  }
    .footer-container {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
    padding: 0 12px;
  }
  .footer-logo { height: 38px; }
  .footer-brand, .footer-links, .footer-social { min-width: 0; }
  .footer-links, .footer-social { margin-bottom: 12px; }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu__overlay {
    display: none !important;
  }
}

  @media (max-width: 768px) {
    .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;
      }
    }

@media (max-width: 600px) {
  .header__logos { gap: 8px; }
    .content { padding: 13vw 4vw 7vw 4vw; border-radius: 10px; }
  .content h2 { font-size: 1.25rem; }
  .content h3 { font-size: 1rem; }
  .content ul { font-size: .97rem; }
  .content p { font-size: .98rem; }
  .content img { border-radius: 7px; }
    h1 {
    font-size: 1.33rem;
    margin: 22px 0 16px 0;
    text-shadow: 0 1px 7px #ffe66344, 0 1px 4px #0006;
  }
}


@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes slidein { from { right: -400px; } to { right: 0; } }