/* =====================================================
   CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
  --color-primary: #00D26A;
  --color-primary-hover: #00B85D;
  --color-primary-glow: rgba(0, 210, 106, 0.25);
  --color-primary-subtle: rgba(0, 210, 106, 0.08);
  --color-bg: #0E1117;
  --color-bg-secondary: #171C24;
  --color-card: #1D2430;
  --color-card-hover: #232B3A;
  --color-border: #2A3343;
  --color-text: #FFFFFF;
  --color-text-secondary: #AAB3C5;
  --color-text-muted: #7E889B;
  --color-accent: #FFC83D;
  --color-success: #32D583;
  --font-heading: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px var(--color-primary-glow);
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --container-max: 1160px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--color-primary-hover);
}

a:focus-visible,
button:focus-visible,
details:focus-visible summary {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

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

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  margin-bottom: 1rem;
}

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

code {
  font-family: var(--font-mono);
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  padding: 0.15em 0.45em;
  border-radius: 6px;
  font-size: 0.92em;
  font-weight: 600;
}

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

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

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.content-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--space-2xl) 0;
}

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

.section-intro {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

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

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-primary);
  color: #0E1117;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #0E1117;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
  border-radius: 14px;
}

.btn-sm {
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--space-md);
}

.logo-link {
  display: flex;
  flex-shrink: 0;
}

.logo {
  height: 28px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

.nav-list a {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-list a:hover {
  color: var(--color-text);
}

.header-cta {
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  padding: 8rem 0 var(--space-2xl);
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,210,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 210, 106, 0.1);
  border: 1px solid rgba(0, 210, 106, 0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.hero h1 {
  margin-bottom: var(--space-sm);
}

.highlight {
  color: var(--color-primary);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

/* PROMO WIDGET */
.promo-widget {
  background: var(--color-card);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-glow), var(--shadow-md);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  position: relative;
  overflow: hidden;
}

.promo-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.promo-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.promo-code-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.promo-code {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text);
  background: none;
  padding: 0;
  letter-spacing: 0.04em;
  user-select: all;
  flex: 1;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 210, 106, 0.15);
  border: 1px solid rgba(0, 210, 106, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.copy-btn:hover {
  background: rgba(0, 210, 106, 0.25);
  border-color: var(--color-primary);
}

.copy-btn .check-icon {
  display: none;
}

.copy-btn.copied .copy-icon {
  display: none;
}

.copy-btn.copied .check-icon {
  display: block;
}

.copy-btn.copied {
  background: rgba(50, 213, 131, 0.2);
  border-color: var(--color-success);
  color: var(--color-success);
}

.promo-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-success);
  margin-top: 0.6rem;
}

.promo-status svg {
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* HERO CTAs */
.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* HERO VISUAL */
.hero-visual {
  flex-shrink: 0;
  position: relative;
}

.hero-skins-img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* =====================================================
   INTRO SECTION
   ===================================================== */
.intro-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.intro-section p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =====================================================
   STEPS GRID
   ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.step-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
}

.step-card:hover {
  border-color: rgba(0, 210, 106, 0.3);
  background: var(--color-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #0E1117;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.step-card h3 {
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}

/* =====================================================
   BONUS CARDS
   ===================================================== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.bonus-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.bonus-card:hover {
  border-color: rgba(0, 210, 106, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.bonus-icon {
  margin-bottom: var(--space-sm);
  display: flex;
  justify-content: center;
}

.bonus-card h3 {
  margin-bottom: 0.5rem;
}

.bonus-card p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}

.bonus-text {
  margin-bottom: var(--space-lg);
}

.bonus-text p {
  font-size: 1.02rem;
  line-height: 1.8;
}

/* PAYMENT METHODS */
.payment-methods {
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.payment-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.payment-img {
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.85;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: start;
}

.about-text p {
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-visual {
  position: relative;
}

.about-partner-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
}

.faceit-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
}

.faceit-arrow {
  width: 30px;
  height: auto;
}

.faceit-logo {
  width: 100px;
  height: auto;
}

.faceit-badge span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-left: auto;
}

/* =====================================================
   ARTICLES GRID
   ===================================================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.article-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  color: var(--color-text-secondary);
}

.article-card:hover {
  border-color: rgba(0, 210, 106, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--color-text-secondary);
}

.article-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.article-body {
  padding: var(--space-md);
}

.article-body h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.article-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* =====================================================
   TABLES
   ===================================================== */
.terms-table-wrap,
.codes-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-card);
}

.terms-table th,
.terms-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.terms-table tr:last-child th,
.terms-table tr:last-child td {
  border-bottom: none;
}

.terms-table th {
  color: var(--color-text-muted);
  font-weight: 600;
  white-space: nowrap;
  width: 180px;
  background: rgba(0,0,0,0.15);
}

.terms-table td {
  color: var(--color-text-secondary);
}

.codes-table thead {
  background: rgba(0,0,0,0.2);
}

.codes-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.codes-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  vertical-align: middle;
}

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

.codes-table tbody tr {
  transition: background var(--transition-fast);
}

.codes-table tbody tr:hover {
  background: rgba(0, 210, 106, 0.04);
}

.status-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-success);
  white-space: nowrap;
}

/* =====================================================
   FACEIT BANNER
   ===================================================== */
.faceit-section {
  padding: var(--space-xl) 0;
}

.faceit-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  gap: var(--space-lg);
  overflow: hidden;
  position: relative;
}

.faceit-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,100,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.faceit-banner-text {
  flex: 1;
}

.faceit-banner-logo {
  width: 140px;
  height: auto;
  margin-bottom: var(--space-sm);
}

.faceit-banner-text p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 500px;
}

.faceit-mobile-img {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item[open] {
  border-color: rgba(0, 210, 106, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
  transition: background var(--transition-fast);
  user-select: none;
}

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

.faq-question::marker {
  content: '';
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--transition-base);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

/* =====================================================
   LAST UPDATED
   ===================================================== */
.last-updated-section {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
}

.last-updated {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-logo {
  width: 110px;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 400px;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-page {
  padding-top: calc(64px + var(--space-2xl));
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: var(--space-lg);
  margin-bottom: 0.75rem;
}

.legal-page p {
  line-height: 1.85;
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-partner-img {
    max-width: 500px;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(14, 17, 23, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding: 5.5rem 0 var(--space-xl);
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-skins-img {
    width: 140px;
  }

  .verified-badge {
    justify-content: center;
  }

  .promo-widget {
    margin-left: auto;
    margin-right: auto;
    padding: var(--space-md);
  }

  .hero-ctas {
    justify-content: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .terms-table th {
    width: 130px;
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
  }

  .terms-table td {
    font-size: 0.88rem;
    padding: 0.8rem 1rem;
  }

  .codes-table th,
  .codes-table td {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .codes-table th:nth-child(2),
  .codes-table td:nth-child(2) {
    min-width: 200px;
  }

  .faceit-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }

  .faceit-banner-text p {
    margin: 0 auto;
  }

  .faceit-banner-logo {
    margin: 0 auto var(--space-sm);
  }

  .faceit-mobile-img {
    width: 120px;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }
}

@media (max-width: 480px) {
  .promo-code {
    font-size: 1.3rem;
  }

  .promo-code-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .copy-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .promo-widget {
    text-align: center;
  }

  .promo-code-row {
    align-items: center;
  }
}