:root {
  /* Official Mostbet Palette */
  --mb-navy-bg: #071e3d;
  --mb-navy-dark: #031022;
  --mb-navy-surface: #0c2b54;
  --mb-card-white: #ffffff;

  --mb-orange-main: #ff5500;
  --mb-orange-hover: #e04b00;
  --mb-orange-glow: rgba(255, 85, 0, 0.35);

  --mb-blue-btn: #1b5bb3;
  --mb-blue-btn-hover: #154991;
  --mb-blue-cyan: #00a0ff;
  --mb-blue-soft: #f0f5fa;
  --mb-green-accent: #25b84c;

  --mb-text-main: #142a42;
  --mb-text-muted: #536b85;
  --mb-text-light: #ffffff;
  --mb-text-dim: #8fa7c2;

  --mb-border-subtle: #e1ecf7;
  --mb-border-dark: rgba(255, 255, 255, 0.08);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 50px;

  --container-max: 1040px;
  --font-main:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--mb-navy-bg);
  color: var(--mb-text-light);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: radial-gradient(
    circle at 50% 0%,
    #0d2e5c 0%,
    var(--mb-navy-bg) 75%
  );
  background-attachment: fixed;
}

.site-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Official Mostbet Header Bar */
.brand-header {
  background: var(--mb-navy-dark);
  border-bottom: 3px solid var(--mb-orange-main);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.brand-header-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-left-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--mb-text-light);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.brand-logo span {
  color: var(--mb-orange-main);
}

.brand-logo-star {
  color: var(--mb-orange-main);
  font-size: 1.3rem;
  margin: 0 2px;
}

/* Clickable Badge */
.brand-badge {
  background: rgba(37, 184, 76, 0.12);
  border: 1px solid var(--mb-green-accent);
  color: #40d968;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.brand-badge:hover {
  background: var(--mb-green-accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.header-nav-link {
  color: var(--mb-text-light);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.header-nav-link:hover,
.header-nav-link.active {
  color: var(--mb-orange-main);
}

.header-nav-link.aviator {
  color: #ff3366;
  font-style: italic;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-action {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.login-action {
  background: var(--mb-blue-btn);
  color: var(--mb-text-light);
}

.login-action:hover {
  background: var(--mb-blue-btn-hover);
}

.register-action {
  background: var(--mb-orange-main);
  color: var(--mb-text-light);
  box-shadow: 0 2px 10px var(--mb-orange-glow);
}

.register-action:hover {
  background: var(--mb-orange-hover);
  transform: translateY(-1px);
}
.section {
  width: calc(100% - 32px);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

body > .section:first-of-type {
  margin-top: 24px;
}

/* Clean White Cards (No AI Orange Stripes, No Glowing Border Shadow) */
.white-content-card {
  background: var(--mb-card-white);
  color: var(--mb-text-main);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  margin-bottom: 24px;
  border: 1px solid var(--mb-border-subtle);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
}

.hero-white-card {
  border: 1px solid var(--mb-border-subtle);
}

/* Headings - Clean without vertical stripes */
.general-h1 {
  color: var(--mb-text-main);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.general-h2 {
  color: var(--mb-text-main);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.general-h3 {
  color: var(--mb-navy-surface);
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 800;
  margin-top: 24px;
  margin-bottom: 12px;
}

.general-p {
  color: var(--mb-text-muted);
  font-size: 0.975rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

.general-p:last-child {
  margin-bottom: 0;
}

.seo-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0 20px;
  border: 1px solid var(--mb-border-subtle);
  border-radius: var(--radius-md);
}

.seo-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}

.seo-table th,
.seo-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--mb-border-subtle);
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}

.seo-table th {
  width: 34%;
  color: var(--mb-text-main);
  background: #edf4fc;
  font-weight: 800;
}

.seo-table thead th {
  width: auto;
  color: #fff;
  background: var(--mb-navy-surface);
}

.seo-table tr:last-child th,
.seo-table tr:last-child td {
  border-bottom: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 18px;
  color: var(--mb-text-muted);
  font-size: 0.82rem;
}

/* Centered CTA Button */
.cta-action {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff6a1a 0%, var(--mb-orange-main) 100%);
  color: var(--mb-text-light);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px var(--mb-orange-glow);
  margin: 24px auto 0 auto;
  width: fit-content;
  max-width: 100%;
  border: none;
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.cta-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 85, 0, 0.45);
}

/* Standard Structured Lists */
.general-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0 20px 0;
}

.general-list li {
  position: relative;
  padding: 12px 16px 12px 36px;
  background: var(--mb-blue-soft);
  border: 1px solid var(--mb-border-subtle);
  border-radius: var(--radius-sm);
  color: var(--mb-text-main);
  font-size: 0.95rem;
  font-weight: 600;
}

.general-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--mb-orange-main);
  transform: rotate(45deg);
}

/* Numbered Step Lists */
.step-list {
  counter-reset: step-count;
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0 20px 0;
}

.step-list li {
  counter-increment: step-count;
  position: relative;
  padding: 12px 16px 12px 48px;
  background: var(--mb-blue-soft);
  border-radius: var(--radius-sm);
  color: var(--mb-text-main);
  font-size: 0.95rem;
  font-weight: 600;
}

.step-list li::before {
  content: counter(step-count);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--mb-orange-main);
  color: var(--mb-text-light);
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
}

/* =========================================================
           SLOTS CATALOG & CARDS DESIGN (Sidebar removed, Cards styled)
           ========================================================= */
.games-rtp-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 16px;
  align-items: start;
}

.slot-card {
  background: #ffffff;
  border: 1px solid var(--mb-border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  position: relative;
  height: auto;
  min-height: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 160, 255, 0.12);
  border-color: var(--mb-blue-cyan);
}

.slot-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--mb-text-main);
  line-height: 1.35;
  width: 100%;
  text-align: center;
}

.slot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.slot-provider {
  background: #edf4fc;
  color: #2a5885;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #d4e5f7;
  text-align: center;
}

.slot-rtp-badge {
  background: rgba(37, 184, 76, 0.1);
  color: var(--mb-green-accent);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(37, 184, 76, 0.3);
  text-align: center;
}

.slot-tag {
  background: rgba(0, 160, 255, 0.1);
  color: var(--mb-blue-cyan);
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  width: fit-content;
}

/* Sports Betting Custom Layout */
.sportsbook-coupon-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 16px 0 20px 0;
}

.sportsbook-coupon-grid li {
  background: #ffffff;
  border: 1px solid var(--mb-border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--mb-text-main);
  font-size: 0.925rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* Bonus Card */
.bonus-modal-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px 28px;
  margin-bottom: 28px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid var(--mb-border-subtle);
}

.bonus-emblem {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, #ff6e1d 0%, var(--mb-orange-main) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--mb-orange-glow);
  border: 3px solid var(--mb-card-white);
}

.bonus-emblem-svg {
  width: 24px;
  height: 24px;
  fill: var(--mb-text-light);
}

.bonus-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff6a1a 0%, var(--mb-orange-main) 100%);
  color: var(--mb-text-light);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px var(--mb-orange-glow);
  margin-top: 12px;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.bonus-action:hover {
  transform: translateY(-2px);
}

/* FAQ Accordion Styling */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.faq-item {
  background: var(--mb-blue-soft);
  border: 1px solid var(--mb-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    border-color 0.2s,
    background-color 0.2s;
}

.faq-item[open] {
  border-color: var(--mb-orange-main);
  background: #ffffff;
}

.faq-question {
  padding: 14px 18px;
  font-weight: 800;
  font-size: 0.975rem;
  color: var(--mb-text-main);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
  color: var(--mb-orange-main);
  font-family: var(--font-mono);
  font-weight: 800;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 16px 18px;
  border-top: 1px solid var(--mb-border-subtle);
  padding-top: 12px;
}

.faq-answer p {
  color: var(--mb-text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* =========================================================
           POST-FAQ BANNER (Screen 5 Design)
           ========================================================= */
.banner-cta-card {
  background: linear-gradient(135deg, #005bb5 0%, #003b7a 100%);
  border-radius: var(--radius-lg);
  padding: 44px 20px;
  margin-top: 32px;
  margin-bottom: 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-logo {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.banner-logo span {
  color: var(--mb-orange-main);
}

.banner-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.banner-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #d0e4ff;
  margin-bottom: 24px;
  font-weight: 500;
}

.banner-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff6a1a 0%, var(--mb-orange-main) 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 20px var(--mb-orange-glow);
  letter-spacing: 0.04em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.banner-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 85, 0, 0.5);
}

.age-warning-footer {
  width: 100%;
  margin-top: auto;
  padding: 18px 16px;
  background: #030d1c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--mb-text-dim);
  text-align: center;
  font-size: 0.82rem;
}

/* Focus & Responsive */
:focus-visible {
  outline: 3px solid var(--mb-orange-main);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .header-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    width: calc(100% - 20px);
  }
  .white-content-card,
  .bonus-modal-card {
    padding: 20px 14px;
  }
  .bonus-action,
  .cta-action,
  .banner-action {
    width: 100%;
  }
}
