/* ================================================
   PLATINUM PLAY CASINO — STYLES
   Brand Palette:
   --pp-dark:      #0D1117  (deep near-black)
   --pp-dark-2:    #161C26  (section dark alt)
   --pp-gold:      #C9A84C  (platinum gold)
   --pp-gold-light:#F0D080  (highlight gold)
   --pp-accent:    #2563EB  (action blue)
   --pp-accent-2:  #1E40AF  (hover blue)
   --pp-text:      #E5E7EB  (primary text)
   --pp-text-muted:#9CA3AF  (secondary text)
   --pp-border:    #2A3448  (border/divider)
   --pp-green:     #10B981  (success/positive)
   ================================================ */

:root {
  --pp-dark:      #0D1117;
  --pp-dark-2:    #161C26;
  --pp-dark-3:    #1A2233;
  --pp-gold:      #C9A84C;
  --pp-gold-light:#F0D080;
  --pp-accent:    #2563EB;
  --pp-accent-2:  #1E40AF;
  --pp-text:      #E5E7EB;
  --pp-text-muted:#9CA3AF;
  --pp-border:    #2A3448;
  --pp-green:     #10B981;
  --pp-red:       #EF4444;
  --radius:       8px;
  --radius-lg:    14px;
  --transition:   0.22s ease;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--pp-dark);
  color: var(--pp-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a { color: var(--pp-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pp-gold-light); }

ul, ol { list-style: none; }

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

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

/* ============ LAYOUT ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section--dark {
  background: var(--pp-dark-2);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.3px;
}

.btn--primary {
  background: var(--pp-accent);
  color: #fff;
  border-color: var(--pp-accent);
}
.btn--primary:hover {
  background: var(--pp-accent-2);
  border-color: var(--pp-accent-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  color: #fff;
}

.btn--gold {
  background: linear-gradient(135deg, var(--pp-gold), var(--pp-gold-light));
  color: #1a1200;
  border-color: var(--pp-gold);
  font-weight: 800;
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--pp-gold-light), var(--pp-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  color: #0d0900;
}

.btn--outline {
  background: transparent;
  color: var(--pp-gold);
  border-color: var(--pp-gold);
}
.btn--outline:hover {
  background: var(--pp-gold);
  color: var(--pp-dark);
  transform: translateY(-2px);
}

.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.9rem; }
.btn--lg { padding: 0.9rem 2.2rem; font-size: 1.1rem; }
.btn--full { width: 100%; display: block; }

/* Pulse animation for hero CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(37,99,235,0); }
}
.btn--pulse { animation: pulse-glow 2s infinite; }

/* ============ BONUS BANNER TOP ============ */
.bonus-banner-top {
  background: linear-gradient(90deg, #0a0f1a 0%, #1a2a4a 40%, #0a0f1a 100%);
  border-bottom: 2px solid var(--pp-gold);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.bonus-banner-top__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bonus-banner-top__text {
  font-size: 0.97rem;
  color: var(--pp-text);
  text-align: center;
}

.bonus-banner-top__tag {
  background: var(--pp-gold);
  color: #1a1200;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============ SITE HEADER ============ */
.site-header {
  background: var(--pp-dark-3);
  border-bottom: 1px solid var(--pp-border);
  padding: 0.8rem 0;
  position: sticky;
  top: 52px; /* height of bonus banner */
  z-index: 900;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo { display: inline-block; }
.site-logo svg { height: 52px; width: auto; }

.site-nav ul {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--pp-text-muted);
  font-size: 0.9rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  display: block;
}

.site-nav a:hover {
  background: var(--pp-border);
  color: var(--pp-gold);
}

/* ============ STRIPE BANNER ============ */
.stripe-banner {
  background: linear-gradient(90deg, var(--pp-gold) 0%, var(--pp-gold-light) 50%, var(--pp-gold) 100%);
  padding: 0.9rem 0;
}

.stripe-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.stripe-banner p {
  color: #1a1200;
  font-size: 0.97rem;
  margin: 0;
  font-weight: 600;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a2233 40%, #0d1525 100%);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--pp-border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--pp-gold);
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--pp-text-muted);
  max-width: 600px;
  margin-bottom: 1.8rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero__badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--pp-dark-3);
  border: 1px solid var(--pp-border);
  color: var(--pp-text-muted);
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

/* SCORECARD */
.scorecard {
  background: var(--pp-dark-3);
  border: 1px solid var(--pp-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  min-width: 240px;
  box-shadow: var(--shadow);
  text-align: center;
}

.scorecard__title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pp-text-muted);
  margin-bottom: 0.4rem;
}

.scorecard__score {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--pp-gold);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 1rem;
}

.scorecard__score span {
  font-size: 1.2rem;
  color: var(--pp-text-muted);
}

.scorecard__list {
  list-style: none;
  margin-bottom: 1.2rem;
  text-align: left;
}

.scorecard__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--pp-border);
  font-size: 0.87rem;
}

.stars { color: var(--pp-gold); font-size: 0.8rem; }

/* ============ BONUS CARDS ============ */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.bonus-card {
  background: var(--pp-dark-3);
  border: 1px solid var(--pp-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.15);
  border-color: var(--pp-gold);
}

.bonus-card__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.bonus-card__value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pp-gold);
  margin: 0.5rem 0 0.75rem;
  font-family: Georgia, serif;
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--pp-text-muted);
  margin-bottom: 1rem;
}

/* ============ PROMO LIST ============ */
.promo-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.promo-item {
  background: var(--pp-dark-3);
  border-left: 3px solid var(--pp-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: 0.93rem;
}

/* ============ CALLOUTS ============ */
.callout {
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.callout--gold {
  background: rgba(201,168,76,0.1);
  border-left: 4px solid var(--pp-gold);
}

.callout--blue {
  background: rgba(37,99,235,0.1);
  border-left: 4px solid var(--pp-accent);
}

.callout--green {
  background: rgba(16,185,129,0.1);
  border-left: 4px solid var(--pp-green);
}

/* ============ GAMES GRID ============ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.game-cat {
  background: var(--pp-dark-2);
  border: 1px solid var(--pp-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.game-cat:hover {
  border-color: var(--pp-gold);
  transform: translateY(-3px);
}

.game-cat__icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.game-cat p { font-size: 0.9rem; color: var(--pp-text-muted); margin: 0; }

.provider-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
  list-style: none;
}

.provider-list li {
  background: var(--pp-dark-3);
  border: 1px solid var(--pp-border);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
  color: var(--pp-gold);
}

/* ============ STEPS ============ */
.steps { margin: 2rem 0; }

.step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 52px;
  width: 2px;
  height: calc(100% + 0.5rem);
  background: var(--pp-border);
}

.step:last-child::before { display: none; }

.step__num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pp-gold), var(--pp-gold-light));
  color: #1a1200;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(201,168,76,0.35);
}

.step__body h3 { margin-bottom: 0.3rem; }
.step__body p { font-size: 0.93rem; color: var(--pp-text-muted); margin: 0; }

/* ============ PAYMENTS TABLE ============ */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; }

.payments-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  white-space: nowrap;
}

.payments-table th {
  background: var(--pp-dark-3);
  color: var(--pp-gold);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--pp-gold);
  font-size: 0.83rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.payments-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--pp-border);
  color: var(--pp-text);
}

.payments-table tr:hover td { background: rgba(255,255,255,0.03); }

/* ============ MOBILE FEATURES ============ */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.mobile-feat {
  background: var(--pp-dark-3);
  border: 1px solid var(--pp-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.mobile-feat__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.mobile-feat h3 { margin-bottom: 0.4rem; }
.mobile-feat p { font-size: 0.9rem; color: var(--pp-text-muted); margin: 0; }

/* ============ SECURITY GRID ============ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-item {
  background: var(--pp-dark-3);
  border: 1px solid var(--pp-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.security-item__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.security-item p { font-size: 0.9rem; color: var(--pp-text-muted); margin: 0; }

/* ============ SUPPORT CHANNELS ============ */
.support-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.support-ch {
  background: var(--pp-dark-3);
  border: 1px solid var(--pp-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.support-ch__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.support-ch p { font-size: 0.88rem; color: var(--pp-text-muted); }

/* ============ PROS & CONS ============ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.pros, .cons {
  background: var(--pp-dark-3);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--pp-border);
}

.pros { border-top: 3px solid var(--pp-green); }
.cons { border-top: 3px solid var(--pp-red); }

.pros h3 { color: var(--pp-green); }
.cons h3 { color: var(--pp-red); }

.pros ul li, .cons ul li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--pp-border);
  font-size: 0.93rem;
  color: var(--pp-text);
  display: block;
}

.pros ul li:last-child, .cons ul li:last-child { border-bottom: none; }
.pros ul li::before { content: '✅ '; }
.cons ul li::before { content: '❌ '; }

/* ============ FAQ ============ */
.faq-list { margin-top: 1.5rem; }

.faq-item {
  border: 1px solid var(--pp-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--pp-text);
  background: var(--pp-dark-3);
  list-style: none;
  transition: background var(--transition);
}

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

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--pp-gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] > .faq-q::after { transform: rotate(45deg); }

.faq-item[open] > .faq-q { background: var(--pp-dark-2); color: var(--pp-gold); }

.faq-a {
  padding: 1rem 1.25rem 1.25rem;
  background: var(--pp-dark-2);
  font-size: 0.93rem;
  color: var(--pp-text-muted);
}

.faq-a p { margin: 0; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, #0d1117, #1a2a4a);
  text-align: center;
  border-top: 1px solid var(--pp-border);
}

.cta-section__inner { max-width: 700px; }

.cta-section h2 { margin-bottom: 1rem; }

.cta-section p {
  font-size: 1.05rem;
  color: var(--pp-text-muted);
  margin-bottom: 2rem;
}

.cta-section__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cta-section__note {
  font-size: 0.78rem;
  color: var(--pp-text-muted);
  margin: 0;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #08090d;
  border-top: 1px solid var(--pp-border);
  padding-top: 3.5rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.site-footer__brand p {
  font-size: 0.85rem;
  color: var(--pp-text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

.site-footer__nav h3,
.site-footer__info h3 {
  color: var(--pp-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.site-footer__nav ul li { margin-bottom: 0.4rem; }
.site-footer__nav a { color: var(--pp-text-muted); font-size: 0.88rem; }
.site-footer__nav a:hover { color: var(--pp-gold); }

.site-footer__info p {
  font-size: 0.85rem;
  color: var(--pp-text-muted);
  margin-bottom: 0.75rem;
}

.rg-links { list-style: none; margin-bottom: 1rem; }
.rg-links li { margin-bottom: 0.35rem; }
.rg-links a { font-size: 0.85rem; color: var(--pp-text-muted); }
.rg-links a:hover { color: var(--pp-gold); }

.rg-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.rg-badge {
  background: var(--pp-dark-3);
  border: 1px solid var(--pp-border);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  color: var(--pp-text-muted);
}

.site-footer__bottom {
  border-top: 1px solid var(--pp-border);
  padding: 1.25rem 0;
  text-align: center;
}

.site-footer__bottom p {
  font-size: 0.8rem;
  color: var(--pp-text-muted);
  margin: 0;
}

/* ============ RESPONSIVE ============ */

/* Tablet: max 1024px */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .scorecard {
    max-width: 400px;
    margin: 0 auto;
  }
  .bonus-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-channels {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

/* Mobile: max 768px */
@media (max-width: 768px) {
  .section { padding: 2.5rem 0; }

  .site-header { top: 68px; }

  .site-header__inner { flex-wrap: wrap; gap: 0.75rem; }

  .site-nav { order: 3; width: 100%; }
  .site-nav ul { justify-content: center; gap: 0.25rem; }
  .site-nav a { font-size: 0.82rem; padding: 0.3rem 0.5rem; }

  .hero { padding: 2.5rem 0 2rem; }

  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; text-align: center; }

  .bonus-banner-top__inner { flex-direction: column; gap: 0.75rem; }
  .bonus-banner-top { top: 0; }
  .site-header { top: auto; position: static; }
  .stripe-banner__inner { flex-direction: column; gap: 0.75rem; }

  .bonus-cards { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .mobile-features { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .support-channels { grid-template-columns: 1fr; }
  .promo-list { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-section__buttons { flex-direction: column; align-items: stretch; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
}

/* Small Mobile: max 480px */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .step { flex-direction: column; gap: 0.5rem; }
  .step::before { display: none; }
  .scorecard { min-width: unset; }
  .site-logo svg { height: 40px; }
}