* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #07090d;
  color: #edf2fb;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 38, 61, 0.16), transparent 28%),
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 210, 46, 0.1),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(20, 5, 8, 0.98), rgba(7, 9, 13, 1));
  z-index: -1;
}
header {
  background: #10060a;
  border-bottom: 1px solid rgba(255, 48, 71, 0.5);
  padding: 10px 18px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.logo {
  width: 138px;
  min-height: 40px;
  position: relative;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cta-link,
.cta-alt {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f01833, #b80f25);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  border: 1px solid rgba(255, 92, 111, 0.55);
  box-shadow: 0 8px 20px rgba(240, 24, 51, 0.24);
}
.cta-link:hover,
.cta-alt:hover {
  background: linear-gradient(135deg, #ff2944, #cd152d);
}
.header-actions .cta-link {
  padding: 7px 13px;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.15;
  box-shadow: 0 5px 14px rgba(240, 24, 51, 0.2);
}
.header-actions .cta-link:first-child,
.cta-link.log  {
  background: #211116;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}


.section {
  max-width: 1180px;
  margin: 22px auto;
  padding: 28px;
  background: #11151f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}
.hero {
  background: linear-gradient(
    135deg,
    rgba(230, 25, 49, 0.95),
    rgba(83, 11, 21, 0.98) 50%,
    rgba(14, 9, 13, 0.98)
  );
  color: #ffffff;
  padding: 44px 28px;
  overflow: hidden;
  position: relative;
  border-color: rgba(255, 82, 101, 0.4);
}
.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -80px;
  top: -90px;
  background: rgba(255, 210, 46, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(255, 210, 46, 0.15);
}
.hero::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -90px;
  background: rgba(0, 0, 0, 0.24);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
}
h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.24;
}
h1 {
  font-size: 44px;
}
h2 {
  font-size: 30px;
  color: #ff4358;
}
h3 {
  font-size: 22px;
  color: #ffd52f;
}
.hero h1,
.hero h2 {
  color: #ffffff;
}
p {
  margin: 0 0 14px;
}
.hero-badges,
.card-grid,
.steps-grid,
.bonus-grid,
.quick-panel-grid,
.rating-grid {
  display: grid;
  gap: 16px;
}
.hero-badges {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
}
.badge,
.card,
.step-card,
.bonus-card,
.rating-card {
  background: #171b26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 26px rgba(0, 0, 0, 0.22);
}
.badge p,
.card p,
.step-card p,
.bonus-card p,
.rating-card p {
  margin-bottom: 8px;
}
.badge .value,
.card .value,
.step-card .value,
.rating-card .value {
  font-size: 24px;
  font-weight: 900;
  color: #ffd52f;
}
.hero .badge {
  background: rgba(12, 12, 17, 0.4);
  border-color: rgba(255, 255, 255, 0.14);
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rating-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.quick-panel-section {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.quick-panel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.quick-panel-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0c131f 0%, #0a1019 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.quick-panel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at right center,
    rgba(230, 25, 49, 0.16),
    transparent 42%
  );
  pointer-events: none;
}
.quick-panel-item.highlight {
  background: linear-gradient(
    135deg,
    rgba(54, 17, 23, 0.98),
    rgba(22, 14, 18, 0.98)
  );
}
.quick-panel-text {
  position: relative;
  z-index: 1;
}
.quick-panel-title {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
  color: #ffffff;
}
.quick-panel-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #eef2f8;
}
.quick-panel-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
}
.quick-panel-icon.casino {
  background: radial-gradient(
    circle,
    rgba(255, 93, 116, 0.22),
    rgba(28, 8, 13, 0.9)
  );
  color: #ff4a62;
  box-shadow:
    inset 0 0 0 1px rgba(255, 74, 98, 0.34),
    0 0 18px rgba(240, 24, 51, 0.18);
}
.quick-panel-icon.sports {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    rgba(12, 15, 21, 0.92)
  );
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 18px rgba(255, 255, 255, 0.1);
}
.quick-panel-icon.luckyjet {
  background: radial-gradient(
    circle,
    rgba(179, 110, 255, 0.24),
    rgba(15, 12, 24, 0.92)
  );
  color: #cc80ff;
  box-shadow:
    inset 0 0 0 1px rgba(204, 128, 255, 0.3),
    0 0 18px rgba(179, 110, 255, 0.16);
}
.quick-panel-icon.aviator {
  background: radial-gradient(
    circle,
    rgba(255, 67, 88, 0.24),
    rgba(22, 10, 15, 0.94)
  );
  color: #ff4258;
  box-shadow:
    inset 0 0 0 1px rgba(255, 67, 88, 0.32),
    0 0 18px rgba(255, 67, 88, 0.16);
}
.bonus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bonus-card {
  min-height: 378px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #121418;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bonus-card.featured {
  background: linear-gradient(
    150deg,
    rgba(66, 17, 20, 0.96),
    rgba(34, 13, 16, 0.98)
  );
  border: 2px solid #f1241e;
  box-shadow:
    0 0 0 1px rgba(241, 36, 30, 0.16),
    0 16px 36px rgba(241, 36, 30, 0.1);
}
.bonus-card.vip {
  background: linear-gradient(
    150deg,
    rgba(40, 37, 11, 0.96),
    rgba(19, 18, 14, 0.98)
  );
  border: 2px solid #ffd400;
}
.bonus-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 8px;
  background: #e61931;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.bonus-card.vip .bonus-label {
  background: #ffd400;
  color: #140b0d;
}
.bonus-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}
.bonus-amount {
  margin: 0 0 12px;
  color: #ff252f;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}
.bonus-card.vip .bonus-amount {
  color: #ffd52f;
}
.bonus-card > p:not(.bonus-amount) {
  color: #c9ced8;
}
.bonus-details {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.bonus-detail {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  color: #d9dde7;
  font-size: 14px;
}
.bonus-detail span:last-child {
  color: #ffffff;
  font-weight: 900;
  text-align: right;
}
.bonus-card .cta-link,
.bonus-card .cta-alt {
  width: 100%;
  margin-top: 4px;
}
.bonus-card .cta-alt {
  background: rgba(230, 25, 49, 0.12);
  color: #ff465b;
  border-color: #ff2532;
  box-shadow: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 16px;
  background: #151a24;
}
td {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  vertical-align: top;
}
tr:first-child td {
  background: #e61931;
  color: #ffffff;
  font-weight: 800;
}
tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}
ul,
ol {
  margin: 12px 0 14px 22px;
  padding: 0;
}
li {
  margin-bottom: 8px;
}
.note {
  background: rgba(230, 25, 49, 0.1);
  border-left: 4px solid #e61931;
  padding: 16px;
  border-radius: 14px;
}
.faq-container {
  display: grid;
  gap: 12px;
}
.faq-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #e61931;
  border-radius: 16px;
  padding: 16px 52px 16px 16px;
  background: #171b26;
}
.faq-item .toggle {
  display: none;
}
.faq-question {
  margin-bottom: 0;
  color: #ffd52f;
}
.icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e61931;
  box-shadow: 0 0 18px rgba(230, 25, 49, 0.32);
}
.icon::before {
  content: "";
  position: absolute;
  background: #ffffff;
  left: 6px;
  right: 6px;
  top: 11px;
  height: 2px;
}
.faq-answer {
  display: block;
  margin-top: 12px;
}
.footer {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 16px auto 0;
  padding: 24px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  border-top: 1px solid rgba(230, 25, 49, 0.61);
background: #090A0E;
  justify-content: center;
  align-items: center;
}

.footer * {
  box-sizing: border-box;
}


.footer__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 1200px;
  width: 98%;
}

.footer__payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 7px 46px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #171B26;
}

.footer__payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__payment-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.footer__payment-label-accent {
  color: #1a9e56;
}

.footer__disclaimer {
color: #FFF;
text-align: center;
font-family: Arial;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; 
}

.footer__copyright {
color: #FFF;
text-align: center;
font-family: Arial;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; 
}

.footer-block-btn {
    z-index: 5;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    height: 101px;
    padding: 5px 12px;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    display: none;
    justify-content: center;
    align-items: center;
    background: #0D060A;
}

.footer-block-btn .buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 900px) {
  .footer__payments {
    gap: 10px;
  }

  .footer__payment {
    height: 42px;
    padding: 0 16px;
  }

}


@media (max-width: 560px) {
  .footer {
    padding: 18px;
  }

  .footer__payments {
    justify-content: center;
  }

  .footer__payment {
    flex: 1 1 calc(50% - 10px);
  }

  .footer__disclaimer {
    text-align: center;
  }
        .footer-block-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header-actions {
        display: none;
    }
}
@media (max-width: 800px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  header {
    width: 100%;
    padding: 10px 0;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .logo {
    width: 100%;
    max-width: 138px;
    margin: 0 auto;
  }

  .header-actions {
    width: 100%;
    gap: 7px;
  }

  .header-actions .cta-link {
    width: 100%;
    padding: 8px 12px;
  }

  .section {
    width: auto;
    max-width: 100%;
    margin: 16px 12px;
    padding: 20px 16px;
  }

  table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .hero-badges,
  .card-grid,
  .steps-grid,
  .bonus-grid,
  .quick-panel-grid,
  .rating-grid {
    grid-template-columns: 1fr;
  }

  .quick-panel-item {
    min-height: 82px;
    padding: 16px 18px;
  }

  .quick-panel-title {
    font-size: 18px;
  }

  .quick-panel-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    font-size: 28px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 25px;
  }
}
/* Banner */

.banner-wrapper {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  width: 98%;
  max-width: 1177px;
  min-height: 283px;
  margin:22px auto;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(90deg, #00614C 33.61%, #00A481 100%);
  box-shadow: 0 0 15.1px 0 rgba(255, 241, 92, 0.32);

}

.banner__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  position: relative;
  max-width: 55%;
}

.banner__title {
color: #FFF;
font-family: Arial;
font-size: 28px;
font-style: normal;
font-weight: 900;
line-height: 48px; 
margin-bottom: 18px;
}

.banner__bonus {
  display: table;
  margin: 0 0 15px;
  font-family: Calistoga, "Segoe UI", serif;
  font-size: 65px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  text-shadow: 0 0 4.5px rgba(0, 12, 146, 0.16);
  background: linear-gradient(90deg, #FFF600 0.16%, #FFFA6B 19.03%, #FFF31D 31.38%, #FFF8AF 41.16%, #FFF15C 46.52%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.banner__bonus-percent {
  font-weight: 800;
}

.banner__subtitle {
color: #FFF;
font-family: Arial;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 27px;
margin-bottom: 20px;
}

.banner-wrapper button {
    display: flex;
    justify-content: space-between;
    align-items: center;
color: #FFF;
text-align: center;
font-family: Arial;
font-size: 18px;
font-style: normal;
font-weight: 900;
line-height: normal;
text-transform: uppercase;
border-radius: 40px;
background: linear-gradient(90deg, #D50000 0%, #EA0004 100%);
box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.30);
padding: 3px 3px 3px 32px;
width: 100%;
max-width: 242px;
    border: none;
    cursor: pointer;
}

.banner-wrapper button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(225, 14, 14, 0.48);
}

.banner__cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.banner__cta-text {
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 800;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.banner__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #e10e0e;
}

.banner__image {
 background: url(/banner-main.webp) no-repeat;
 background-position: center;
 position: absolute;
 width: 600px;
 height: 335px;
 bottom: -20%;
 right: 0;
 background-size: contain;
}
@media (max-width: 940px) {
    .banner {
        height: 256px;
        padding: 20px 16px 20px 16px;
        min-height: unset;
    }
    .banner__image {
        right: -12%;
        bottom: -8%;
        height: 273px;
        width: 488px;
    }
    .banner__title {
        font-size: 27px;
        margin-bottom: 12px;
    }
    .banner__bonus {
        font-size: 55px;
        margin: 0 0 10px;
    }
}

@media (max-width: 700px) {
    .banner__image {
        right: -30%;
    }
    .banner__content {
        max-width: 65%;
    }
}

@media (max-width: 600px) {
  .banner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 416px;
  }

  .banner__content {
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }

  .banner__bonus {
    font-size: 48px;
  }

  .banner__title {
    margin-bottom: 6px;
  }

  .banner__cta {
    width: 100%;
    justify-content: space-between;
    margin-top: 4px;
  }

  .banner__image {
    bottom: -10%;
    right:  -10%;
    width: 368px;
    height: 177px;
  }
}

.games {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 24px;
  background: #16151c;
  border: 1px solid #2a2a34;
  border-radius: 20px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.games * {
  box-sizing: border-box;
}

.games__title {
color: #FFF;
font-family: Arial;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: 37.2px; 
}


.games__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.games__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px 5px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #B9182B;
    box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.22);
}

.games__item-name {
color: #FFF;
font-family: Arial;
font-size: 23px;
font-style: normal;
font-weight: 900;
line-height: 23px;
}

.games__item-icon {
  border-radius: 14px;
    border: 1px solid #FF7272;
    background: #1A050A;
    padding: 5px;
}


.games__download {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 10px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(35, 39, 48, 0.37);
}

.games__download-title {
color: #FFF;
font-family: Arial;
font-size: 22px;
font-style: normal;
font-weight: 900;
line-height: 38.4px;
}

.games__download-buttons {
  display: flex;
  gap: 10px;
}

.games__download-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 148px;
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff97a, #ffe600);
  text-decoration: none;
    cursor: pointer;
}

.games__download-btn-text {
color: #212121;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 110%; 
}

.games__download-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width:53px;
  height: 33px;
  border-radius: 10px;
  background: #222;
  color: #ffe600;
  border: 1px solid #FFF600;

}

.games__download-btn:hover {
    opacity: 0.8;
}


@media (max-width: 900px) {
  .games__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .games__download {
    justify-content: space-between;
  }
}


@media (max-width: 560px) {
  .games {
    padding: 18px;
    border-radius: 16px;
  }

  .games__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .games__item {
    height: 58px;
  }

  .games__download {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .games__download-title {
    text-align: center;
  }

  .games__download-buttons {
    flex-direction: column;
    width: 100%;
  }

  .games__download-btn {
    width: 100%;
    min-width: 0;
  }
}