/* Theme Name: flavor | Theme URI: https://csgoempirereferral.com | Version: 2.4.1 */

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

:root {
  /* Core palette */
  --bg-base: #0a0e1a;
  --bg-card: #131a2e;
  --bg-card-alt: #101728;
  --bg-surface: #0f1525;
  --bg-elevated: #182038;

  /* Accent: warm gold / amber */
  --gold: #e8a924;
  --gold-light: #f5c542;
  --gold-dark: #c48b10;
  --gold-glow: rgba(232, 169, 36, 0.35);

  /* Accent: electric cyan */
  --cyan: #00d4ff;
  --cyan-dark: #009ec2;
  --cyan-glow: rgba(0, 212, 255, 0.25);

  /* Text */
  --text-primary: #f0f0f5;
  --text-secondary: #8892a4;
  --text-muted: #5a6478;
  --text-gold: #f5c542;

  /* Borders & dividers */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(232, 169, 36, 0.3);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(4, 6, 18, 0.4);
  --shadow-md: 0 4px 20px rgba(4, 6, 18, 0.55);
  --shadow-lg: 0 8px 40px rgba(4, 6, 18, 0.7);
  --shadow-gold: 0 4px 24px rgba(232, 169, 36, 0.2);
  --shadow-cyan: 0 4px 24px rgba(0, 212, 255, 0.15);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Section padding */
  --section-py: 80px;
  --section-py-lg: 120px;

  /* Layout */
  --container-max: 1140px;
  --navbar-height: 72px;

  /* Typography */
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Cascadia Code", monospace;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.25s;
  --duration-slow: 0.4s;
}


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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0, 212, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(232, 169, 36, 0.03) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}

a:hover {
  color: var(--gold-light);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  color: var(--text-secondary);
  margin-bottom: 1em;
}

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

strong {
  color: var(--text-primary);
  font-weight: 600;
}

::selection {
  background: rgba(232, 169, 36, 0.3);
  color: var(--text-primary);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}


/* ==========================================================================
   2. LAYOUT: CONTAINER & SECTIONS
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 32px;
  }
}

.section {
  position: relative;
  padding-block: var(--section-py);
  z-index: 1;
}

.section-alt {
  position: relative;
  padding-block: var(--section-py);
  background: var(--bg-surface);
  z-index: 1;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.5) 0%, transparent 15%, transparent 85%, rgba(10, 14, 26, 0.5) 100%);
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  margin-bottom: var(--space-sm);
}

.section-title p {
  max-width: 600px;
  margin-inline: auto;
}


/* ==========================================================================
   3. NAVIGATION
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition:
    background var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.92);
  box-shadow: 0 1px 0 var(--border-subtle), var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}

.navbar-brand:hover {
  color: var(--gold-light);
}

.navbar-brand img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition:
    transform var(--duration-normal) var(--ease-out),
    opacity var(--duration-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: calc(var(--navbar-height) + 24px) 28px 28px;
    background: rgba(15, 21, 37, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border-subtle);
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-out);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links a::after {
    display: none;
  }
}


/* ==========================================================================
   4. HERO
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 85vh;
  padding-top: calc(var(--navbar-height) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(232, 169, 36, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 70% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-base) 0%, rgba(15, 21, 37, 0.6) 50%, var(--bg-base) 100%);
  animation: heroGradient 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGradient {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.4;
  pointer-events: none;
  animation: grainShift 8s steps(10) infinite;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(3%, 1%); }
  30% { transform: translate(-1%, 4%); }
  40% { transform: translate(4%, -2%); }
  50% { transform: translate(-3%, 2%); }
  60% { transform: translate(1%, -4%); }
  70% { transform: translate(-4%, 3%); }
  80% { transform: translate(2%, -1%); }
  90% { transform: translate(-2%, 4%); }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(232, 169, 36, 0.1);
  border: 1px solid rgba(232, 169, 36, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}


/* ==========================================================================
   5. PAGE HEADER (inner pages)
   ========================================================================== */

.page-header {
  position: relative;
  padding-top: calc(var(--navbar-height) + 48px);
  padding-bottom: 48px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(232, 169, 36, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.page-header p {
  max-width: 600px;
  font-size: 1.05rem;
}


/* ==========================================================================
   6. BREADCRUMB
   ========================================================================== */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: var(--space-lg);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb span {
  color: var(--text-muted);
}

.breadcrumb .current {
  color: var(--text-secondary);
}


/* ==========================================================================
   7. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out),
    background var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  color: #0a0e1a;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: var(--shadow-gold);
  animation: btnPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
  color: #0a0e1a;
  box-shadow: 0 6px 32px rgba(232, 169, 36, 0.4);
  transform: translateY(-1px);
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 4px 24px rgba(232, 169, 36, 0.2);
  }
  50% {
    box-shadow: 0 4px 32px rgba(232, 169, 36, 0.35);
  }
}

.btn-secondary {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-light);
  box-shadow: none;
}

.btn-secondary:hover {
  color: var(--gold-light);
  border-color: rgba(232, 169, 36, 0.3);
  background: rgba(232, 169, 36, 0.06);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-cyan {
  color: #0a0e1a;
  background: linear-gradient(135deg, var(--cyan) 0%, #22e0ff 100%);
  box-shadow: var(--shadow-cyan);
}

.btn-cyan:hover {
  color: #0a0e1a;
  box-shadow: 0 6px 32px rgba(0, 212, 255, 0.35);
  transform: translateY(-1px);
}


/* ==========================================================================
   8. CARDS & GRIDS
   ========================================================================== */

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out),
    border-color var(--duration-normal) var(--ease-out);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(232, 169, 36, 0.08);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.card-icon.cyan {
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.93rem;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.cols-2 {
  grid-template-columns: 1fr;
}

.card-grid.cols-3 {
  grid-template-columns: 1fr;
}

.card-grid.cols-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid.cols-2,
  .card-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ==========================================================================
   9. PROMO BOX (referral code display)
   ========================================================================== */

.promo-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(232, 169, 36, 0.06) 0%, rgba(0, 212, 255, 0.04) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  text-align: center;
}

.promo-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(232, 169, 36, 0.15), transparent 60%, rgba(0, 212, 255, 0.1));
  z-index: -1;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
}

.promo-box-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.promo-box-code {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid rgba(232, 169, 36, 0.2);
  border-radius: var(--radius-md);
  letter-spacing: 0.04em;
  user-select: all;
}

.promo-box-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.promo-box-copy:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.promo-box-copy.copied {
  color: #34d399;
  border-color: #34d399;
}

@media (min-width: 640px) {
  .promo-box {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
}


/* ==========================================================================
   10. TABLES
   ========================================================================== */

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead {
  background: var(--bg-card);
}

thead th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  vertical-align: middle;
}

tbody tr:nth-child(even) {
  background: rgba(19, 26, 46, 0.5);
}

tbody tr:nth-child(odd) {
  background: rgba(15, 21, 37, 0.3);
}

tbody tr:hover {
  background: rgba(232, 169, 36, 0.04);
}

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


/* ==========================================================================
   11. COMPARISON TABLE
   ========================================================================== */

.comparison-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.comparison-table table {
  table-layout: fixed;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th:not(:first-child) {
  text-align: center;
}

.comparison-table tbody td:not(:first-child) {
  text-align: center;
}

.comparison-table .check {
  color: #34d399;
  font-weight: 700;
}

.comparison-table .cross {
  color: #ef4444;
  font-weight: 700;
}

.comparison-table .highlight-col {
  background: rgba(232, 169, 36, 0.05);
  border-left: 1px solid rgba(232, 169, 36, 0.12);
  border-right: 1px solid rgba(232, 169, 36, 0.12);
}


/* ==========================================================================
   12. STEPS (numbered step list)
   ========================================================================== */

.steps {
  position: relative;
  counter-reset: step-counter;
  padding-left: 0;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 23px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--cyan) 100%);
  opacity: 0.25;
  border-radius: 1px;
}

.step-item {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}

.step-item:last-child {
  padding-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg-base);
  font-size: 1.1rem;
  font-weight: 700;
  counter-increment: step-counter;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}

.step-content h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.step-content p {
  font-size: 0.93rem;
}

@media (max-width: 640px) {
  .steps::before {
    left: 19px;
  }
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .step-item {
    gap: 16px;
  }
}


/* ==========================================================================
   13. PROS & CONS
   ========================================================================== */

.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-list,
.cons-list {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.pros-list {
  background: rgba(52, 211, 153, 0.03);
  border-color: rgba(52, 211, 153, 0.12);
}

.cons-list {
  background: rgba(239, 68, 68, 0.03);
  border-color: rgba(239, 68, 68, 0.12);
}

.pros-list h4,
.cons-list h4 {
  margin-bottom: var(--space-md);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-list h4 { color: #34d399; }
.cons-list h4 { color: #ef4444; }

.pros-list li,
.cons-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.pros-list li:last-child,
.cons-list li:last-child {
  border-bottom: none;
}

.pros-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: 700;
}

.cons-list li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}


/* ==========================================================================
   14. FAQ ACCORDION
   ========================================================================== */

.faq-accordion {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--duration-normal) var(--ease-out);
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-item.active {
  border-color: rgba(232, 169, 36, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--duration-fast) var(--ease-out);
}

.faq-question:hover {
  background: var(--bg-elevated);
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-question::after {
  content: "\2212";
  color: var(--gold);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ==========================================================================
   15. ICON FEATURES
   ========================================================================== */

.icon-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: var(--space-lg);
}

.icon-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(232, 169, 36, 0.08);
  color: var(--gold);
  font-size: 1.2rem;
}

.icon-feature-icon.cyan {
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
}

.icon-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.icon-feature p {
  font-size: 0.88rem;
  margin: 0;
}


/* ==========================================================================
   16. TAGS & BADGES
   ========================================================================== */

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.tag.gold {
  background: rgba(232, 169, 36, 0.1);
  color: var(--gold-light);
  border-color: rgba(232, 169, 36, 0.2);
}

.tag.cyan {
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.15);
}

.tag.green {
  background: rgba(52, 211, 153, 0.08);
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.15);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg-base);
}

.badge.outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(232, 169, 36, 0.3);
}


/* ==========================================================================
   17. RATING STARS
   ========================================================================== */

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.rating-stars .star {
  color: var(--gold);
  font-size: 1rem;
}

.rating-stars .star.empty {
  color: var(--text-muted);
  opacity: 0.4;
}

.rating-stars .rating-value {
  margin-left: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.rating-stars .rating-count {
  margin-left: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ==========================================================================
   18. SIDEBAR CODE (floating sidebar promo)
   ========================================================================== */

.sidebar-code {
  position: sticky;
  top: calc(var(--navbar-height) + 24px);
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  text-align: center;
}

.sidebar-code::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 1px;
}

.sidebar-code h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.sidebar-code .code-display {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  padding: 14px;
  background: rgba(10, 14, 26, 0.5);
  border: 1px solid rgba(232, 169, 36, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  user-select: all;
}

.sidebar-code .btn {
  width: 100%;
}


/* ==========================================================================
   19. CTA STICKY (mobile bottom bar)
   ========================================================================== */

.cta-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  z-index: 900;
  box-shadow: 0 -4px 24px rgba(4, 6, 18, 0.6);
}

.cta-sticky .container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-sticky .cta-text {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cta-sticky .cta-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.cta-sticky .btn {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-sticky {
    display: block;
  }

  /* Add bottom padding so content isn't hidden behind sticky bar */
  body {
    padding-bottom: 80px;
  }
}


/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.footer {
  position: relative;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  z-index: 1;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--border-light) 50%, transparent 90%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}

.footer-brand p {
  font-size: 0.88rem;
  margin-top: var(--space-md);
  max-width: 320px;
}

.footer h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--text-secondary);
}

.responsible-gaming {
  padding: var(--space-md);
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: var(--space-lg);
}


/* ==========================================================================
   21. SCROLL-TRIGGERED ANIMATIONS
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for grid children */
.stagger > :nth-child(1) { transition-delay: 0ms; }
.stagger > :nth-child(2) { transition-delay: 80ms; }
.stagger > :nth-child(3) { transition-delay: 160ms; }
.stagger > :nth-child(4) { transition-delay: 240ms; }
.stagger > :nth-child(5) { transition-delay: 320ms; }
.stagger > :nth-child(6) { transition-delay: 400ms; }


/* ==========================================================================
   22. UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--gold-light); }
.text-cyan { color: var(--cyan); }
.text-muted { color: var(--text-secondary); }
.text-white { color: var(--text-primary); }

.text-sm { font-size: 0.85rem; }
.text-lg { font-size: 1.15rem; }
.text-xl { font-size: 1.35rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-mono { font-family: var(--font-mono); }

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Margin top */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.mt-6 { margin-top: var(--space-2xl); }

/* Margin bottom */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
.mb-6 { margin-bottom: var(--space-2xl); }

/* Padding helpers */
.py-section { padding-block: var(--section-py); }
.py-section-lg { padding-block: var(--section-py-lg); }

.d-flex { display: flex; }
.d-grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.w-full { width: 100%; }
.mx-auto { margin-inline: auto; }


/* ==========================================================================
   23. WORDPRESS CONTENT STYLES
   ========================================================================== */

.entry-content {
  max-width: 720px;
  margin-inline: auto;
}

.entry-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
}

.entry-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.entry-content p {
  margin-bottom: var(--space-md);
}

.entry-content ul,
.entry-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.entry-content blockquote {
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--gold);
  background: rgba(232, 169, 36, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.entry-content blockquote p {
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
}

.entry-content img {
  border-radius: var(--radius-md);
  margin-block: var(--space-lg);
}

.entry-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 212, 255, 0.3);
  transition:
    color var(--duration-fast) var(--ease-out),
    text-decoration-color var(--duration-fast) var(--ease-out);
}

.entry-content a:hover {
  color: var(--gold-light);
  text-decoration-color: rgba(245, 197, 66, 0.4);
}

.entry-content code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  padding: 2px 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--cyan);
}

.entry-content pre {
  margin: var(--space-lg) 0;
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.entry-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.entry-content hr {
  border: none;
  height: 1px;
  background: var(--border-subtle);
  margin: var(--space-xl) 0;
}


/* ==========================================================================
   24. TWO-COLUMN CONTENT + SIDEBAR LAYOUT
   ========================================================================== */

.content-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .content-sidebar {
    grid-template-columns: 1fr 320px;
    gap: 48px;
  }
}


/* ==========================================================================
   25. NOTIFICATION / INFO BOXES
   ========================================================================== */

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.info-box.info {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.12);
  color: var(--text-secondary);
}

.info-box.warning {
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.12);
  color: var(--text-secondary);
}

.info-box.success {
  background: rgba(52, 211, 153, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.12);
  color: var(--text-secondary);
}

.info-box-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 2px;
}


/* ==========================================================================
   26. PAGINATION
   ========================================================================== */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-xl);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.pagination a:hover {
  background: var(--bg-card);
  border-color: var(--border-light);
  color: var(--text-primary);
}

.pagination .current {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-color: var(--gold);
  color: var(--bg-base);
  font-weight: 700;
}


/* ==========================================================================
   27. FORMS (for newsletter, contact, search)
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition:
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-inline {
  display: flex;
  gap: 12px;
}

.form-inline .form-input {
  flex: 1;
}


/* ==========================================================================
   28. SEARCH
   ========================================================================== */

.search-form {
  position: relative;
  max-width: 480px;
  margin-inline: auto;
}

.search-form .form-input {
  padding-right: 48px;
}

.search-form button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast) var(--ease-out);
}

.search-form button:hover {
  color: var(--gold);
}


/* ==========================================================================
   29. TOOLTIPS
   ========================================================================== */

[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-primary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
  z-index: 100;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ==========================================================================
   30. SCROLL-TO-TOP BUTTON
   ========================================================================== */

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity var(--duration-normal) var(--ease-out),
    transform var(--duration-normal) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
  z-index: 800;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--bg-elevated);
  color: var(--gold);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 88px; /* Above sticky CTA bar */
    right: 16px;
  }
}


/* ==========================================================================
   31. LOADING & SKELETON STATES
   ========================================================================== */

.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-card) 25%,
    var(--bg-elevated) 50%,
    var(--bg-card) 75%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 14px;
  margin-bottom: 10px;
  width: 80%;
}

.skeleton-text:last-child {
  width: 50%;
}

.skeleton-heading {
  height: 24px;
  margin-bottom: 16px;
  width: 60%;
}

.skeleton-image {
  height: 200px;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
}


/* ==========================================================================
   32. OVERLAY & MODAL BASE
   ========================================================================== */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 18, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--duration-normal) var(--ease-out),
    visibility var(--duration-normal);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--duration-normal) var(--ease-out),
    transform var(--duration-normal) var(--ease-out),
    visibility var(--duration-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  transition:
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.modal-close:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}


/* ==========================================================================
   33. TESTIMONIALS / REVIEW CARDS
   ========================================================================== */

.testimonial-card {
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.testimonial-card .rating-stars {
  margin-bottom: var(--space-md);
}

.testimonial-card blockquote {
  font-size: 0.93rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg-base);
}

.testimonial-card .author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-card .author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ==========================================================================
   34. GAME MODE CARDS (csgoempire game modes)
   ========================================================================== */

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition:
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.game-card-image {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  background: var(--bg-surface);
  overflow: hidden;
}

.game-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-body {
  padding: var(--space-lg);
}

.game-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.game-card-body p {
  font-size: 0.88rem;
}


/* ==========================================================================
   35. COUNTDOWN / EXPIRY TIMER
   ========================================================================== */

.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: var(--space-lg) 0;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  padding: 12px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.countdown-unit .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}

.countdown-unit .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 4px;
}


/* ==========================================================================
   36. ADDITIONAL COMPONENT: VALUE PROPOSITION STRIP
   ========================================================================== */

.value-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: var(--space-lg) 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.value-item .icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.value-item strong {
  color: var(--text-primary);
}


/* ==========================================================================
   37. ACCESSIBILITY & REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--bg-base);
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  top: 0;
  outline: none;
}


/* ==========================================================================
   38. RESPONSIVE BREAKPOINTS - TABLET
   ========================================================================== */

@media (min-width: 768px) {
  :root {
    --section-py: 100px;
    --section-py-lg: 140px;
  }

  .hero {
    min-height: 90vh;
  }

  .page-header {
    padding-top: calc(var(--navbar-height) + 64px);
    padding-bottom: 64px;
  }
}


/* ==========================================================================
   39. RESPONSIVE BREAKPOINTS - DESKTOP
   ========================================================================== */

@media (min-width: 1024px) {
  :root {
    --section-py: 110px;
  }

  .card {
    padding: 28px;
  }
}

@media (min-width: 1200px) {
  :root {
    --section-py: 120px;
  }

  .hero {
    min-height: 92vh;
  }
}


/* ==========================================================================
   40. PRINT STYLES
   ========================================================================== */

@media print {
  body {
    background: #fff;
    color: #1a1a1a;
  }

  body::before,
  .navbar,
  .cta-sticky,
  .scroll-top,
  .hero::before,
  .hero::after {
    display: none !important;
  }

  .card {
    border: 1px solid #ddd;
    box-shadow: none;
    page-break-inside: avoid;
  }

  a {
    color: #1a1a1a;
    text-decoration: underline;
  }

  .btn-primary {
    background: #eee;
    color: #1a1a1a;
    box-shadow: none;
  }
}

/* Section images */
.section-img {
  display: block;
  max-width: 480px;
  width: 100%;
  height: auto;
  margin: 2rem auto;
  border-radius: 12px;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .section-img { margin: 2.5rem auto; }
}
