@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Syne:wght@600;700;800&display=swap");

:root {
  --ppj-navy: #071525;
  --ppj-deep: #0a1f33;
  --ppj-teal: #1a8a9a;
  --ppj-teal-bright: #2ec4d6;
  --ppj-gold: #d4a84b;
  --ppj-gold-soft: #e8c77a;
  --ppj-mist: #c8d9e6;
  --ppj-white: #f4f8fb;
  --ppj-muted: #8aa0b4;
  --ppj-line: rgba(46, 196, 214, 0.18);
  --ppj-radius: 1.25rem;
  --ppj-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ppj-white);
  background: var(--ppj-navy);
  line-height: 1.65;
  overflow-x: hidden;
  transition: opacity 0.45s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ppj-teal-bright);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--ppj-gold-soft);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ppj-white);
}

.topbar {
  background: linear-gradient(90deg, #05101c 0%, #0c2a3d 50%, #05101c 100%);
  border-bottom: 1px solid var(--ppj-line);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  color: var(--ppj-mist);
  text-align: center;
}

.topbar i {
  color: var(--ppj-gold);
  margin-right: 0.4rem;
}

.site-header {
  background: rgba(7, 21, 37, 0.94);
  border-bottom: 1px solid var(--ppj-line);
  padding: 0.85rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ppj-white);
}

.brand-lockup:hover {
  color: var(--ppj-white);
  opacity: 0.92;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--ppj-teal) 0%, #0d4f5c 55%, var(--ppj-gold) 160%);
  box-shadow: 0 8px 24px rgba(26, 138, 154, 0.35);
  flex-shrink: 0;
}

.brand-mark i {
  font-size: 1.15rem;
  color: var(--ppj-white);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-text span {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ppj-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  color: var(--ppj-mist);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--ppj-white);
  background: rgba(46, 196, 214, 0.12);
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--ppj-line);
  border-radius: 0.85rem;
  background: rgba(26, 138, 154, 0.12);
  color: var(--ppj-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: rgba(46, 196, 214, 0.22);
  border-color: rgba(46, 196, 214, 0.45);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--ppj-teal-bright);
  outline-offset: 2px;
}

.mobile-nav {
  display: none;
  background: var(--ppj-deep);
  border-bottom: 1px solid var(--ppj-line);
  padding: 0.5rem 0 1rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  color: var(--ppj-mist);
  font-weight: 500;
  border-bottom: 1px solid rgba(200, 217, 230, 0.08);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--ppj-teal-bright);
}

.mobile-nav a i {
  width: 1.25rem;
  text-align: center;
  color: var(--ppj-gold);
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(7, 21, 37, 0.92) 0%, rgba(7, 21, 37, 0.72) 48%, rgba(7, 21, 37, 0.45) 100%),
    linear-gradient(0deg, rgba(7, 21, 37, 0.85) 0%, transparent 42%);
}

.hero-content {
  padding: 4.5rem 0 5rem;
  max-width: 40rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ppj-gold-soft);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  margin: 0 0 1.15rem;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--ppj-teal-bright), var(--ppj-gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--ppj-mist);
  margin: 0 0 2rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-ppj {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-ppj:hover {
  transform: translateY(-2px);
  color: var(--ppj-white);
}

.btn-ppj-primary {
  background: linear-gradient(135deg, var(--ppj-teal) 0%, #157a88 100%);
  color: var(--ppj-white);
  box-shadow: 0 14px 32px rgba(26, 138, 154, 0.35);
}

.btn-ppj-primary:hover {
  background: linear-gradient(135deg, var(--ppj-teal-bright) 0%, var(--ppj-teal) 100%);
}

.btn-ppj-ghost {
  background: rgba(244, 248, 251, 0.06);
  border-color: rgba(244, 248, 251, 0.22);
  color: var(--ppj-white);
  backdrop-filter: blur(8px);
}

.btn-ppj-ghost:hover {
  background: rgba(244, 248, 251, 0.12);
  border-color: rgba(212, 168, 75, 0.45);
}

.btn-ppj-sm {
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.games-section {
  background:
    radial-gradient(ellipse at top center, rgba(26, 138, 154, 0.1), transparent 55%),
    linear-gradient(180deg, #081828 0%, var(--ppj-navy) 100%);
}

.about-section {
  background: var(--ppj-navy);
}

.platform-section {
  background:
    linear-gradient(180deg, #0a1c2c 0%, var(--ppj-navy) 100%);
}

.community-section {
  background: var(--ppj-navy);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ppj-gold-soft);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.section-lead {
  color: var(--ppj-muted);
  max-width: 36rem;
  margin: 0 0 2.75rem;
}

.section-lead-wide {
  max-width: 48rem;
}

.content-block p {
  color: var(--ppj-mist);
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.info-panel {
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--ppj-line);
  border-radius: var(--ppj-radius);
  background: rgba(10, 31, 51, 0.75);
}

.info-panel-accent {
  background:
    linear-gradient(145deg, rgba(26, 138, 154, 0.16), rgba(7, 21, 37, 0.55)),
    var(--ppj-deep);
}

.info-panel-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(46, 196, 214, 0.1);
  color: var(--ppj-teal-bright);
  font-size: 1.15rem;
}

.info-panel h3 {
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
}

.info-panel p {
  margin: 0;
  color: var(--ppj-muted);
}

.check-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--ppj-mist);
}

.check-list i {
  color: var(--ppj-gold);
  margin-top: 0.25rem;
}

.disclaimer-section {
  background:
    radial-gradient(ellipse at bottom left, rgba(212, 168, 75, 0.08), transparent 45%),
    linear-gradient(180deg, #081828 0%, #06121f 100%);
}

.disclaimer-panel {
  padding: 2.5rem 1.75rem;
  border: 1px solid var(--ppj-line);
  border-radius: var(--ppj-radius);
  background:
    linear-gradient(160deg, rgba(26, 138, 154, 0.12), rgba(7, 21, 37, 0.65)),
    var(--ppj-deep);
  box-shadow: var(--ppj-shadow);
}

.disclaimer-points {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.disclaimer-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ppj-line);
}

.disclaimer-point > i {
  color: var(--ppj-gold);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.disclaimer-point h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.disclaimer-point p {
  margin: 0;
  color: var(--ppj-muted);
}

.game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--ppj-deep);
  border: 1px solid var(--ppj-line);
  border-radius: var(--ppj-radius);
  overflow: hidden;
  box-shadow: var(--ppj-shadow);
}

.game-card-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #041018;
}

.game-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-card-media:hover img {
  transform: scale(1.04);
}

.game-card-body {
  padding: 1.35rem 1.35rem 1.55rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.game-card-title a {
  color: var(--ppj-white);
}

.game-card-title a:hover {
  color: var(--ppj-teal-bright);
}

.game-card-meta {
  margin: 0 0 1.15rem;
  color: var(--ppj-muted);
  font-size: 0.9rem;
}

.game-card-body .btn-ppj {
  margin-top: auto;
  align-self: flex-start;
}

.site-footer {
  background: #040d16;
  border-top: 1px solid var(--ppj-line);
  padding: 3.5rem 0 2rem;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--ppj-white);
}

.footer-copy {
  color: var(--ppj-muted);
  font-size: 0.95rem;
  max-width: 32rem;
  margin: 1rem 0 0;
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-badges a {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-nav a {
  color: var(--ppj-mist);
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--ppj-teal-bright);
}

.footer-disclaimer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200, 217, 230, 0.08);
}

.footer-disclaimer p {
  color: var(--ppj-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 0.85rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer strong {
  color: var(--ppj-mist);
  font-weight: 600;
}

.footer-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 217, 230, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  color: var(--ppj-muted);
  font-size: 0.88rem;
}

html.is-leaving body {
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .disclaimer-panel {
    padding: 3rem;
  }

  .disclaimer-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .disclaimer-point {
    border-top: 0;
    padding-top: 0;
    border-left: 1px solid var(--ppj-line);
    padding-left: 1.25rem;
  }

  .disclaimer-point:first-child {
    border-left: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav,
  .mobile-nav.is-open {
    display: none;
  }

  .hero-content {
    max-width: 44rem;
  }
}

body.ppj-lock-scroll {
  overflow: hidden;
  touch-action: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(4, 10, 18, 0.88);
  backdrop-filter: blur(10px);
}

.age-gate.is-open {
  display: flex;
}

.age-gate-dialog {
  width: min(100%, 32rem);
  padding: 2rem 1.75rem;
  border-radius: var(--ppj-radius);
  border: 1px solid var(--ppj-line);
  background:
    linear-gradient(160deg, rgba(26, 138, 154, 0.18), rgba(7, 21, 37, 0.95)),
    var(--ppj-deep);
  box-shadow: var(--ppj-shadow);
}

.age-gate-dialog h2 {
  margin: 0 0 1rem;
  font-size: 1.65rem;
}

.age-gate-dialog p {
  color: var(--ppj-mist);
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.age-gate-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.35rem 0 1.5rem;
  color: var(--ppj-mist);
  font-size: 0.95rem;
}

.age-gate-check input {
  margin-top: 0.2rem;
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--ppj-teal);
  flex-shrink: 0;
}

.age-gate-dialog .btn-ppj:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  display: none;
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.25rem 1.35rem;
  border-radius: var(--ppj-radius);
  border: 1px solid var(--ppj-line);
  background: rgba(7, 21, 37, 0.96);
  box-shadow: var(--ppj-shadow);
}

.cookie-consent.is-open {
  display: block;
}

.cookie-consent p {
  margin: 0 0 1rem;
  color: var(--ppj-mist);
  font-size: 0.92rem;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse at top right, rgba(26, 138, 154, 0.16), transparent 50%),
    linear-gradient(180deg, #0a1c2c 0%, var(--ppj-navy) 100%);
  border-bottom: 1px solid var(--ppj-line);
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  margin: 0;
  max-width: 42rem;
  color: var(--ppj-mist);
  font-size: 1.08rem;
}

.page-content {
  padding: 3.5rem 0 5rem;
}

.page-content .content-block h2 {
  margin: 2.25rem 0 0.85rem;
  font-size: 1.45rem;
}

.page-content .content-block h2:first-child {
  margin-top: 0;
}

.page-content .content-block h3 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
}

.faq-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--ppj-line);
}

.faq-item:first-child {
  border-top: 1px solid var(--ppj-line);
}

.faq-item h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.faq-item p {
  margin: 0;
  color: var(--ppj-muted);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--ppj-line);
  background: rgba(46, 196, 214, 0.1);
  color: var(--ppj-white);
  font-weight: 600;
}

.contact-email:hover {
  color: var(--ppj-gold-soft);
  border-color: rgba(212, 168, 75, 0.45);
}

.game-stage-wrap {
  padding: 2.5rem 0 1.5rem;
}

.game-stage {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid var(--ppj-line);
  overflow: hidden;
  background: #041018;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(46, 196, 214, 0.12);
}

.game-stage-banner {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.game-stage-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.game-stage-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 24, 0.15), rgba(4, 16, 24, 0.95));
}

.game-stage-inner {
  position: relative;
  padding: 1.5rem 1.25rem 1.75rem;
}

.game-hud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.game-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(46, 196, 214, 0.12);
  border: 1px solid rgba(46, 196, 214, 0.28);
  color: var(--ppj-mist);
  font-size: 0.9rem;
  font-weight: 600;
}

.game-chip strong {
  color: var(--ppj-gold-soft);
  font-weight: 700;
}

.game-message {
  min-height: 1.5rem;
  margin: 0 0 1rem;
  text-align: center;
  color: var(--ppj-gold-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(212, 168, 75, 0.35);
}

.game-disclaimer {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--ppj-radius);
  border: 1px solid var(--ppj-line);
  background: rgba(10, 31, 51, 0.8);
}

.game-disclaimer h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.game-disclaimer p {
  margin: 0 0 0.75rem;
  color: var(--ppj-muted);
  font-size: 0.95rem;
}

.game-disclaimer p:last-child {
  margin-bottom: 0;
}

.slot-machine {
  max-width: 34rem;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at top, rgba(46, 196, 214, 0.22), transparent 55%),
    linear-gradient(180deg, #0d2a3a, #061420);
  border: 1px solid rgba(46, 196, 214, 0.35);
  box-shadow: inset 0 0 40px rgba(46, 196, 214, 0.12), 0 0 40px rgba(26, 138, 154, 0.2);
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.slot-reel {
  height: 7.5rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #102636, #071521);
  border: 1px solid rgba(232, 199, 122, 0.35);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.45), 0 0 20px rgba(212, 168, 75, 0.15);
  overflow: hidden;
  position: relative;
}

.slot-reel span {
  font-size: 2.6rem;
  filter: drop-shadow(0 0 12px rgba(46, 196, 214, 0.65));
  transition: transform 0.2s ease;
}

.slot-reel.is-spinning span {
  animation: slotBlur 0.12s linear infinite;
}

@keyframes slotBlur {
  0% { transform: translateY(-8px); opacity: 0.55; }
  50% { transform: translateY(8px); opacity: 1; }
  100% { transform: translateY(-8px); opacity: 0.55; }
}

.slot-actions,
.bj-actions,
.roulette-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.bj-table {
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(ellipse at center, rgba(18, 90, 70, 0.55), rgba(6, 28, 24, 0.95)),
    #0a2a22;
  border: 2px solid rgba(212, 168, 75, 0.35);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.35), 0 0 50px rgba(26, 138, 154, 0.15);
}

.bj-hand-label {
  text-align: center;
  color: var(--ppj-gold-soft);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.bj-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  min-height: 7rem;
  margin-bottom: 1.25rem;
}

.playing-card {
  width: 4.2rem;
  height: 6rem;
  border-radius: 0.55rem;
  background: linear-gradient(160deg, #f8fafc, #dbe7f0);
  color: #122033;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.35rem 0.4rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), 0 0 16px rgba(46, 196, 214, 0.2);
  animation: cardIn 0.35s ease;
}

.playing-card.red {
  color: #b42338;
}

.playing-card.back {
  background: linear-gradient(145deg, #1a8a9a, #0d4f5c);
  color: transparent;
  border: 2px solid rgba(232, 199, 122, 0.5);
}

@keyframes cardIn {
  from { transform: translateY(-18px) scale(0.9); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.roulette-wrap {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}

.roulette-wheel {
  width: min(100%, 280px);
  aspect-ratio: 1;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    #1a8a9a 0deg 18deg,
    #0b1c28 18deg 36deg,
    #d4a84b 36deg 54deg,
    #0b1c28 54deg 72deg,
    #1a8a9a 72deg 90deg,
    #0b1c28 90deg 108deg,
    #d4a84b 108deg 126deg,
    #0b1c28 126deg 144deg,
    #1a8a9a 144deg 162deg,
    #0b1c28 162deg 180deg,
    #d4a84b 180deg 198deg,
    #0b1c28 198deg 216deg,
    #1a8a9a 216deg 234deg,
    #0b1c28 234deg 252deg,
    #d4a84b 252deg 270deg,
    #0b1c28 270deg 288deg,
    #1a8a9a 288deg 306deg,
    #0b1c28 306deg 324deg,
    #d4a84b 324deg 342deg,
    #0b1c28 342deg 360deg
  );
  border: 6px solid rgba(232, 199, 122, 0.65);
  box-shadow: 0 0 40px rgba(46, 196, 214, 0.35), inset 0 0 30px rgba(0, 0, 0, 0.45);
  transition: transform 4s cubic-bezier(0.12, 0.75, 0.12, 1);
}

.roulette-wheel::before {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, #2ec4d6, #0a1f33 70%);
  border: 3px solid rgba(232, 199, 122, 0.5);
  box-shadow: 0 0 24px rgba(46, 196, 214, 0.45);
}

.roulette-pointer {
  width: 0;
  height: 0;
  margin: 0 auto 0.5rem;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid var(--ppj-gold);
  filter: drop-shadow(0 0 8px rgba(212, 168, 75, 0.8));
}

.bet-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.bet-pick {
  min-width: 4.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--ppj-line);
  background: rgba(244, 248, 251, 0.06);
  color: var(--ppj-mist);
  font-weight: 600;
  cursor: pointer;
}

.bet-pick.is-active {
  background: rgba(46, 196, 214, 0.2);
  border-color: rgba(46, 196, 214, 0.55);
  color: var(--ppj-white);
  box-shadow: 0 0 18px rgba(46, 196, 214, 0.25);
}

@media (min-width: 768px) {
  .game-stage-banner {
    height: 240px;
  }

  .game-stage-inner {
    padding: 1.75rem 1.75rem 2rem;
  }

  .cookie-consent {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    margin: 0;
  }

  .age-gate-dialog {
    padding: 2.35rem;
  }
}
