/* ================================
   CoinplaySA Main Stylesheet
   Theme: PlayG8 dark / navy / gold
   ================================ */

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
  --playg8-dark: #020024;
  --playg8-blue: #090979;
  --playg8-gold: #FFAA00;
  --playg8-text: #1f2937;
  --playg8-muted: #6b7280;
  --playg8-light: #f8fafc;
  --playg8-white: #ffffff;
  --playg8-border: rgba(2, 0, 36, 0.1);
  --playg8-shadow: 0 22px 60px rgba(2, 0, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 170, 0, 0.18), transparent 32rem),
    linear-gradient(135deg, #020024 0%, #05051f 45%, #000000 100%);
  color: var(--playg8-text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.site-body p {
  margin: 0;
  padding: 0;
  color: inherit;
  line-height: 1.7;
}

.site-body h1,
.site-body h2,
.site-body h3 {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

.site-body a {
  text-decoration: none;
}

.content-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* ================================
   Navbar
   ================================ */

.custom-navbar {
  min-height: 82px;
  padding: 0.35rem 0;
  background: linear-gradient(135deg, #000000, #1f1f1f);
  border-bottom: 2px solid var(--playg8-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.custom-navbar .nav-container {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  padding: 0;
}

.brand-logo {
  width: auto;
  height: 66px;
  display: block;
}

.custom-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--playg8-white);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.custom-navbar .navbar-brand:hover {
  color: var(--playg8-gold);
  border-color: rgba(255, 170, 0, 0.72);
  background: rgba(255, 170, 0, 0.08);
  transform: translateY(-1px);
}

.nav-playg8-mark {
  display: inline-flex;
  align-items: center;
  margin-left: 1.4rem;
  padding: 0.35rem;
  border: 2px solid rgba(255, 170, 0, 0.34);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  color: var(--playg8-gold);
}

.nav-playg8-mark img {
  width: auto;
  height: 64px;
  display: block;
}

.nav-playg8-mark:hover {
  border-color: rgba(255, 170, 0, 0.72);
  background: rgba(255, 170, 0, 0.08);
  transform: translateY(-1px);
}

.custom-toggler {
  margin-left: auto;
  border: 1px solid rgba(255, 170, 0, 0.55);
  border-radius: 999px;
  color: var(--playg8-gold);
  padding: 0.45rem 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 170, 0, 0.08);
}

.custom-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 170, 0, 0.2);
}

.custom-toggler:hover {
  border-color: rgba(255, 170, 0, 0.85);
  background: rgba(255, 170, 0, 0.14);
}

.nav-links {
  align-items: center;
  gap: 0.35rem;
}

.custom-navbar .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--playg8-gold) !important;
  font-weight: 700;
  transform: translateY(-1px);
}

/* ================================
   Buttons
   ================================ */

.btn-playg8-primary,
.btn-playg8-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-playg8-primary {
  background: var(--playg8-gold);
  color: #111111;
  box-shadow: 0 14px 30px rgba(255, 170, 0, 0.28);
}

.btn-playg8-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--playg8-white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-playg8-primary:hover,
.btn-playg8-secondary:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-playg8-primary:hover {
  color: #111111;
  box-shadow: 0 18px 36px rgba(255, 170, 0, 0.36);
}

.btn-playg8-secondary:hover {
  color: var(--playg8-gold);
  border-color: var(--playg8-gold);
}

/* ================================
   Shared Sections
   ================================ */

.section-band {
  padding: 5rem 0;
}

.intro-section {
  background: var(--playg8-white);
}

.light-section {
  background: var(--playg8-light);
}

.dark-section {
  background:
    radial-gradient(circle at top right, rgba(255, 170, 0, 0.18), transparent 30rem),
    linear-gradient(135deg, #020024, #050519 58%, #000000);
  color: var(--playg8-white);
}

.section-eyebrow {
  color: var(--playg8-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.3rem;
  text-align: center;
}

.section-heading h2 {
  color: var(--playg8-dark);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 1rem;
}

.section-heading p {
  text-align: center;
  color: var(--playg8-muted);
}

.section-heading-light h2,
.section-heading-light p {
  color: var(--playg8-white);
}

.section-heading-light p:not(.section-eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  place-items: center;
  padding: 8.5rem 1rem 4.5rem;
  overflow: hidden;
}

.home-hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: 8.5rem 1rem 5rem;
  background:
    linear-gradient(90deg, rgba(2, 0, 36, 0.92), rgba(2, 0, 36, 0.72), rgba(2, 0, 36, 0.42)),
    url("../images/bground.jpg") center / cover no-repeat;
  overflow: hidden;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% 50%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 170, 0, 0.24), transparent 68%);
  pointer-events: none;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at 25% 20%, rgba(255, 170, 0, 0.16), transparent 28rem);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
  color: var(--playg8-white);
}

.home-hero-content p {
  text-align: center;
}

.home-hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--playg8-white);
  font-size: clamp(2.35rem, 5vw, 5rem);
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 760px;
  margin: 1.3rem auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  text-align: center;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.intro-grid,
.playg8-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 2rem;
  align-items: center;
}

.intro-grid h2,
.playg8-panel h2,
.feature-detail-grid h2,
.feature-cta h2,
.about-story-grid h2,
.about-proof-content h2,
.about-franchise-grid h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 1rem;
}

.intro-grid h2,
.feature-cta h2,
.about-story-grid h2,
.about-proof-content h2 {
  color: var(--playg8-dark);
}

.playg8-panel h2,
.feature-detail-grid h2,
.about-franchise-grid h2 {
  color: var(--playg8-white);
}

.intro-grid p + p,
.playg8-panel p + p,
.feature-detail-grid p + p,
.about-story-grid p + p,
.about-proof-content p + p,
.about-franchise-grid p + p {
  margin-top: 1rem;
}

.playg8-panel p,
.feature-detail-grid p,
.about-franchise-grid p {
  color: rgba(255, 255, 255, 0.82);
}

/* ================================
   Cards
   ================================ */

.feature-panel,
.info-card,
.playg8-image-card,
.media-card,
.range-card,
.product-card,
.contact-info-card,
.contact-form-card,
.contact-side-card {
  background: var(--playg8-white);
  border: 1px solid var(--playg8-border);
  border-radius: 22px;
  box-shadow: var(--playg8-shadow);
}

.feature-panel {
  padding: 2rem;
}

.feature-panel h3 {
  color: var(--playg8-dark);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-panel ul,
.feature-list-card ul,
.product-spec-card ul,
.contact-side-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-panel li,
.feature-list-card li,
.product-spec-card li,
.contact-side-card li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.55;
}

.feature-panel li {
  color: var(--playg8-text);
}

.feature-list-card li,
.product-spec-card li {
  color: rgba(255, 255, 255, 0.86);
}

.contact-side-card li {
  color: var(--playg8-text);
}

.feature-panel li::before,
.feature-list-card li::before,
.product-spec-card li::before,
.contact-side-card li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--playg8-gold);
}

.card-grid,
.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.info-card {
  padding: 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover,
.range-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 170, 0, 0.6);
  box-shadow: 0 24px 62px rgba(2, 0, 36, 0.18);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(255, 170, 0, 0.14);
  color: var(--playg8-gold);
  font-size: 1.35rem;
}

.info-card h3 {
  color: var(--playg8-dark);
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.info-card p {
  color: var(--playg8-muted);
}

.playg8-image-card {
  padding: 1rem;
  text-align: center;
}

.playg8-image-card img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
  border-radius: 16px;
}

.feature-list-card {
  padding: 2rem;
  border-radius: 22px;
}

.dark-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.feature-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 170, 0, 0.18), transparent 24rem),
    var(--playg8-white);
  border: 1px solid var(--playg8-border);
  box-shadow: var(--playg8-shadow);
}

.feature-cta p {
  color: var(--playg8-muted);
}

/* ================================
   Home Page
   ================================ */

.home-page .home-hero {
  background:
    linear-gradient(90deg, rgba(2, 0, 36, 0.92), rgba(2, 0, 36, 0.72), rgba(2, 0, 36, 0.42)),
    url("../images/bground.jpg") center / cover no-repeat;
}

/* ================================
   Features Page
   ================================ */

.features-hero {
  background:
    linear-gradient(90deg, rgba(2, 0, 36, 0.94), rgba(2, 0, 36, 0.74), rgba(2, 0, 36, 0.5)),
    url("../images/images/New4.png") center / cover no-repeat;
}

.screenshot-section {
  background: var(--playg8-white);
}

.feature-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.media-card {
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 2rem;
  align-items: center;
}

/* ================================
   Products Page
   ================================ */

.products-hero {
  background:
    linear-gradient(90deg, rgba(2, 0, 36, 0.94), rgba(2, 0, 36, 0.72), rgba(2, 0, 36, 0.48)),
    url("../images/bground.jpg") center / cover no-repeat;
}

.products-neon-section {
  position: relative;
  overflow: hidden;
}

.products-neon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 170, 0, 0.14), transparent 26rem),
    radial-gradient(circle at 85% 35%, rgba(9, 9, 121, 0.55), transparent 32rem);
  pointer-events: none;
}

.products-neon-section .content-container {
  position: relative;
  z-index: 1;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 1.2rem;
  align-items: stretch;
  margin-bottom: 1.2rem;
}

.product-spec-card {
  padding: 2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--playg8-white);
  box-shadow: var(--playg8-shadow);
}

.product-spec-card span,
.product-card span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--playg8-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-spec-card h3 {
  color: var(--playg8-white);
  font-size: 1.55rem;
  margin-bottom: 1rem;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
  padding: 1rem;
  background:
    radial-gradient(circle at center, rgba(255, 170, 0, 0.12), transparent 62%),
    #f5f7fb;
}

.product-card-featured img {
  height: 460px;
}

.product-card div {
  padding: 1rem;
}

.product-card h3 {
  color: var(--playg8-dark);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.product-card p {
  color: var(--playg8-muted);
}

.products-neon-section .product-card {
  background:
    radial-gradient(circle at top right, rgba(255, 170, 0, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(2, 0, 36, 0.92));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.products-neon-section .product-card:hover {
  border-color: rgba(255, 170, 0, 0.58);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}

.products-neon-section .product-card img {
  background:
    radial-gradient(circle at center, rgba(255, 170, 0, 0.16), transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.28));
}

.products-neon-section .product-card h3 {
  color: var(--playg8-white);
}

.products-neon-section .product-card p {
  color: rgba(255, 255, 255, 0.76);
}

.range-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.range-card {
  display: grid;
  grid-template-rows: 340px 1fr;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.range-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.2rem;
  background:
    radial-gradient(circle at center, rgba(255, 170, 0, 0.12), transparent 62%),
    #f8fafc;
}

.range-card div {
  padding: 1.4rem;
}

.range-card h3 {
  color: var(--playg8-dark);
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.range-card p:not(.section-eyebrow) {
  color: var(--playg8-muted);
}

.product-strip-section {
  background:
    radial-gradient(circle at top left, rgba(255, 170, 0, 0.18), transparent 28rem),
    linear-gradient(135deg, #020024, #050519 58%, #000000);
}

.product-scroll-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  scrollbar-width: thin;
  scrollbar-color: var(--playg8-gold) rgba(255, 255, 255, 0.12);
}

.product-scroll-gallery img {
  flex: 0 0 auto;
  width: 155px;
  height: 280px;
  object-fit: contain;
  padding: 0.75rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
}

/* ================================
   About Page
   ================================ */

.about-hero {
  background:
    linear-gradient(90deg, rgba(2, 0, 36, 0.94), rgba(2, 0, 36, 0.72), rgba(2, 0, 36, 0.46)),
    url("../images/images/WorldFlags4.jpg") center / cover no-repeat;
}

.about-story-grid,
.about-franchise-grid,
.about-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 2rem;
  align-items: center;
}

.about-stat-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 170, 0, 0.2), transparent 22rem),
    linear-gradient(135deg, var(--playg8-dark), #050519);
  color: var(--playg8-white);
  box-shadow: var(--playg8-shadow);
  border: 1px solid rgba(255, 170, 0, 0.18);
}

.about-stat-card span {
  color: var(--playg8-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.about-stat-card strong {
  display: block;
  margin: 0.3rem 0 0.8rem;
  color: var(--playg8-white);
  font-size: clamp(4rem, 9vw, 6.5rem);
  line-height: 0.9;
}

.about-stat-card p {
  color: rgba(255, 255, 255, 0.82);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.flag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.flag-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--playg8-border);
  box-shadow: 0 18px 42px rgba(2, 0, 36, 0.14);
}

/* ================================
   Contact Page
   ================================ */

.contact-hero-modern {
  background:
    linear-gradient(90deg, rgba(2, 0, 36, 0.94), rgba(2, 0, 36, 0.7), rgba(2, 0, 36, 0.45)),
    url("../images/bground.jpg") center / cover no-repeat;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-info-card {
  padding: 1.6rem;
  text-align: center;
}

.contact-info-card .card-icon {
  margin-bottom: 0.85rem;
}

.contact-info-card h3 {
  color: var(--playg8-dark);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.contact-info-card a {
  color: var(--playg8-text);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-info-card a:hover {
  color: var(--playg8-gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-form-card {
  padding: 2rem;
}

.contact-form-card h2 {
  color: var(--playg8-dark);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.contact-form-intro {
  margin-bottom: 1.8rem;
  color: var(--playg8-muted);
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.coinplay-contact-form .form-group {
  margin-bottom: 1.2rem;
}

.coinplay-contact-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--playg8-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coinplay-contact-form .form-control {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(2, 0, 36, 0.14);
  border-radius: 12px;
  background: #ffffff;
  color: var(--playg8-text);
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.coinplay-contact-form .form-control:focus {
  border-color: var(--playg8-gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 170, 0, 0.18);
  outline: none;
}

.coinplay-contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-select {
  cursor: pointer;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile {
  margin: 1.1rem 0;
  min-height: 65px;
}

.contact-submit {
  border: none;
  cursor: pointer;
}

.contact-required-note {
  margin-top: 0.85rem;
  color: var(--playg8-muted);
  font-size: 0.9rem;
}

.contact-side-card {
  padding: 1.6rem;
  position: sticky;
  top: 110px;
}

.contact-side-card h3 {
  color: var(--playg8-dark);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

/* ================================
   Footer
   ================================ */

.site-footer {
  background: linear-gradient(135deg, #000000, #1f1f1f);
  border-top: 2px solid var(--playg8-gold);
  color: rgba(255, 255, 255, 0.82);
  padding: 1.2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  font-weight: 800;
  color: var(--playg8-white);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  margin-top: 0.15rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-contact a:hover {
  color: var(--playg8-gold);
}

.footer-social {
  display: flex;
  gap: 0.55rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.25rem;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer-social .social-facebook {
  color: #1877f2;
}

.footer-social .social-youtube {
  color: #ff0000;
}

.footer-social .social-website {
  color: var(--playg8-gold);
}

.footer-social .social-instagram {
  color: #e4405f;
}

.footer-social .social-tiktok {
  color: #25f4ee;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 170, 0, 0.48);
  background: rgba(255, 170, 0, 0.1);
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 1100px) {
  .product-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .custom-navbar .navbar-collapse {
    width: 100%;
    margin-top: 0.8rem;
    padding: 0.9rem 1rem;
    border-top: 1px solid rgba(255, 170, 0, 0.25);
    background: rgba(0, 0, 0, 0.42);
    border-radius: 0 0 14px 14px;
  }

  .nav-links {
    align-items: flex-start;
    gap: 0.1rem;
  }

  .custom-navbar .nav-link {
    width: 100%;
    padding: 0.65rem 0;
  }

  .nav-playg8-mark {
    display: none;
  }

  .intro-grid,
  .playg8-panel,
  .feature-detail-grid,
  .feature-cta,
  .product-feature-grid,
  .range-card-grid,
  .about-story-grid,
  .about-franchise-grid,
  .about-proof-grid,
  .contact-info-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .feature-card-grid {
    grid-template-columns: 1fr;
  }

  .feature-media-grid,
  .product-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-cta .btn-playg8-primary {
    justify-self: start;
  }

  .contact-side-card {
    position: static;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact,
  .footer-social {
    justify-content: center;
  }

  .footer-brand,
  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    height: 56px;
  }

  .home-hero,
  .page-hero {
    min-height: 52vh;
    padding-top: 7.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-band {
    padding: 3.8rem 0;
  }

  .feature-panel,
  .info-card,
  .media-card,
  .feature-cta,
  .about-stat-card,
  .contact-form-card,
  .contact-side-card,
  .contact-info-card {
    border-radius: 18px;
  }

  .feature-media-grid,
  .product-gallery-grid,
  .about-values-grid,
  .flag-grid,
  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .media-card img {
    min-height: 210px;
  }

  .feature-cta {
    padding: 1.5rem;
  }

  .product-card img,
  .product-card-featured img {
    height: 340px;
  }

  .range-card {
    grid-template-rows: 300px 1fr;
  }

  .about-stat-card {
    min-height: auto;
  }
}
