* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #edf7ff;
  color: #10233f;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 101, 179, 0.12), transparent 30%),
    radial-gradient(circle at 92% 9%, rgba(255, 126, 0, 0.13), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #eaf6ff 50%, #dff0ff 100%);
  z-index: -1;
}
header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 93, 170, 0.16);
  padding: 10px 18px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(20, 75, 130, 0.12);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.logo {
  width: 150px;
  min-height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, #0067bf 0%, #1287e8 58%, #ff7a00 100%);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.8),
    0 10px 22px rgba(0, 94, 170, 0.18);
}
.logo::before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 1px;
}
.logo img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cta-link,
.cta-soft {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff8a00, #ff6b00);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(255, 138, 0, 0.62);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.24);
}
.cta-link:hover,
.cta-soft:hover {
  background: linear-gradient(135deg, #ff9c1a, #f05f00);
}
.header-actions .cta-link {
  padding: 7px 13px;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.15;
  box-shadow: 0 5px 14px rgba(255, 122, 0, 0.18);
}
.header-actions .cta-link:first-child {
  background: #ffffff;
  color: #0067bf;
  border-color: rgba(0, 103, 191, 0.24);
  box-shadow: none;
}
.section {
  max-width: 1180px;
  margin: 22px auto;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 103, 191, 0.13);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(36, 102, 160, 0.12);
}
.hero {
  background: linear-gradient(135deg, #0067bf 0%, #0f84df 48%, #e8f7ff 100%);
  color: #ffffff;
  padding: 44px 28px;
  overflow: hidden;
  position: relative;
  border-color: rgba(0, 103, 191, 0.26);
}
.hero::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -86px;
  top: -96px;
  background: rgba(255, 138, 0, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(255, 138, 0, 0.16);
}
.hero::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -86px;
  bottom: -92px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}
h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.24;
}
h1 {
  font-size: 44px;
}
h2 {
  font-size: 30px;
  color: #0067bf;
}
h3 {
  font-size: 22px;
  color: #0a75c8;
}
.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: #f3faff;
  border: 1px solid rgba(0, 103, 191, 0.14);
  border-radius: 18px;
  padding: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(22, 93, 155, 0.08);
}
.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: #ff7a00;
}
.hero .badge {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.26);
}
.hero .badge .value {
  color: #ffffff;
}
.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, #ffffff 0%, #eef8ff 100%);
  border: 1px solid rgba(0, 103, 191, 0.14);
  box-shadow: 0 12px 28px rgba(27, 96, 154, 0.1);
  overflow: hidden;
}
.quick-panel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at right center,
    rgba(0, 120, 215, 0.13),
    transparent 42%
  );
  pointer-events: none;
}
.quick-panel-item.highlight {
  background: linear-gradient(135deg, #fff4e6, #ffffff 55%, #eaf7ff);
  border-color: rgba(255, 122, 0, 0.32);
}
.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: #12345c;
}
.quick-panel-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #2b4a6e;
}
.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: #e7f5ff;
  color: #0067bf;
  box-shadow: inset 0 0 0 1px rgba(0, 103, 191, 0.2);
}
.quick-panel-icon.sports {
  background: #eef8ff;
  color: #0a75c8;
  box-shadow: inset 0 0 0 1px rgba(0, 103, 191, 0.18);
}
.quick-panel-icon.aviator {
  background: #fff2e2;
  color: #ff7a00;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.28);
}
.quick-panel-icon.live {
  background: #e9f8f1;
  color: #008c5a;
  box-shadow: inset 0 0 0 1px rgba(0, 140, 90, 0.22);
}
.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: #ffffff;
  border: 1px solid rgba(0, 103, 191, 0.14);
}
.bonus-card.featured {
  background: linear-gradient(150deg, #ffffff, #eaf7ff 62%, #fff3e3);
  border: 2px solid #ff7a00;
  box-shadow:
    0 0 0 1px rgba(255, 122, 0, 0.14),
    0 16px 36px rgba(255, 122, 0, 0.08);
}
.bonus-card.vip {
  background: linear-gradient(150deg, #ffffff, #f3faff 58%, #e6f3ff);
  border: 2px solid #0067bf;
}
.bonus-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 8px;
  background: #0067bf;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.bonus-card.featured .bonus-label,
.bonus-card.vip .bonus-label {
  background: #ff7a00;
  color: #ffffff;
}
.bonus-title {
  margin: 0 0 8px;
  color: #12345c;
  font-size: 20px;
  font-weight: 900;
}
.bonus-amount {
  margin: 0 0 12px;
  color: #ff7a00;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}
.bonus-card > p:not(.bonus-amount) {
  color: #365474;
}
.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: #edf7ff;
  color: #31516f;
  font-size: 14px;
}
.bonus-detail span:last-child {
  color: #0f2f54;
  font-weight: 900;
  text-align: right;
}
.bonus-card .cta-link,
.bonus-card .cta-soft {
  width: 100%;
  margin-top: 4px;
}
.bonus-card .cta-soft {
  background: #ffffff;
  color: #ff7a00;
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
}
td {
  border: 1px solid rgba(0, 103, 191, 0.13);
  padding: 14px;
  vertical-align: top;
}
tr:first-child td {
  background: #0067bf;
  color: #ffffff;
  font-weight: 800;
}
tr:nth-child(even) td {
  background: #f1f8ff;
}
ul,
ol {
  margin: 12px 0 14px 22px;
  padding: 0;
}
li {
  margin-bottom: 8px;
}
.note {
  background: #fff4e6;
  border-left: 4px solid #ff7a00;
  padding: 16px;
  border-radius: 14px;
}
.faq-container {
  display: grid;
  gap: 12px;
}
.faq-item {
  position: relative;
  border: 1px solid rgba(0, 103, 191, 0.13);
  border-left: 4px solid #ff7a00;
  border-radius: 16px;
  padding: 16px 52px 16px 16px;
  background: #ffffff;
}
.faq-item .toggle {
  display: none;
}
.faq-question {
  margin-bottom: 0;
  color: #0067bf;
}
.icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff7a00;
  box-shadow: 0 0 18px rgba(255, 122, 0, 0.22);
}
.icon::before {
  content: "";
  position: absolute;
  background: #ffffff;
  left: 6px;
  right: 6px;
  top: 11px;
  height: 2px;
}
.faq-answer {
  display: block;
  margin-top: 12px;
}
footer {
  background: #ffffff;
  color: #173a63;
  border-top: 1px solid rgba(0, 103, 191, 0.16);
  margin-top: 34px;
  padding: 28px 20px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto 12px;
}
.footer-brand p {
  margin-bottom: 6px;
}
@media (max-width: 800px) {
  header {
    padding: 10px 12px;
  }
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .logo {
    margin: 0 auto;
  }
  .header-actions {
    flex-direction: column;
    width: 100%;
    gap: 7px;
  }
  .header-actions .cta-link {
    width: 100%;
    padding: 8px 12px;
  }
  .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;
  }
  .section {
    margin: 16px 12px;
    padding: 20px;
  }
}
