/*
 * Penalty Duel with Julio Cesar — Landing Bundle
 * penaltyduelgame.net
 * CSS prefix: .pd-
 * Visual: Rio Beach Bright — casual sports, daylight, outdoor
 * Fonts: Montserrat (headings) + Open Sans (body)
 * Breakpoints: 360 / 520 / 768 / 1024 / 1280 / 1920
 */

/* ============================================================
   0. CUSTOM PROPERTIES
   ============================================================ */

:root {
  --pd-sky:           #5BB8F5;
  --pd-sky-deep:      #2E86DE;
  --pd-sky-darkest:   #1565C0;
  --pd-sky-deepest:   #0D47A1;
  --pd-sand-warm:     #E8C47A;
  --pd-sand-light:    #F5DEB3;
  --pd-goal-gold:     #FFC107;
  --pd-goal-dark:     #F57F17;
  --pd-green:         #2E7D32;
  --pd-green-bright:  #4CAF50;
  --pd-br-yellow:     #FFD700;
  --pd-br-green:      #009C3B;
  --pd-chance-orange: #FF9800;
  --pd-text-dark:     #1A1A2E;
  --pd-text-mid:      #455A64;
  --pd-white:         #FFFFFF;
  --pd-bg-section:    #F0F7FF;
  --pd-bg-alt:        #EBF5FB;

  --pd-radius-sm: 6px;
  --pd-radius-md: 12px;
  --pd-radius-lg: 20px;
  --pd-shadow-card: 0 4px 20px rgba(43, 134, 222, 0.15);
  --pd-shadow-hover: 0 8px 32px rgba(43, 134, 222, 0.25);

  --pd-font-head: 'Montserrat', sans-serif;
  --pd-font-body: 'Open Sans', sans-serif;
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */

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

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

body {
  font-family: var(--pd-font-body);
  color: var(--pd-text-dark);
  background: var(--pd-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--pd-sky-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.5em;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--pd-font-head);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1em;
}

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

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */

.pd-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .pd-container {
    padding: 0 2rem;
  }
}

.pd-section {
  padding: 3.5rem 0;
}

.pd-section--alt {
  background: var(--pd-bg-section);
}

.pd-section--sand {
  background: linear-gradient(135deg, var(--pd-sand-light) 0%, var(--pd-bg-alt) 100%);
}

/* ============================================================
   4. NAV / HEADER
   ============================================================ */

.pd-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 101, 192, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--pd-goal-gold);
}

.pd-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 56px;
}

.pd-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.pd-nav__logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.pd-nav__brand-text {
  font-family: var(--pd-font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--pd-white);
  line-height: 1.1;
}

.pd-nav__brand-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--pd-goal-gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pd-nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pd-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--pd-br-green);
  color: var(--pd-white);
  font-family: var(--pd-font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: var(--pd-radius-lg);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.pd-nav__cta:hover {
  background: var(--pd-green);
  text-decoration: none;
}

/* Language switcher — pill list (desktop) */
.pd-lang-pills {
  display: flex;
  gap: 0.3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-lang-pills__item a,
.pd-lang-pills__item span {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: var(--pd-radius-sm);
  font-family: var(--pd-font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.2s;
}

.pd-lang-pills__item a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--pd-white);
}

.pd-lang-pills__item--active span {
  background: var(--pd-goal-gold);
  color: var(--pd-text-dark);
}

/* Language select — mobile */
.pd-lang-select {
  display: none;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--pd-white);
  font-family: var(--pd-font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: var(--pd-radius-sm);
  cursor: pointer;
}

@media (max-width: 520px) {
  .pd-nav__inner {
    height: 50px;
  }

  .pd-nav__brand-text {
    font-size: 0.85rem;
  }

  .pd-nav__brand-sub {
    display: none;
  }

  .pd-lang-pills {
    display: none;
  }

  .pd-lang-select {
    display: block;
  }

  .pd-nav__cta {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
  }
}

/* ============================================================
   5. HERO
   ============================================================ */

.pd-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-start;
  background: url('../images/pd-hero-mobile.webp') center top / cover no-repeat;
  background-color: var(--pd-sky);
}

@media (min-width: 768px) {
  .pd-hero {
    min-height: 460px;
    align-items: center;
    background-image: url('../images/pd-hero-tablet.webp');
    background-position: center center;
  }
}

@media (min-width: 1280px) {
  .pd-hero {
    min-height: 500px;
    background-image: url('../images/pd-hero-desktop.webp');
    background-position: right 20% center;
  }
}

@supports not (background-image: url('x.webp')) {
  .pd-hero {
    background-image: url('../images/pd-hero-mobile.png');
  }
  @media (min-width: 768px) {
    .pd-hero { background-image: url('../images/pd-hero-tablet.png'); }
  }
  @media (min-width: 1280px) {
    .pd-hero { background-image: url('../images/pd-hero-desktop.png'); }
  }
}

.pd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(21, 101, 192, 0.82) 0%,
    rgba(21, 101, 192, 0.6) 45%,
    rgba(21, 101, 192, 0.1) 75%,
    transparent 100%
  );
  pointer-events: none;
}

.pd-hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 3rem 1.5rem 2.5rem;
}

@media (min-width: 768px) {
  .pd-hero__content {
    padding: 3rem 2rem;
  }
}

@media (min-width: 1280px) {
  .pd-hero__content {
    padding: 3.5rem 0;
    max-width: 520px;
  }
}

.pd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid var(--pd-goal-gold);
  color: var(--pd-goal-gold);
  font-family: var(--pd-font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--pd-radius-lg);
  margin-bottom: 1rem;
}

.pd-hero__title {
  color: var(--pd-white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.pd-hero__subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pd-hero__subtitle em {
  font-style: normal;
  color: var(--pd-goal-gold);
  font-weight: 600;
}

/* Parameter badges */
.pd-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--pd-white);
  font-family: var(--pd-font-head);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--pd-radius-sm);
  backdrop-filter: blur(4px);
}

.pd-badge--gold {
  background: rgba(255, 193, 7, 0.2);
  border-color: var(--pd-goal-gold);
  color: var(--pd-goal-gold);
}

/* Hero CTA group */
.pd-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--pd-font-head);
  font-weight: 700;
  border-radius: var(--pd-radius-lg);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.pd-btn--primary {
  background: var(--pd-br-green);
  color: var(--pd-white);
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 156, 59, 0.35);
}

.pd-btn--primary:hover {
  background: var(--pd-green);
  box-shadow: 0 6px 20px rgba(0, 156, 59, 0.45);
  text-decoration: none;
}

.pd-btn--ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--pd-white);
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
}

.pd-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--pd-white);
  text-decoration: none;
}

.pd-btn--sand {
  background: var(--pd-goal-gold);
  color: var(--pd-text-dark);
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
}

.pd-btn--sand:hover {
  background: var(--pd-goal-dark);
  text-decoration: none;
}

@media (max-width: 520px) {
  .pd-hero__content {
    padding: 2rem 1rem 2rem;
  }

  .pd-hero__title {
    font-size: 1.45rem;
  }

  .pd-hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .pd-btn--primary,
  .pd-btn--ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   6. STATS STRIP (Quick Stats Panel)
   ============================================================ */

.pd-stats-strip {
  background: var(--pd-sky-darkest);
  padding: 1.5rem 0;
}

.pd-stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

@media (min-width: 768px) {
  .pd-stats-strip__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.pd-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem 0.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.pd-stat-card:last-child {
  border-right: none;
}

.pd-stat-card__icon {
  font-size: 1.4rem;
  line-height: 1;
}

.pd-stat-card__value {
  font-family: var(--pd-font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--pd-goal-gold);
  line-height: 1.1;
}

.pd-stat-card__label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 520px) {
  .pd-stat-card {
    padding: 0.75rem 0.25rem;
  }

  .pd-stat-card__value {
    font-size: 0.9rem;
  }
}

/* ============================================================
   7. SPECS TABLE (Block 2 — Game Specs)
   ============================================================ */

.pd-specs-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--pd-radius-md);
  box-shadow: var(--pd-shadow-card);
}

.pd-specs-table {
  width: 100%;
  min-width: 360px;
  border: none;
  background: var(--pd-white);
}

.pd-specs-table tr {
  border-bottom: 1px solid var(--pd-bg-alt);
}

.pd-specs-table tr:last-child {
  border-bottom: none;
}

.pd-specs-table tr:nth-child(even) {
  background: var(--pd-bg-section);
}

.pd-specs-table td {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  vertical-align: middle;
}

.pd-specs-table td:first-child {
  font-weight: 700;
  color: var(--pd-sky-deep);
  width: 45%;
  border-right: 2px solid var(--pd-bg-alt);
}

.pd-specs-table td:last-child {
  color: var(--pd-text-dark);
}

.pd-specs-note {
  font-size: 0.8rem;
  color: var(--pd-text-mid);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ============================================================
   8. HOW TO PLAY (Block 3)
   ============================================================ */

.pd-howtoplay__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .pd-howtoplay__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.pd-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pd-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.75rem;
  align-items: flex-start;
}

.pd-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pd-sky-deep);
  color: var(--pd-white);
  font-family: var(--pd-font-head);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(46, 134, 222, 0.35);
}

.pd-step__body {
  padding-top: 0.2rem;
}

.pd-step__title {
  font-family: var(--pd-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pd-text-dark);
  margin-bottom: 0.2rem;
}

.pd-step__desc {
  font-size: 0.875rem;
  color: var(--pd-text-mid);
  line-height: 1.55;
  margin: 0;
}

/* Goal grid figure */
.pd-goal-grid-figure {
  margin: 0;
  background: var(--pd-bg-alt);
  border-radius: var(--pd-radius-lg);
  padding: 1.5rem;
  text-align: center;
  overflow: hidden;
}

.pd-goal-grid-figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: var(--pd-radius-md);
}

.pd-goal-grid-caption {
  font-size: 0.8rem;
  color: var(--pd-text-mid);
  margin-top: 0.75rem;
  text-align: center;
  font-style: italic;
}

/* ============================================================
   9. BUY BONUS / BEACH ROUND (Block 4)
   ============================================================ */

.pd-bonus-section {
  background: linear-gradient(135deg, var(--pd-sky-deepest) 0%, var(--pd-sky-deep) 60%, var(--pd-green) 100%);
  color: var(--pd-white);
}

.pd-bonus-section h2 {
  color: var(--pd-goal-gold);
}

.pd-bonus-section p {
  color: rgba(255,255,255,0.9);
}

.pd-bonus__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pd-bonus__layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.pd-bonus-strip-figure {
  margin: 0;
  text-align: center;
}

.pd-bonus-strip-figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: var(--pd-radius-md);
  overflow: hidden;
}

.pd-bonus-highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pd-bonus-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.pd-bonus-highlights li::before {
  content: '⚽';
  flex-shrink: 0;
  margin-top: 0.05em;
}

.pd-bonus-maxwin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pd-goal-gold);
  color: var(--pd-text-dark);
  font-family: var(--pd-font-head);
  font-weight: 800;
  font-size: 1.4rem;
  padding: 0.5rem 1.5rem;
  border-radius: var(--pd-radius-md);
  margin: 0.75rem 0;
}

.pd-bonus-caveat {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.75rem;
  font-style: italic;
}

/* Role comparison figure inside bonus section */
.pd-role-comparison-figure {
  margin: 1.5rem 0 0;
  overflow: hidden;
  border-radius: var(--pd-radius-md);
}

.pd-role-comparison-figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* ============================================================
   10. CELEBRITY BLOCK (Block 5 — JC Profile)
   ============================================================ */

.pd-celebrity__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .pd-celebrity__layout {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}

.pd-jc-profile-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pd-jc-silhouette-wrap {
  width: 120px;
  height: 160px;
  background: linear-gradient(135deg, var(--pd-sky-deep), var(--pd-sky-darkest));
  border-radius: var(--pd-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: var(--pd-shadow-card);
}

.pd-jc-silhouette-wrap img {
  width: 80px;
  height: auto;
}

.pd-jc-role-tag {
  font-family: var(--pd-font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pd-sky-deep);
  text-align: center;
}

.pd-celebrity__body blockquote {
  border-left: 4px solid var(--pd-goal-gold);
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: var(--pd-text-mid);
  font-size: 0.9rem;
}

.pd-celebrity__body cite {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  font-style: normal;
  font-weight: 600;
  color: var(--pd-sky-deep);
}

.pd-celebrity__disclaimer {
  font-size: 0.8rem;
  color: var(--pd-text-mid);
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--pd-bg-section);
  border-radius: var(--pd-radius-sm);
  border-left: 3px solid var(--pd-sky);
}

/* ============================================================
   11. DEMO BLOCK (Block 6)
   ============================================================ */

.pd-demo-section {
  background: var(--pd-bg-section);
}

.pd-demo-placeholder {
  background: linear-gradient(135deg, var(--pd-sky-darkest), var(--pd-sky-deep));
  border-radius: var(--pd-radius-lg);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  margin: 1.5rem 0;
}

.pd-demo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(255, 193, 7, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pd-demo-football-icon {
  font-size: 3rem;
  line-height: 1;
}

.pd-demo-placeholder__title {
  font-family: var(--pd-font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--pd-white);
  margin: 0;
}

.pd-demo-placeholder__date {
  font-family: var(--pd-font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--pd-goal-gold);
  margin: 0;
}

.pd-demo-placeholder__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  max-width: 400px;
  margin: 0;
}

.pd-demo-ext-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pd-sky-deep);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-decoration: underline;
}

/* ============================================================
   12. WHERE TO PLAY / OPERATOR CTA (Block 7)
   ============================================================ */

.pd-operator__geo-note {
  background: var(--pd-bg-alt);
  border-left: 4px solid var(--pd-sky-deep);
  border-radius: 0 var(--pd-radius-sm) var(--pd-radius-sm) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.pd-operator__geo-note strong {
  display: block;
  font-family: var(--pd-font-head);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--pd-sky-deep);
}

.pd-operator__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pd-operator__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.pd-operator__list li::before {
  content: '→';
  color: var(--pd-sky-deep);
  font-weight: 700;
}

.pd-operator__coming-soon {
  background: linear-gradient(135deg, var(--pd-sky) 0%, var(--pd-sky-deep) 100%);
  color: var(--pd-white);
  border-radius: var(--pd-radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  font-size: 0.875rem;
}

.pd-operator__coming-soon strong {
  display: block;
  font-family: var(--pd-font-head);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

/* ============================================================
   13. COMPARISON TABLE (Block 8)
   ============================================================ */

.pd-comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--pd-radius-md);
  box-shadow: var(--pd-shadow-card);
}

.pd-comparison-table {
  min-width: 600px;
  background: var(--pd-white);
}

.pd-comparison-table th {
  background: var(--pd-sky-deep);
  color: var(--pd-white);
  font-family: var(--pd-font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: left;
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

.pd-comparison-table th:first-child {
  border-radius: var(--pd-radius-sm) 0 0 0;
}

.pd-comparison-table th:last-child {
  border-radius: 0 var(--pd-radius-sm) 0 0;
}

.pd-comparison-table th.pd-col-highlight {
  background: var(--pd-green);
}

.pd-comparison-table td {
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--pd-text-dark);
  border-bottom: 1px solid var(--pd-bg-alt);
}

.pd-comparison-table td:first-child {
  font-weight: 700;
  color: var(--pd-sky-deep);
}

.pd-comparison-table td.pd-col-highlight {
  background: rgba(0, 156, 59, 0.06);
  font-weight: 600;
}

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

.pd-comparison-table tr:nth-child(even) td {
  background: var(--pd-bg-section);
}

.pd-comparison-table tr:nth-child(even) td.pd-col-highlight {
  background: rgba(0, 156, 59, 0.08);
}

/* ============================================================
   14. ABOUT BGAMING (Block 9)
   ============================================================ */

.pd-about-bgaming__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pd-about-bgaming__layout {
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
  }
}

.pd-about-bgaming__sidebar {
  background: var(--pd-bg-section);
  border-radius: var(--pd-radius-md);
  padding: 1.5rem;
  border-top: 4px solid var(--pd-sky-deep);
}

.pd-about-bgaming__sidebar dt {
  font-family: var(--pd-font-head);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pd-sky-deep);
  margin-top: 0.9rem;
}

.pd-about-bgaming__sidebar dt:first-child {
  margin-top: 0;
}

.pd-about-bgaming__sidebar dd {
  font-size: 0.875rem;
  color: var(--pd-text-dark);
  margin: 0.15rem 0 0;
}

.pd-about-bgaming__sidebar a {
  font-weight: 600;
}

/* ============================================================
   15. FAQ (Block 10)
   ============================================================ */

.pd-faq-section {
  background: var(--pd-bg-section);
}

.pd-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.pd-faq-item {
  background: var(--pd-white);
  border-radius: var(--pd-radius-md);
  border: 1px solid rgba(91, 184, 245, 0.25);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(43, 134, 222, 0.07);
}

.pd-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: var(--pd-font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--pd-text-dark);
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
}

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

.pd-faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--pd-sky-deep);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.pd-faq-item details[open] .pd-faq-question::after {
  content: '−';
}

.pd-faq-answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--pd-text-mid);
  border-top: 1px solid var(--pd-bg-alt);
  padding-top: 0.75rem;
}

.pd-faq-answer p {
  margin-bottom: 0.6em;
}

.pd-faq-answer p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   16. FOOTER (Block 11)
   ============================================================ */

.pd-footer {
  background: var(--pd-sky-darkest);
  color: rgba(255,255,255,0.8);
  padding: 2.5rem 0 1.5rem;
}

.pd-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pd-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.pd-footer__col-title {
  font-family: var(--pd-font-head);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--pd-goal-gold);
  margin-bottom: 0.75rem;
}

.pd-footer__text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.pd-footer__text p {
  margin-bottom: 0.5em;
}

.pd-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pd-footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  text-decoration: none;
}

.pd-footer__links a:hover {
  color: var(--pd-white);
}

.pd-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.pd-footer__copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.pd-footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  max-width: 600px;
  text-align: right;
  line-height: 1.5;
}

@media (max-width: 520px) {
  .pd-footer__disclaimer {
    text-align: left;
  }
}

/* ============================================================
   17. SECTION HEADER UTILITY
   ============================================================ */

.pd-section-header {
  margin-bottom: 2rem;
}

.pd-section-header--center {
  text-align: center;
}

.pd-section-eyebrow {
  display: inline-block;
  font-family: var(--pd-font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pd-sky-deep);
  background: rgba(91, 184, 245, 0.12);
  border: 1px solid rgba(91, 184, 245, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--pd-radius-lg);
  margin-bottom: 0.6rem;
}

.pd-section-eyebrow--gold {
  color: var(--pd-goal-dark);
  background: rgba(255, 193, 7, 0.12);
  border-color: rgba(255, 193, 7, 0.35);
}

.pd-section-desc {
  font-size: 1rem;
  color: var(--pd-text-mid);
  max-width: 640px;
  margin-top: 0.5rem;
}

.pd-section-header--center .pd-section-desc {
  margin: 0.5rem auto 0;
}

/* ============================================================
   18. RESPONSIBLE GAMING BANNER
   ============================================================ */

.pd-responsible {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--pd-radius-sm);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin-top: 1.25rem;
}

.pd-responsible strong {
  color: rgba(255,255,255,0.8);
}

.pd-responsible a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

/* ============================================================
   19. MISC COMPONENTS
   ============================================================ */

/* Inline anchor tag target offset */
.pd-anchor-target {
  display: block;
  height: 70px;
  margin-top: -70px;
  visibility: hidden;
  pointer-events: none;
}

/* Section separator */
.pd-separator {
  height: 4px;
  background: linear-gradient(to right, var(--pd-sky), var(--pd-goal-gold), var(--pd-br-green));
  border: none;
  margin: 0;
}

/* Beach accent strip */
.pd-beach-accent {
  height: 6px;
  background: linear-gradient(to right, var(--pd-goal-gold) 0%, var(--pd-chance-orange) 50%, var(--pd-goal-gold) 100%);
}
