/* ==========================================================================
   GAMERS SUPPORT - MODERN & COZY COMPANION APPS HUB
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Core Cozy Obsidian Dark Palette */
  --bg-primary: #090b10;
  --bg-secondary: #0f131d;
  --bg-tertiary: #161c2b;
  --bg-card: rgba(20, 26, 40, 0.72);
  --bg-card-hover: rgba(28, 36, 56, 0.88);
  
  /* Cozy Warm Ember & Gold Accents */
  --ember-gold: #f59e0b;
  --ember-gold-light: #fcd34d;
  --ember-gold-glow: rgba(245, 158, 11, 0.28);
  --ember-orange: #f97316;
  --ember-red: #ef4444;

  /* Astral Rune Cyan & Azure (RS3 & Mystic) */
  --rune-cyan: #38bdf8;
  --rune-cyan-light: #7dd3fc;
  --rune-cyan-glow: rgba(56, 189, 248, 0.25);
  --rune-purple: #a855f7;

  /* Discord Blurple */
  --discord-blurple: #5865f2;
  --discord-blurple-hover: #4752c4;
  --discord-glow: rgba(88, 101, 242, 0.35);

  /* Status Colors */
  --profit-green: #10b981;
  --profit-green-glow: rgba(16, 185, 129, 0.25);

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Text Colors */
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --text-highlight: #fef08a;

  /* Borders & Glass */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-cozy: rgba(245, 158, 11, 0.25);
  --border-active: rgba(245, 158, 11, 0.6);
  --glass-blur: blur(14px);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px var(--ember-gold-glow);
  --shadow-glow-cyan: 0 0 35px var(--rune-cyan-glow);

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient Canvas Background */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* Ambient Glow Blobs */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}

.glow-top-left {
  top: -100px;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--ember-gold), transparent 70%);
}

.glow-top-right {
  top: -50px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--rune-cyan), transparent 70%);
}

.glow-bottom-center {
  bottom: -200px;
  left: 30%;
  width: 700px;
  height: 600px;
  background: radial-gradient(circle, var(--ember-orange), transparent 70%);
}

/* Glass Panel Utility */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.glass-panel:hover {
  border-color: var(--border-cozy);
}

.glow-border {
  border-color: var(--border-cozy);
  box-shadow: var(--shadow-glow);
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 20%, var(--ember-gold-light) 60%, var(--ember-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--ember-gold-light);
}

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

/* --- Buttons & Links --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--ember-gold) 0%, var(--ember-orange) 100%);
  color: #090b10;
  box-shadow: 0 4px 18px var(--ember-gold-glow);
}

.btn-primary:hover {
  box-shadow: 0 6px 26px var(--ember-gold-glow);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-cozy);
  transform: translateY(-2px);
}

.btn-discord {
  background: var(--discord-blurple);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--discord-glow);
}

.btn-discord:hover {
  background: var(--discord-blurple-hover);
  box-shadow: 0 6px 22px var(--discord-glow);
  transform: translateY(-2px);
}

/* Smaller, compact variant for the top navigation bar */
.btn-discord-nav {
  background: var(--discord-blurple);
  color: #ffffff;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px var(--discord-glow);
}

.btn-discord-nav:hover {
  background: var(--discord-blurple-hover);
  box-shadow: 0 4px 14px var(--discord-glow);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  background: rgba(9, 11, 16, 0.88);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.site-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity var(--transition-fast);
}

.brand-logo:hover .site-logo-img {
  opacity: 0.85;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.6rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--ember-gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 1.75rem;
  margin-left: 0.5rem;
  border-left: 1px solid var(--border-subtle);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.3rem;
  cursor: pointer;
}

.mobile-drawer {
  display: none;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem;
}

.mobile-drawer.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
}

.hero-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-cozy);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ember-gold-light);
  margin-bottom: 1.5rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember-gold);
  box-shadow: 0 0 8px var(--ember-gold);
}

.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 2.75rem;
}

/* Featured Card in Hero */
.hero-featured-card {
  width: 100%;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.06) 0%, var(--bg-card) 35%);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: left;
}

.featured-badge-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.featured-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ember-gold);
}

.version-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

.featured-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.featured-app-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 0.35rem;
}

.featured-app-sub {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Combined Logos Box in Hero */
.combined-logos-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(10, 13, 19, 0.85);
  border: 1px solid var(--border-cozy);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.dual-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.combined-logo-img {
  max-height: 44px;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.dual-logo-plus {
  font-size: 1.1rem;
  color: var(--ember-gold);
  font-weight: 700;
}

/* Combined Feature Tags Grid */
.combined-tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.combined-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* Featured Action CTA */
.featured-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.btn-hero-download {
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-action-icon {
  font-size: 1.8rem;
}

.btn-text-block {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-main-text {
  font-size: 1.05rem;
  font-weight: 700;
}

.btn-sub-text {
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 500;
}

.btn-arrow-icon {
  font-size: 1.1rem;
  margin-left: 0.3rem;
  transition: transform var(--transition-fast);
}

.btn-hero-download:hover .btn-arrow-icon {
  transform: translateY(2px);
}

.btn-hero-discord {
  padding: 1.1rem 1.6rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* Featured Card Footer Guarantees */
.featured-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.guarantee-item i {
  color: var(--ember-gold);
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ember-gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --- APPS CATALOG SECTION --- */
.apps-ecosystem-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.apps-catalog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

@media (max-width: 860px) {
  .apps-catalog-grid {
    grid-template-columns: 1fr;
  }
}

.app-catalog-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.flagship-app-card {
  border-color: var(--border-cozy);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, var(--bg-card) 30%);
}

.app-card-badge-status {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.app-card-badge-status.available {
  background: rgba(16, 185, 129, 0.15);
  color: var(--profit-green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--profit-green);
  box-shadow: 0 0 8px var(--profit-green);
}

.app-card-badge-status.planned {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.app-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-right: 7rem;
}

.app-header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.app-avatar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--ember-gold), var(--ember-orange));
  color: #090b10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 0 16px var(--ember-gold-glow);
}

.future-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  box-shadow: none;
}

.app-name {
  font-size: 1.4rem;
}

.app-sub-badge {
  font-size: 0.78rem;
  color: var(--ember-gold-light);
  font-weight: 600;
}

.card-logos-combined {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.mini-card-logo {
  max-height: 24px;
  max-width: 70px;
  object-fit: contain;
}

.mini-logo-sep {
  font-size: 0.85rem;
  color: var(--ember-gold);
  font-weight: 700;
}

.app-card-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.app-feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.bullet-item i {
  color: var(--profit-green);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.app-card-spec-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  background: rgba(10, 13, 19, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.app-card-spec-bar span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.app-card-actions {
  display: flex;
  gap: 1rem;
}

/* Future App Card Styles */
.future-app-card {
  border-color: var(--border-subtle);
}

.future-perks-box {
  background: rgba(10, 13, 19, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
}

.future-perks-box h4 {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.future-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.future-perks-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.future-discord-cta {
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.25);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

/* --- 4 PILLARS SECTION --- */
.pillars-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.amber-glow {
  background: rgba(245, 158, 11, 0.15);
  color: var(--ember-gold-light);
  border: 1px solid var(--border-cozy);
}

.cyan-glow {
  background: rgba(56, 189, 248, 0.15);
  color: var(--rune-cyan);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.gold-glow {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.purple-glow {
  background: rgba(168, 85, 247, 0.15);
  color: var(--rune-purple);
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.pillar-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.pillar-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pillar-footer-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ember-gold-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.pillar-footer-tag i {
  color: var(--profit-green);
}

/* --- ADVANTAGES (WHY GAMERS SUPPORT) SECTION --- */
.advantages-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.advantage-card {
  padding: 2rem 1.75rem;
  text-align: left;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-cozy);
  color: var(--ember-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.advantage-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.advantage-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- DOWNLOAD SECTION --- */
.download-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.download-card {
  padding: 3rem 2.5rem;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.04) 0%, var(--bg-card) 30%);
}

.download-header-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.amber-pill {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-cozy);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
}

.download-main-heading {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.download-subheading {
  color: var(--text-muted);
  font-size: 1rem;
}

.download-platforms-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .download-platforms-row {
    grid-template-columns: 1fr;
  }
}

.platform-card {
  background: rgba(10, 13, 19, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.primary-platform {
  border-color: var(--border-cozy);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(10, 13, 19, 0.85) 100%);
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.platform-icon {
  font-size: 2.2rem;
  color: var(--ember-gold);
}

.platform-header h3 {
  font-size: 1.3rem;
}

.platform-support {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.version-tag {
  margin-left: auto;
  font-size: 0.75rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--ember-gold-light);
  border: 1px solid var(--border-cozy);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-weight: 700;
}

.download-logos-combined {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.dl-logos-strip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dl-logo-img {
  max-height: 22px;
  max-width: 65px;
  object-fit: contain;
}

.dl-plus {
  color: var(--ember-gold);
  font-weight: 700;
}

.platform-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.platform-features li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.platform-features li i {
  color: var(--profit-green);
  font-size: 0.8rem;
}

.platform-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.btn-download-lg {
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}

.download-note {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.platform-subtext {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.discord-request-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* GitHub Trust Bar */
.github-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 1rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-item i {
  font-size: 1.6rem;
  color: var(--ember-gold);
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
}

.trust-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: var(--border-subtle);
}

@media (max-width: 640px) {
  .trust-divider {
    display: none;
  }
}

/* --- DISCORD COMMUNITY TAVERN --- */
.discord-tavern-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.tavern-container {
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-color: rgba(88, 101, 242, 0.3);
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, rgba(10, 13, 19, 0.9) 100%);
}

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

.tavern-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-cozy);
  color: var(--ember-gold-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.tavern-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  margin-bottom: 1rem;
}

.tavern-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

.tavern-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
}

.perk-item i {
  color: var(--discord-blurple);
  font-size: 1.1rem;
}

.tavern-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* --- FAQ SECTION --- */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--ember-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.link-inline {
  color: var(--ember-gold-light);
  text-decoration: underline;
}

/* --- FOOTER --- */
.site-footer {
  position: relative;
  z-index: 1;
  background: #06080c;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 1.5rem 2rem;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-bio {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--ember-gold);
  color: #090b10;
  transform: translateY(-2px);
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}

.footer-heading {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--ember-gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toast {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-cozy);
  box-shadow: var(--shadow-md);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toastSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Mobile Queries */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .btn-discord-nav span { display: none; }
}

/* ==========================================================================
   HERO — PLATFORM FOCUSED
   ========================================================================== */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.hero-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-cozy);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ember-gold-light);
  margin-bottom: 1.75rem;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember-gold);
  box-shadow: 0 0 8px var(--ember-gold);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 20%, var(--ember-gold-light) 60%, var(--ember-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
}

/* Platform-level pillar chips */
.hero-platform-pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.platform-pillar {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.platform-pillar i {
  color: var(--ember-gold);
  font-size: 0.85rem;
}

.platform-pillar:hover {
  border-color: var(--border-cozy);
  color: var(--text-main);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-hero-cta {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* ==========================================================================
   CATALOG SECTION — STORE-STYLE GRID
   ========================================================================== */
.catalog-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Catalog Cards */
.catalog-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.catalog-card--available {
  border-color: var(--border-cozy);
  cursor: pointer;
}

.catalog-card--available:hover {
  transform: translateY(-5px);
  border-color: var(--ember-gold);
  box-shadow: var(--shadow-glow);
}

.catalog-card--soon {
  opacity: 0.75;
  cursor: default;
}

.catalog-card__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.status-available {
  background: rgba(16, 185, 129, 0.15);
  color: var(--profit-green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--profit-green);
  box-shadow: 0 0 6px var(--profit-green);
  animation: livePulse 2s infinite ease-in-out;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-soon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.catalog-card__platform {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.catalog-card__icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

/* App icon bubbles */
.catalog-app-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.catalog-app-icon.amber {
  background: linear-gradient(135deg, var(--ember-gold), var(--ember-orange));
  color: #090b10;
  box-shadow: 0 0 18px var(--ember-gold-glow);
}

.catalog-app-icon.muted {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  border: 1px dashed var(--border-subtle);
}

.catalog-app-icon.large-icon {
  width: 58px;
  height: 58px;
  font-size: 1.7rem;
}

.catalog-game-logos {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.catalog-game-logo {
  max-height: 20px;
  max-width: 60px;
  object-fit: contain;
}

.logo-sep {
  font-size: 0.8rem;
  color: var(--ember-gold);
  font-weight: 700;
}

.catalog-card__body {
  flex: 1;
  margin-bottom: 1.25rem;
}

.catalog-card__name {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.catalog-card__game {
  font-size: 0.8rem;
  color: var(--ember-gold-light);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.catalog-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.catalog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.catalog-version {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--ember-gold-light);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-cozy);
}

.catalog-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ember-gold-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-fast);
}

.catalog-card--available:hover .catalog-cta {
  gap: 0.65rem;
}

/* ==========================================================================
   OUR STANDARDS SECTION
   ========================================================================== */
.standards-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.standard-card {
  padding: 2rem 1.75rem;
}

.standard-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-cozy);
  color: var(--ember-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.standard-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.standard-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   APP DETAIL SECTION — RUNE COMPANION
   ========================================================================== */
.app-detail-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.app-detail-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.app-detail-title-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.app-detail-icon-wrap {
  flex-shrink: 0;
}

.app-detail-title-text {
  flex: 1;
  min-width: 260px;
}

.app-detail-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.35rem;
}

.app-detail-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 13, 19, 0.8);
  border: 1px solid var(--border-cozy);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.detail-logo-img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.detail-logo-plus {
  color: var(--ember-gold);
  font-size: 1rem;
  font-weight: 700;
}

/* Feature Cards Grid (Rune Companion) */
.app-detail-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  padding: 1.75rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.amber-glow {
  background: rgba(245, 158, 11, 0.14);
  color: var(--ember-gold-light);
  border: 1px solid var(--border-cozy);
}
.cyan-glow {
  background: rgba(56, 189, 248, 0.14);
  color: var(--rune-cyan);
  border: 1px solid rgba(56, 189, 248, 0.25);
}
.gold-glow {
  background: rgba(251, 191, 36, 0.14);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}
.purple-glow {
  background: rgba(168, 85, 247, 0.14);
  color: var(--rune-purple);
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.feature-title {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Download CTA Bar */
.app-detail-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, var(--bg-card) 100%);
}

.download-cta-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-download-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.5rem;
}

.btn-text-block {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-main-text {
  font-size: 1rem;
  font-weight: 700;
}

.btn-sub-text {
  font-size: 0.72rem;
  opacity: 0.85;
}

.amber-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-cozy);
  color: var(--ember-gold-light);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ==========================================================================
   DISCORD TAVERN
   ========================================================================== */
.discord-tavern-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.tavern-container {
  padding: 3.5rem 2.5rem;
  border-color: rgba(88, 101, 242, 0.3);
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, rgba(10, 13, 19, 0.9) 100%);
}

.tavern-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.tavern-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-cozy);
  color: var(--ember-gold-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.tavern-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.tavern-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.25rem;
}

.tavern-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
}

.perk-item i {
  color: var(--discord-blurple);
  font-size: 1rem;
}

.tavern-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--ember-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
  transition: max-height 0.35s cubic-bezier(1, 0, 1, 0);
}

.link-inline {
  color: var(--ember-gold-light);
  text-decoration: underline;
}
