@charset "UTF-8";

/* ==========================================================================
   Playamo Casino Canada - Official Playamo Green & Gold Palette
   ========================================================================== */

:root {
  --bg-color: #0f1115;
  --surface-color: #16191f;
  --surface-elevated: #1e2229;
  --text-color: #f0f0f0;
  --text-muted: #8a9ab5;
  --accent-color: #3ec53e;        /* Playamo green – primary CTA */
  --accent-hover: #45d145;         /* brighter green hover */
  --accent-gold: #f2a900;          /* Playamo gold – secondary / VIP */
  --accent-gold-hover: #ffbe1a;
  --border-color: #252b36;
  
  --font-heading: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  --container-max: 1200px;
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 4px 20px rgba(62, 197, 62, 0.28);
  --shadow-gold: 0 4px 20px rgba(242, 169, 0, 0.28);
}

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

html {
  font-family: var(--font-body);
  background-color: #0f1115;
  color: #f0f0f0;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #0f1115;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* --------------------------------------------------------------------------
   Layout Components & Header
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------------------------------------------------------------------------
   Partner Disclosure Bar
   -------------------------------------------------------------------------- */
.partner-disclosure-bar {
  background-color: #0b0d10;
  border-bottom: 1px solid #1c2029;
  padding: 6px 12px;
  font-size: 0.76rem;
  color: #8a9ab5;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.site-header {
  background-color: #16191f;
  border-bottom: 1px solid #252b36;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo img {
  height: 36px;
  width: auto;
  max-width: 190px;
  display: block;
  object-fit: contain;
}

.brand-logo-text {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #8a9ab5;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: #f0f0f0;
  background-color: #1e2229;
}

/* Burger button - hidden on desktop */
.burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fafafa;
  border-radius: 2px;
  margin: 4px auto;
  transition: var(--transition);
}

.card-title, .section-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fafafa;
  margin-bottom: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #1e2229;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid #252b36;
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-switch a {
  color: #8a9ab5;
  padding: 2px 6px;
  border-radius: 2px;
}

.lang-switch a.active {
  color: #f0f0f0;
  background-color: #3ec53e;
}

/* --------------------------------------------------------------------------
   Language Dropdown Switcher
   -------------------------------------------------------------------------- */
.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-switcher summary {
  list-style: none;
}

.lang-switcher summary::-webkit-details-marker {
  display: none;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1e2229;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid #252b36;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f0f0f0;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  background-color: #252b36;
  border-color: #3a4252;
}

.lang-switcher[open] .lang-toggle {
  background-color: #252b36;
  border-color: #3ec53e;
}

.lang-current {
  display: inline-block;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.lang-icon {
  color: #8a9ab5;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.lang-toggle:hover .lang-icon,
.lang-switcher[open] .lang-icon {
  color: #3ec53e;
}

.lang-arrow {
  color: #8a9ab5;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.lang-switcher[open] .lang-arrow {
  transform: rotate(180deg);
  color: #3ec53e;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 165px;
  background-color: #16191f;
  border: 1px solid #252b36;
  border-radius: var(--radius-sm);
  padding: 6px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.7), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1050;
  animation: langMenuDrop 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes langMenuDrop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 4px;
  color: #c0cbdb;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lang-item:hover {
  background-color: #1e2229;
  color: #ffffff;
}

.lang-item.active {
  background-color: rgba(62, 197, 62, 0.1);
  color: #f0f0f0;
  font-weight: 600;
}

.lang-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  background-color: #252b36;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8a9ab5;
  min-width: 24px;
}

.lang-item.active .lang-badge {
  background-color: #3ec53e;
  color: #ffffff;
}

.lang-text {
  flex: 1;
}

.lang-check {
  color: #3ec53e;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Buttons & CTA Elements
   -------------------------------------------------------------------------- */
.btn, button, .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  font-family: 'Archivo', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #3ec53e 0%, #2fa82f 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(62, 197, 62, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #45d145 0%, #38be38 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(62, 197, 62, 0.5);
  color: #ffffff;
}

.btn-secondary {
  background-color: #f2a900;
  color: #0f1115;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(242, 169, 0, 0.3);
}

.btn-secondary:hover {
  background-color: #ffbe1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(242, 169, 0, 0.45);
  color: #0f1115;
}

/* --------------------------------------------------------------------------
   Hero Banner Block
   -------------------------------------------------------------------------- */
.hero-banner-section {
  position: relative;
  padding: 60px 0 40px;
  background: radial-gradient(ellipse at 60% -10%, rgba(62, 197, 62, 0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 80%, rgba(242, 169, 0, 0.05) 0%, transparent 50%),
              #0f1115;
  border-bottom: 1px solid #252b36;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #f0f0f0;
  margin-bottom: 18px;
}

.hero-content h1 .highlight {
  color: #3ec53e;
}

.hero-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #8a9ab5;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #8a9ab5;
  background-color: #16191f;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid #252b36;
}

.trust-pill svg {
  color: #3ec53e;
}

.hero-media-card {
  position: relative;
  background: #16191f;
  border: 1px solid #252b36;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

.hero-media-card img {
  border-radius: var(--radius-sm);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.bonus-badge-float {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, #3ec53e 0%, #2fa82f 100%);
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(62, 197, 62, 0.45);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Quick Actions Grid (NavBoost 2026 Component)
   -------------------------------------------------------------------------- */
.quick-actions-section {
  padding: 28px 0;
  background-color: #16191f;
  border-bottom: 1px solid #252b36;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.quick-action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #1e2229;
  border: 1px solid #252b36;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: var(--transition);
}

.quick-action-card:hover {
  border-color: #3ec53e;
  transform: translateY(-2px);
  background-color: #16191f;
  box-shadow: 0 4px 16px rgba(62, 197, 62, 0.12);
}

.quick-action-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #16191f;
  border-radius: var(--radius-sm);
  color: #3ec53e;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.quick-action-info h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 2px;
}

.quick-action-info p {
  font-size: 0.78rem;
  color: #8a9ab5;
}

/* --------------------------------------------------------------------------
   Content Section & Prose Styling
   -------------------------------------------------------------------------- */
.content-section {
  padding: 60px 0;
  border-bottom: 1px solid #27272a;
}

.section-header {
  margin-bottom: 36px;
}

h2 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f0f0f0;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #3ec53e, #f2a900);
  border-radius: var(--radius-full);
}

.answer-capsule {
  background-color: #16191f;
  border-left: 4px solid #3ec53e;
  padding: 16px 20px;
  margin: 16px 0 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.05rem;
  color: #f0f0f0;
  line-height: 1.55;
}

p {
  margin-bottom: 18px;
  color: #dde3ed;
  font-size: 1rem;
  line-height: 1.72;
}

/* --------------------------------------------------------------------------
   Games Grid - Authentic PlayAmo Casino Lobby Style
   -------------------------------------------------------------------------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 28px 0 36px;
  overflow-wrap: break-word;
}

.game-card {
  position: relative;
  background-color: #14171d;
  border: 1px solid #1f2530;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  overflow-wrap: break-word;
  hyphens: auto;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: #3ec53e;
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(62, 197, 62, 0.25);
}

.game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #1a1e27;
  display: block;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.game-card:hover .game-thumb img {
  transform: scale(1.06);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-overlay .btn {
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #3ec53e, #2eb02e);
  color: #ffffff;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(62, 197, 62, 0.45);
}

/* Compact, clean info strip below game poster */
.game-info {
  padding: 8px 10px;
  background-color: #14171d;
  border-top: 1px solid #1a202c;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.game-title {
  font-family: 'Archivo', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #f0f0f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.game-studio {
  font-size: 0.72rem;
  color: #3ec53e;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
}

/* Hide bulky paragraphs and clumsy yellow buttons inside the lobby cards! */
.game-info p {
  display: none !important;
}

.game-info .btn-secondary,
.game-info .btn-block {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Data Tables
   -------------------------------------------------------------------------- */
.table-responsive {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: var(--radius-sm);
  border: 1px solid #252b36;
  background-color: #16191f;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  overflow-x: auto;
}

th {
  background-color: #1e2229;
  color: #f0f0f0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 2px solid #252b36;
  white-space: nowrap;
}

td {
  padding: 14px 18px;
  border-bottom: 1px solid #252b36;
  color: #dde3ed;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background-color: #1e2229;
}

.badge-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background-color: rgba(62, 197, 62, 0.1);
  color: #3ec53e;
  border: 1px solid rgba(62, 197, 62, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-success {
  background-color: rgba(62, 197, 62, 0.15);
  color: #3ec53e;
  border-color: rgba(62, 197, 62, 0.3);
}

/* --------------------------------------------------------------------------
   Playamo Interactive Calculator (Official Brand Style)
   -------------------------------------------------------------------------- */
.calc-card, .calculator-card {
  background: linear-gradient(145deg, #16191f 0%, #111519 100%);
  border: 1px solid #252b36;
  border-top: 3px solid #3ec53e;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 36px 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(62, 197, 62, 0.06);
  position: relative;
  overflow: hidden;
}

.calc-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(62, 197, 62, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.calc-inputs {
  background: #111519;
  border: 1px solid #1e2534;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-field, .calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-field label, .calc-input-group label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fafafa;
  letter-spacing: -0.01em;
}

.calc-label-hint {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: #a1a1aa;
}

.calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-currency-prefix {
  position: absolute;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #3ec53e;
  pointer-events: none;
}

.calc-field input[type="number"],
.calc-field input[type="text"],
.calc-input {
  width: 100%;
  padding: 14px 18px;
  background-color: #1a1a24;
  border: 1px solid #2f2f3e;
  border-radius: var(--radius-sm);
  color: #fafafa;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.calc-field input[type="number"]:focus,
.calc-field input[type="text"]:focus,
.calc-field select:focus,
.calc-input:focus,
.calc-select:focus {
  outline: none;
  border-color: #3ec53e;
  box-shadow: 0 0 0 3px rgba(62, 197, 62, 0.18), 0 0 16px rgba(62, 197, 62, 0.2);
  background-color: #1a2030;
}

.calc-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.calc-preset-btn {
  flex: 1;
  min-width: 60px;
  padding: 8px 10px;
  background: #1e1e28;
  border: 1px solid #2e2e3e;
  border-radius: var(--radius-sm);
  color: #d4d4d8;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.calc-preset-btn:hover, .calc-preset-btn.active {
  background: #3ec53e;
  color: #ffffff;
  border-color: #3ec53e;
  box-shadow: 0 2px 10px rgba(62, 197, 62, 0.35);
}

.calc-field select,
.calc-select {
  width: 100%;
  padding: 14px 16px;
  background-color: #1a1a24;
  border: 1px solid #2f2f3e;
  border-radius: var(--radius-sm);
  color: #fafafa;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233ec53e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-result-box {
  background: #14141c;
  border: 1px solid #272734;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  transition: var(--transition);
}

.calc-result-box:hover {
  border-color: #3f3f52;
  background: #181822;
}

.calc-result-box.highlight {
  background: linear-gradient(135deg, rgba(62, 197, 62, 0.1) 0%, rgba(20, 25, 30, 0.95) 100%);
  border-color: rgba(62, 197, 62, 0.4);
  box-shadow: 0 4px 16px rgba(62, 197, 62, 0.12);
}

.calc-result-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-result-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-result-sub {
  font-size: 0.76rem;
  color: #71717a;
}

.calc-result-val {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-align: right;
  white-space: nowrap;
}

.calc-result-val.cyan {
  color: #00e5ff;
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}

.calc-result-val.red {
  color: #3ec53e;
  text-shadow: 0 0 16px rgba(62, 197, 62, 0.35);
}

.calc-result-val.gold {
  color: #ffbe1a;
  text-shadow: 0 0 16px rgba(255, 190, 26, 0.3);
}

.calc-explainer {
  margin-top: 14px;
  padding: 16px 20px;
  background: rgba(0, 229, 255, 0.05);
  border-left: 3px solid #00e5ff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #d4d4d8;
}

.calc-explainer strong {
  color: #fafafa;
}

.calc-cta-btn {
  margin-top: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #3ec53e 0%, #2fa82f 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(62, 197, 62, 0.35);
  transition: var(--transition);
}

.calc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(62, 197, 62, 0.55);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Step Lists & Actionable Guides
   -------------------------------------------------------------------------- */
.step-list {
  list-style: none;
  counter-reset: step-counter;
  margin: 28px 0;
  display: grid;
  gap: 16px;
}

.step-item {
  counter-increment: step-counter;
  display: flex;
  gap: 18px;
  background-color: #16191f;
  border: 1px solid #252b36;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}

.step-item::before {
  content: counter(step-counter);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #3ec53e 0%, #2fa82f 100%);
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

.step-content h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-content p {
  margin-bottom: 0;
  color: #8a9ab5;
}

/* --------------------------------------------------------------------------
   Pros & Cons Box
   -------------------------------------------------------------------------- */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.pros-box, .cons-box {
  background-color: #16191f;
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid #252b36;
}

.pros-box {
  border-top: 4px solid #3ec53e;
}

.cons-box {
  border-top: 4px solid #f2a900;
}

.pros-box h3, .cons-box h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.pros-list, .cons-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.pros-list li, .cons-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  gap: 10px;
}

.pros-list li::before {
  content: '✓';
  color: #3ec53e;
  font-weight: bold;
}

.cons-list li::before {
  content: '✕';
  color: #f2a900;
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-grid {
  display: grid;
  gap: 14px;
  margin: 32px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.faq-item {
  background-color: #16191f;
  border: 1px solid #252b36;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 22px;
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f0f0f0;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #3ec53e;
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
  color: #f2a900;
}

.faq-item[open] summary {
  background-color: #1e2229;
  border-bottom: 1px solid #252b36;
}

.faq-answer {
  padding: 18px 22px;
  color: #dde3ed;
  font-size: 0.95rem;
  line-height: 1.65;
}

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

/* --------------------------------------------------------------------------
   Author & Fact Check Box
   -------------------------------------------------------------------------- */
.author-box {
  display: flex;
  gap: 20px;
  background-color: #16191f;
  border: 1px solid #252b36;
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 40px 0 20px;
  align-items: center;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background-color: #1e2229;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3ec53e;
  font-size: 1.8rem;
  flex-shrink: 0;
  border: 2px solid #252b36;
}

.author-meta h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 2px;
}

.author-meta .author-title {
  font-size: 0.85rem;
  color: #8a9ab5;
  margin-bottom: 6px;
}

.author-meta p {
  font-size: 0.85rem;
  color: #8a9ab5;
  margin-bottom: 0;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Internal Links Block
   -------------------------------------------------------------------------- */
.internal-links-block {
  background-color: #16191f;
  border: 1px solid #252b36;
  border-radius: var(--radius-sm);
  padding: 24px;
  margin: 32px 0;
}

.internal-links-block h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #f0f0f0;
}

.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.internal-link-card {
  display: block;
  padding: 12px 16px;
  background-color: #1e2229;
  border: 1px solid #252b36;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: #8a9ab5;
  transition: var(--transition);
}

.internal-link-card:hover {
  color: #f0f0f0;
  border-color: #3ec53e;
  background-color: #0f1115;
}

/* --------------------------------------------------------------------------
   Footer & Legal Disclaimer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #16191f;
  border-top: 1px solid #252b36;
  padding: 48px 0 32px;
  margin-top: auto;
  font-size: 0.88rem;
  color: #8a9ab5;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-col h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #f0f0f0;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col a:hover {
  color: #3ec53e;
}

.responsible-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
}

.rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background-color: #1e2229;
  color: #3ec53e;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  border: 1px solid #252b36;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #252b36;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-disclaimer-text {
  margin-bottom: 12px;
  color: #a1a1aa;
}

/* --------------------------------------------------------------------------
   Sticky Mobile CTA
   -------------------------------------------------------------------------- */
.sticky-cta-bar {
  display: none;
  background: rgba(18, 22, 28, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #252b36;
  padding: 8px 14px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-offer-text {
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.sticky-offer-text span {
  display: block;
  font-size: 0.72rem;
  color: #3ec53e;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sticky-cta-inner .btn {
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #3ec53e, #2eb02e);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(62, 197, 62, 0.35);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .sticky-cta-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
  body {
    padding-bottom: 70px;
  }
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0 28px;
  }

  /* Header mobile layout */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .header-inner {
    position: relative;
    height: 56px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .brand-logo img {
    height: 30px;
    width: auto;
    max-width: 150px;
  }
  .brand-logo-text {
    display: none; /* logo.svg contains full vector PLAYAMO branding */
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }
  .header-actions .btn {
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
  }
  .lang-toggle {
    padding: 5px 8px;
    font-size: 0.78rem;
    gap: 4px;
  }
  .lang-current {
    font-size: 0.78rem;
  }
  .burger {
    order: 10;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    padding: 5px;
    background: #1e2229;
    border: 1px solid #252b36;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    cursor: pointer;
  }
  .burger span {
    display: block;
    width: 17px;
    height: 2px;
    background-color: #f0f0f0;
    border-radius: 2px;
    margin: 0 auto;
    transition: var(--transition);
  }
  .burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Dropdown mobile menu */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #16191f;
    border-top: 1px solid #252b36;
    border-bottom: 2px solid #3ec53e;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.85);
    padding: 12px 16px;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
  }
  .main-nav[data-open="true"] {
    display: flex;
  }
  .main-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #f0f0f0;
    border-radius: var(--radius-sm);
    background-color: #1e2229;
    border: 1px solid #252b36;
    transition: var(--transition);
  }
  .main-nav .nav-link:hover,
  .main-nav .nav-link.active {
    background-color: #252b36;
    color: #3ec53e;
    border-color: #3ec53e;
  }
}

/* Extra small screens <= 400px */
@media (max-width: 400px) {
  .games-grid {
    gap: 8px;
  }
  .header-actions {
    gap: 4px;
  }
  .header-actions .btn {
    padding: 5px 9px;
    font-size: 0.74rem;
  }
  .lang-toggle {
    padding: 5px 6px;
    font-size: 0.72rem;
    gap: 2px;
  }
  .brand-logo img {
    height: 24px;
  }
}

