@import url('https://fonts.googleapis.com/css2?family=Pirata+One&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --brand-primary:     #D4A017;
  --brand-secondary:   #1A0F00;
  --brand-accent:      #2D8C2D;
  --brand-bg:          #120A00;
  --brand-text:        #F5E6C8;
  --brand-header-bg:   #0D0800;
  --brand-btn-bg:      #2D8C2D;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  6px;
  --brand-head-font:   'Pirata One', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-border:      1px solid #D4A01755;
  --brand-card-bg:     #1E1000;
  --brand-gold-glow:   0 0 12px rgba(212,160,23,0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #f0c040;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--brand-primary);
  color: #000;
  padding: 10px 18px;
  z-index: 99999;
  font-weight: 700;
  border-radius: 0 0 6px 0;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 2px solid var(--brand-primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.logo-text {
  font-family: var(--brand-head-font);
  font-size: 1.7rem;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(212,160,23,0.5);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--brand-btn-radius);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(212,160,23,0.12);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #D4A017 0%, #a87a10 100%);
  color: #1A0F00;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgba(212,160,23,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.55);
  color: #1A0F00;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 1.4rem;
  padding: 6px 12px;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  line-height: 1;
}

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #D4A017 0%, #a87a10 100%);
  color: #1A0F00;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212,160,23,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #f0c040;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.65);
  color: #1A0F00;
}

/* ─── HERO ─── */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 68px;
  background: linear-gradient(160deg, #1A0F00 0%, #120A00 40%, #0D1A0A 100%);
  border-bottom: 2px solid var(--brand-primary);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45,140,45,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(212,160,23,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero-pirate-art {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 95%;
  max-width: 55%;
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.18;
  pointer-events: none;
  filter: sepia(0.3) brightness(1.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 20px 60px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.15);
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(212,160,23,0.3);
}

.hero-content h1 span {
  color: var(--brand-text);
}

.hero-sub {
  font-size: 1.05rem;
  color: #d4c5a5;
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-bonus-box {
  display: inline-block;
  background: linear-gradient(135deg, rgba(45,140,45,0.2) 0%, rgba(212,160,23,0.15) 100%);
  border: 2px solid var(--brand-primary);
  border-radius: 10px;
  padding: 18px 28px;
  margin-bottom: 30px;
  box-shadow: var(--brand-gold-glow);
}

.hero-bonus-box .bonus-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #aaa;
  display: block;
  margin-bottom: 4px;
}

.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brand-primary);
  font-weight: 700;
  display: block;
  text-shadow: 0 0 15px rgba(212,160,23,0.4);
  line-height: 1.2;
}

.hero-bonus-box .bonus-terms {
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  letter-spacing: 0.5px;
  min-height: 44px;
}

.btn:focus {
  outline: 3px solid var(--brand-primary);
  outline-offset: 3px;
}

.btn-hero {
  background: linear-gradient(135deg, #D4A017 0%, #a87a10 100%);
  color: #1A0F00;
  font-size: 1.15rem;
  padding: 16px 42px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(212,160,23,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212,160,23,0.65);
  color: #1A0F00;
}

.btn-cta {
  background: linear-gradient(135deg, #2D8C2D 0%, #1e6b1e 100%);
  color: #ffffff;
  border-radius: 50px;
  box-shadow: 0 3px 14px rgba(45,140,45,0.4);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(45,140,45,0.55);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  border-radius: 50px;
}

.btn-outline:hover {
  background: rgba(212,160,23,0.1);
  transform: translateY(-2px);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #a09070;
}

.trust-item .trust-icon {
  font-size: 1rem;
  color: var(--brand-accent);
}

/* ─── SECTION BASE ─── */
.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, #160C00 0%, #1A0F00 100%);
}

.section-dark {
  background: #0D0800;
}

.section-bordered {
  border-top: 1px solid #D4A01730;
  border-bottom: 1px solid #D4A01730;
}

.section-title {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(212,160,23,0.2);
}

.section-subtitle {
  color: #b0a080;
  font-size: 0.95rem;
  margin-bottom: 40px;
  max-width: 640px;
  line-height: 1.7;
}

.ornament {
  display: inline-block;
  color: var(--brand-primary);
  font-size: 1.2rem;
  margin: 0 8px;
  opacity: 0.7;
}

/* ─── DECORATIVE BORDER BOX ─── */
.border-box {
  border: 1px solid #D4A01740;
  border-radius: 10px;
  padding: 28px;
  background: var(--brand-card-bg);
  position: relative;
}

.border-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 30px;
  width: 60px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
}

/* ─── FEATURE GRID (3-col) ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--brand-card-bg);
  border: 1px solid #D4A01740;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5), var(--brand-gold-glow);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-family: var(--brand-head-font);
  font-size: 1.15rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: #b0a080;
  line-height: 1.65;
}

/* ─── TWO-COLUMN LAYOUT ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col-wide {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.two-col-reverse {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

/* ─── BONUS SECTION ─── */
.bonus-card {
  background: linear-gradient(135deg, #1E1000 0%, #2D1A00 100%);
  border: 2px solid var(--brand-primary);
  border-radius: 14px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 0 30px rgba(212,160,23,0.15);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4A017, #f0c040, #D4A017);
}

.bonus-card .bonus-main-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--brand-primary);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(212,160,23,0.4);
  display: block;
}

.bonus-card .bonus-desc {
  font-size: 1rem;
  color: var(--brand-text);
  margin: 10px 0 6px;
}

.bonus-card .bonus-meta {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 20px;
}

.bonus-list {
  text-align: left;
  margin: 20px 0;
}

.bonus-list li {
  padding: 10px 0;
  border-bottom: 1px solid #D4A01720;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #d4c5a5;
}

.bonus-list li:last-child {
  border-bottom: none;
}

.bonus-list li .check {
  color: var(--brand-accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── GAMES SECTION ─── */
.games-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.game-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid #D4A01755;
  color: #b0a080;
  background: transparent;
  transition: all 0.2s;
}

.game-tab.active,
.game-tab:hover {
  background: var(--brand-primary);
  color: #1A0F00;
  border-color: var(--brand-primary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.game-card {
  background: var(--brand-card-bg);
  border: 1px solid #D4A01730;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  border-color: var(--brand-primary);
}

.game-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.game-thumb-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2D1A00 0%, #1E1000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.game-card-info {
  padding: 10px 12px 12px;
}

.game-card-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 0.72rem;
  color: #888;
}

/* ─── PAYMENTS SECTION ─── */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.payment-item {
  background: var(--brand-card-bg);
  border: 1px solid #D4A01740;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s;
}

.payment-item:hover {
  border-color: var(--brand-primary);
}

.payment-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.payment-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 4px;
}

.payment-speed {
  font-size: 0.75rem;
  color: var(--brand-accent);
}

/* ─── STATS ROW ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
  border: 1px solid #D4A01730;
  border-radius: 10px;
  background: var(--brand-card-bg);
}

.stat-value {
  font-family: var(--brand-head-font);
  font-size: 2.2rem;
  color: var(--brand-primary);
  font-weight: 700;
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: #888;
  margin-top: 4px;
  display: block;
}

/* ─── FAQ SECTION ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #D4A01740;
  border-radius: 8px;
  overflow: hidden;
  background: var(--brand-card-bg);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--brand-text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  min-height: 44px;
}

.faq-question:hover {
  background: rgba(212,160,23,0.06);
}

.faq-question:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: -2px;
}

.faq-arrow {
  color: var(--brand-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: #b0a080;
  line-height: 1.7;
  border-top: 1px solid #D4A01720;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ─── INFO PANEL ─── */
.info-panel {
  background: var(--brand-card-bg);
  border: 1px solid #D4A01740;
  border-radius: 10px;
  padding: 28px;
}

.info-panel h3 {
  font-family: var(--brand-head-font);
  font-size: 1.2rem;
  color: var(--brand-primary);
  margin-bottom: 16px;
}

.info-panel p {
  font-size: 0.88rem;
  color: #b0a080;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

/* ─── TABLE ─── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table th {
  background: rgba(212,160,23,0.12);
  color: var(--brand-primary);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid #D4A01740;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #D4A01720;
  color: #d4c5a5;
  vertical-align: top;
}

.data-table tr:hover td {
  background: rgba(212,160,23,0.04);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.badge-green {
  display: inline-block;
  background: rgba(45,140,45,0.15);
  color: #5adb5a;
  border: 1px solid rgba(45,140,45,0.4);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-gold {
  display: inline-block;
  background: rgba(212,160,23,0.15);
  color: var(--brand-primary);
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ─── RESPONSIBLE GAMING ─── */
.rg-strip {
  background: linear-gradient(90deg, #0D0800 0%, #160C00 50%, #0D0800 100%);
  border-top: 1px solid #D4A01730;
  border-bottom: 1px solid #D4A01730;
  padding: 28px 0;
}

.rg-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.rg-text h4 {
  font-family: var(--brand-head-font);
  color: var(--brand-primary);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.rg-text p {
  font-size: 0.82rem;
  color: #888;
}

.rg-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rg-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid #444;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ccc;
  min-height: 44px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #070400;
  border-top: 2px solid #D4A01740;
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #D4A01720;
}

.footer-brand p {
  font-size: 0.84rem;
  color: #888;
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--brand-head-font);
  font-size: 1.5rem;
  color: var(--brand-primary);
  font-weight: 700;
}

.footer-col h5 {
  font-family: var(--brand-head-font);
  color: var(--brand-primary);
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #D4A01730;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.84rem;
  color: #888;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--brand-primary);
}

.footer-security-row {
  padding: 24px 0;
  border-bottom: 1px solid #D4A01720;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #aaa;
  min-height: 44px;
  gap: 6px;
}

.security-badge .badge-icon {
  font-size: 1.1rem;
}

.payment-badges-row {
  padding: 20px 0;
  border-bottom: 1px solid #D4A01720;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid #333;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ccc;
  min-height: 36px;
  gap: 5px;
  white-space: nowrap;
}

.pay-badge .pay-icon {
  font-size: 1rem;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #555;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: #555;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--brand-primary);
}

.age-warning {
  text-align: center;
  padding: 14px;
  background: rgba(212,160,23,0.04);
  border-top: 1px solid #D4A01720;
  font-size: 0.75rem;
  color: #555;
  line-height: 1.6;
}

/* ─── LEGAL PAGES ─── */
.legal-hero {
  background: linear-gradient(180deg, #1A0F00 0%, #120A00 100%);
  padding: 48px 0 36px;
  margin-top: 68px;
  border-bottom: 1px solid #D4A01730;
}

.legal-hero h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.legal-hero p {
  font-size: 0.9rem;
  color: #888;
}

.legal-content {
  padding: 60px 0 72px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 1.4rem;
  color: var(--brand-primary);
  margin: 36px 0 14px;
  padding-top: 10px;
}

.legal-content h3 {
  font-size: 1.05rem;
  color: var(--brand-text);
  font-weight: 700;
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 0.9rem;
  color: #b0a080;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: #b0a080;
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-updated {
  display: inline-block;
  background: rgba(212,160,23,0.1);
  border: 1px solid #D4A01740;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--brand-primary);
  margin-bottom: 30px;
}

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.text-gold { color: var(--brand-primary); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-16 { gap: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

hr.divider {
  border: none;
  border-top: 1px solid #D4A01730;
  margin: 40px 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
    border-bottom: 2px solid var(--brand-primary);
    gap: 4px;
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    font-size: 0.95rem;
    border-bottom: 1px solid #D4A01720;
  }

  .header-cta-btn {
    display: none;
  }

  .hero-section {
    min-height: 60vh;
  }

  .hero-content {
    padding: 40px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .two-col-wide,
  .two-col-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payments-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .rg-inner {
    flex-direction: column;
    text-align: center;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 22px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-bonus-box {
    padding: 14px 18px;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 12px;
  }
}