@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --ps-red: #e4002b;
  --ps-red-dark: #b5001f;
  --ps-red-light: #ff1a42;
  --ps-gold: #f0b429;
  --ps-gold-dark: #c98f00;
  --ps-black: #0a0a0f;
  --ps-dark: #111118;
  --ps-dark2: #1a1a25;
  --ps-dark3: #22222f;
  --ps-dark4: #2c2c3a;
  --ps-gray: #3a3a4e;
  --ps-gray2: #5a5a72;
  --ps-gray3: #8888a0;
  --ps-light: #c8c8dc;
  --ps-white: #f0f0f8;
  --ps-border: rgba(255,255,255,0.08);
  --ps-border-red: rgba(228,0,43,0.3);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-red: 0 4px 32px rgba(228,0,43,0.25);
  --font-main: 'Inter', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--ps-black);
  color: var(--ps-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ps-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ps-gold-dark); }

img { display: none !important; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ps-red) 0%, var(--ps-red-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--ps-red-light) 0%, var(--ps-red) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 36px rgba(228,0,43,0.4);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--ps-gold) 0%, var(--ps-gold-dark) 100%);
  color: var(--ps-black);
  font-weight: 800;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ffd060 0%, var(--ps-gold) 100%);
  transform: translateY(-1px);
  color: var(--ps-black);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--ps-red);
  color: var(--ps-white);
}
.btn-outline:hover {
  background: var(--ps-red);
  color: #fff;
}

.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ─── TOPBAR BONUS BANNER ─── */
.topbar-banner {
  background: linear-gradient(90deg, var(--ps-red-dark) 0%, var(--ps-red) 50%, var(--ps-red-dark) 100%);
  padding: 10px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.topbar-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.03) 20px,
    rgba(255,255,255,0.03) 40px
  );
}
.topbar-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-banner__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.topbar-banner__text strong {
  color: var(--ps-gold);
  font-size: 1.15rem;
}

/* ─── HEADER / NAV ─── */
.site-header {
  background: var(--ps-dark);
  border-bottom: 1px solid var(--ps-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo-text span:last-child {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ps-red);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(160deg, var(--ps-dark) 0%, #0f0f1a 40%, #160010 100%);
  padding: 72px 20px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(228,0,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,180,41,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(228,0,43,0.15);
  border: 1px solid var(--ps-border-red);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ps-red-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--ps-red);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--ps-gray3);
  max-width: 640px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat__val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.hero-stat__val span { color: var(--ps-red); }
.hero-stat__label {
  font-size: 0.78rem;
  color: var(--ps-gray3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ─── OVERVIEW TABLE ─── */
.overview-section {
  padding: 64px 20px;
  background: var(--ps-dark);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.section-title span { color: var(--ps-red); }
.section-lead {
  color: var(--ps-gray3);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 700px;
  line-height: 1.7;
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ps-border);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.data-table th {
  background: var(--ps-dark3);
  color: var(--ps-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--ps-border);
}
.data-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--ps-border);
  font-size: 0.95rem;
  color: var(--ps-light);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.data-table td:first-child { color: var(--ps-gray3); font-weight: 500; }
.data-table td strong { color: #fff; font-weight: 600; }

/* ─── STEPS ─── */
.steps-section { padding: 64px 20px; background: var(--ps-black); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.step-card {
  background: var(--ps-dark2);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  transition: border-color 0.2s;
}
.step-card:hover { border-color: var(--ps-border-red); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--ps-red);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.step-desc { font-size: 0.9rem; color: var(--ps-gray3); line-height: 1.6; }

/* ─── GAMES SECTION ─── */
.games-section { padding: 64px 20px; background: var(--ps-dark); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.game-card {
  background: var(--ps-dark2);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.game-card:hover { transform: translateY(-3px); border-color: var(--ps-border-red); }
.game-card__icon {
  height: 80px;
  background: linear-gradient(135deg, var(--ps-dark3), var(--ps-dark4));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--ps-border);
}
.game-card__body { padding: 20px; }
.game-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.game-card__desc { font-size: 0.88rem; color: var(--ps-gray3); line-height: 1.6; margin-bottom: 16px; }

/* ─── PAYMENTS ─── */
.payments-section { padding: 64px 20px; background: var(--ps-black); }
.payment-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.pay-step {
  background: var(--ps-dark2);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.pay-step:hover { border-color: var(--ps-border-red); }
.pay-step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ps-red), var(--ps-red-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800; color: #fff;
  margin: 0 auto 12px;
}
.pay-step__title { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.pay-step__desc { font-size: 0.8rem; color: var(--ps-gray3); line-height: 1.5; }

/* ─── MOBILE SECTION ─── */
.mobile-section { padding: 64px 20px; background: var(--ps-dark); }
.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.mobile-card {
  background: var(--ps-dark2);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.mobile-card:hover { border-color: var(--ps-border-red); }
.mobile-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--ps-dark3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mobile-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700; color: #fff;
  margin-bottom: 10px;
}
.mobile-card__desc { font-size: 0.9rem; color: var(--ps-gray3); line-height: 1.65; margin-bottom: 20px; }

/* ─── BONUS STRIPE ─── */
.bonus-stripe {
  background: linear-gradient(100deg, #1a0008 0%, #2d0012 40%, #1a0008 100%);
  border-top: 1px solid var(--ps-border-red);
  border-bottom: 1px solid var(--ps-border-red);
  padding: 36px 20px;
  position: relative;
  overflow: hidden;
}
.bonus-stripe::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(228,0,43,0.12) 0%, transparent 70%);
}
.bonus-stripe__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.bonus-stripe__content { flex: 1; }
.bonus-stripe__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ps-red-light);
  margin-bottom: 6px;
}
.bonus-stripe__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.bonus-stripe__title span { color: var(--ps-gold); }
.bonus-stripe__sub {
  font-size: 0.85rem;
  color: var(--ps-gray3);
  margin-top: 6px;
}

/* ─── BONUSES ─── */
.bonuses-section { padding: 64px 20px; background: var(--ps-black); }
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.bonus-card {
  background: var(--ps-dark2);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.bonus-card:hover { border-color: var(--ps-border-red); transform: translateY(-2px); }
.bonus-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.6rem;
}
.bonus-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; color: #fff;
  margin-bottom: 8px;
}
.bonus-card__desc { font-size: 0.87rem; color: var(--ps-gray3); line-height: 1.6; margin-bottom: 16px; flex: 1; }

/* ─── VIP ─── */
.vip-section { padding: 64px 20px; background: var(--ps-dark); }
.vip-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.vip-tier {
  background: var(--ps-dark2);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: all 0.2s;
}
.vip-tier:hover { border-color: var(--ps-border-red); }
.vip-tier--featured {
  border-color: var(--ps-gold);
  background: linear-gradient(160deg, var(--ps-dark2), rgba(240,180,41,0.06));
}
.vip-tier__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 12px;
  font-size: 1.5rem;
}
.vip-tier__name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; color: #fff;
  margin-bottom: 8px;
}
.vip-tier__perks { font-size: 0.83rem; color: var(--ps-gray3); line-height: 1.6; }

/* ─── PROS / CONS ─── */
.proscons-section { padding: 64px 20px; background: var(--ps-black); }
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.pros-box, .cons-box {
  background: var(--ps-dark2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.pros-box { border: 1px solid rgba(34,197,94,0.25); }
.cons-box { border: 1px solid rgba(228,0,43,0.25); }
.pc-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 800;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.pros-box .pc-title { color: #22c55e; }
.cons-box .pc-title { color: var(--ps-red-light); }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ps-light);
  line-height: 1.5;
}
.pc-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  margin-top: 2px;
}
.pros-box .pc-list li::before {
  background: rgba(34,197,94,0.2);
  border: 1.5px solid #22c55e;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2322c55e' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.cons-box .pc-list li::before {
  background: rgba(228,0,43,0.15);
  border: 1.5px solid var(--ps-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23e4002b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── SUPPORT ─── */
.support-section { padding: 64px 20px; background: var(--ps-dark); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.support-card {
  background: var(--ps-dark2);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: border-color 0.2s;
}
.support-card:hover { border-color: var(--ps-border-red); }
.support-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--ps-dark3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.5rem;
}
.support-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; color: #fff;
  margin-bottom: 8px;
}
.support-card__desc { font-size: 0.88rem; color: var(--ps-gray3); line-height: 1.6; }

/* ─── REVIEW BODY ─── */
.review-section { padding: 64px 20px; background: var(--ps-black); }
.review-body {
  max-width: 840px;
  color: var(--ps-light);
  font-size: 1rem;
  line-height: 1.8;
}
.review-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700; color: #fff;
  margin: 36px 0 10px;
  letter-spacing: 0.1px;
}
.review-body h3:first-child { margin-top: 0; }
.review-body p { margin-bottom: 16px; color: var(--ps-gray3); }
.review-body p strong { color: var(--ps-white); font-weight: 600; }

/* ─── FAQ ─── */
.faq-section { padding: 64px 20px; background: var(--ps-dark); }
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; max-width: 840px; }
.faq-item {
  background: var(--ps-dark2);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--ps-border-red); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.97rem;
  font-weight: 600;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--ps-red-light); }
.faq-arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 2px solid var(--ps-gray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.faq-item.open .faq-arrow {
  background: var(--ps-red);
  border-color: var(--ps-red);
  transform: rotate(180deg);
}
.faq-arrow svg { pointer-events: none; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
  padding: 0 20px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 20px 18px;
}
.faq-a p { font-size: 0.9rem; color: var(--ps-gray3); line-height: 1.7; }

/* ─── RESPONSIBLE GAMBLING ─── */
.rg-section {
  padding: 40px 20px;
  background: var(--ps-dark);
  border-top: 1px solid var(--ps-border);
}
.rg-inner {
  max-width: 840px;
  background: var(--ps-dark2);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.rg-icon { flex-shrink: 0; font-size: 2rem; margin-top: 2px; }
.rg-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; color: var(--ps-gold);
  margin-bottom: 8px;
}
.rg-text { font-size: 0.87rem; color: var(--ps-gray3); line-height: 1.6; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ps-dark);
  border-top: 1px solid var(--ps-border);
  padding: 48px 20px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--ps-gray3); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  color: var(--ps-gray3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--ps-gray3);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--ps-white); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--ps-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--ps-gray2); }
.footer-badges {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.footer-badge {
  background: var(--ps-dark3);
  border: 1px solid var(--ps-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ps-gray3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── UTILITIES ─── */
.text-gold { color: var(--ps-gold); }
.text-red { color: var(--ps-red); }
.text-white { color: #fff; }
.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; }

.divider {
  height: 1px;
  background: var(--ps-border);
  margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .proscons-grid { grid-template-columns: 1fr; }
  .mobile-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .bonus-stripe__inner { flex-direction: column; text-align: center; }
  .hero { padding: 48px 20px 40px; }
  .hero-stats { gap: 20px; }
  .nav-actions .btn-outline { display: none; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .bonus-cards { grid-template-columns: 1fr; }
  .vip-tiers { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .payment-steps { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .rg-inner { flex-direction: column; }
}
