/* ==========================================================
   GRIEDON BOT — GIVEAWAY AURORA DESIGN SYSTEM (100% RESPONSIVE)
   ========================================================== */

:root {
  --bg-deep: #050609;
  --bg-surface: #0a0c14;
  --bg-card: rgba(15, 18, 30, 0.8);
  --bg-card-hover: rgba(24, 29, 48, 0.9);
  
  --primary-gold: #f59e0b;
  --primary-gold-bright: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.4);
  
  --laser-purple: #7c3aed;
  --laser-cyan: #06b6d4;
  --laser-pink: #ec4899;
  --discord-blurple: #5865f2;
  --discord-green: #248046;
  --discord-red: #da373c;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold-glow: rgba(245, 158, 11, 0.3);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================
   DYNAMIC SPACE BACKDROP
   ========================================================== */
.space-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cyber-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 25%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 25%, black 30%, transparent 80%);
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.orb-gold {
  top: -80px;
  left: 25%;
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.28) 0%, transparent 70%);
}

.orb-purple {
  top: 35%;
  right: -100px;
  width: clamp(300px, 45vw, 650px);
  height: clamp(300px, 45vw, 650px);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
}

.orb-cyan {
  bottom: 0;
  left: 0;
  width: clamp(280px, 40vw, 550px);
  height: clamp(280px, 40vw, 550px);
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
}

/* Floating Particles (Hidden on narrow mobile for performance) */
.floating-particle {
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
  animation: floatGift 14s ease-in-out infinite;
}

.p-1 { top: 15%; left: 5%; font-size: 1.8rem; }
.p-2 { top: 22%; right: 6%; font-size: 1.5rem; animation-delay: 2s; }
.p-3 { top: 60%; left: 8%; font-size: 2rem; animation-delay: 4s; }
.p-4 { top: 75%; right: 8%; font-size: 1.6rem; animation-delay: 1s; }
.p-5 { top: 88%; left: 40%; font-size: 1.7rem; animation-delay: 3s; }

@keyframes floatGift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(12deg); }
}

@media (max-width: 600px) {
  .floating-particle { display: none; }
}

/* Typography Helpers */
.highlight-gold-gradient {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #38bdf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mono { font-family: var(--font-mono); }

/* ==========================================================
   TOP ANNOUNCEMENT BAR
   ========================================================== */
.announcement-strip {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.12), rgba(124, 58, 237, 0.15));
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding: 8px 16px;
  font-size: 0.82rem;
  text-align: center;
  position: relative;
  z-index: 101;
  backdrop-filter: blur(10px);
}

.strip-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pulse-tag {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ping-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
  animation: pingAnimation 1.5s infinite;
}

@keyframes pingAnimation {
  0%, 100% { transform: scale(0.95); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.strip-btn {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 700;
}
.strip-btn:hover { text-decoration: underline; }

/* ==========================================================
   NAVBAR
   ========================================================== */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5, 6, 9, 0.85);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 20px;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-gift-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  box-shadow: 0 4px 15px var(--gold-glow);
  position: relative;
  flex-shrink: 0;
}

.box-sparkle {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 0.75rem;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-display);
  display: block;
  line-height: 1;
}

.brand-sub {
  font-size: 0.62rem;
  color: #94a3b8;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-link:hover { color: #fbbf24; }

.nav-btn-group {
  display: flex;
  gap: 10px;
}

/* Button Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-gold-laser {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #050609;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold-laser:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.55);
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-2px);
}

.btn-hero-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 12px;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero-showcase {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 8vw, 70px) 16px clamp(40px, 8vw, 70px);
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto clamp(36px, 6vw, 60px);
}

.hero-chip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fde68a;
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-heading {
  font-size: clamp(2.1rem, 6vw, 3.8rem);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-subtext {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-subtext strong { color: #fff; }

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Metrics Pill */
.hero-metrics-pill {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(15, 18, 30, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 40px;
  padding: 12px 24px;
  gap: 16px;
  backdrop-filter: blur(20px);
  max-width: 750px;
  margin: 0 auto;
}

.h-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.h-num {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: #fbbf24;
}

.h-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.h-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  align-self: center;
}

/* ==========================================================
   DISCORD SIMULATOR (100% RESPONSIVE)
   ========================================================== */
.simulator-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.simulator-case {
  background: rgba(18, 22, 36, 0.92);
  border: 1px solid var(--border-gold-glow);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(245, 158, 11, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  overflow: hidden;
}

.client-topbar {
  background: #11131c;
  border-bottom: 1px solid var(--border-glass);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.window-controls { display: flex; gap: 6px; }
.w-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-close { background: #ef4444; }
.dot-min { background: #f59e0b; }
.dot-max { background: #10b981; }

.channel-indicator {
  font-size: 0.78rem;
  font-weight: 700;
  color: #949ba4;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.live-pill {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.pulse-live {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
}

.client-chat-viewport {
  padding: clamp(14px, 3vw, 24px);
}

.chat-message-row {
  display: flex;
  gap: clamp(10px, 2vw, 16px);
}

.bot-avatar-glow {
  width: clamp(36px, 8vw, 46px);
  height: clamp(36px, 8vw, 46px);
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  box-shadow: 0 4px 15px var(--gold-glow);
  flex-shrink: 0;
}

.msg-content-col {
  flex-grow: 1;
  min-width: 0;
}

.msg-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.bot-user-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.app-tag {
  background: #5865f2;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
}

.timestamp {
  color: #64748b;
  font-size: 0.72rem;
}

/* Discord Embed */
.live-discord-embed {
  background: #2b2d31;
  border-radius: 6px;
  border-left: 4px solid #f59e0b;
  overflow: hidden;
  margin-bottom: 14px;
}

.embed-body {
  padding: clamp(12px, 3vw, 18px);
}

.embed-top-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
  flex-wrap: wrap;
}

.trophy-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #fbbf24;
}

.countdown-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: #949ba4;
}

.embed-title-text {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  word-break: break-word;
}

.embed-quote-box {
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid rgba(245, 158, 11, 0.5);
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 0.86rem;
  color: #dbdee1;
  margin-bottom: 16px;
  line-height: 1.5;
}

.mention-tag {
  background: rgba(88, 101, 242, 0.35);
  color: #c9cdfb;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 600;
  display: inline-block;
}

/* Tiered Rewards Showcase */
.tiered-prizes-pod {
  display: grid;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 16px;
}

.tier-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  padding: 6px 8px;
  border-radius: 4px;
  gap: 8px;
  flex-wrap: wrap;
}

.t-gold { background: rgba(245, 158, 11, 0.12); border-left: 3px solid #f59e0b; color: #fef3c7; }
.t-silver { background: rgba(148, 163, 184, 0.1); border-left: 3px solid #94a3b8; color: #f1f5f9; }
.t-bronze { background: rgba(217, 119, 6, 0.1); border-left: 3px solid #b45309; color: #fed7aa; }

.tier-rank { font-weight: 800; white-space: nowrap; }
.tier-gift { font-weight: 600; font-size: 0.82rem; }

/* Info Grid */
.embed-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

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

.cell-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #949ba4;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cell-val {
  font-size: 0.88rem;
  color: #dbdee1;
  word-break: break-word;
}

.badge-gold-glow {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 0.78rem;
  display: inline-block;
}

.badge-urgent-glow {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 0.78rem;
  display: inline-block;
}

.embed-footer-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: #949ba4;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
  flex-wrap: wrap;
}

.entries-glow { color: #fff; font-weight: 700; }
.test-hint { margin-left: auto; color: #38bdf8; font-weight: 700; }

/* Discord Simulator Buttons */
.interactive-button-cluster {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: filter 0.2s, transform 0.1s;
}

.discord-btn:hover { filter: brightness(1.15); transform: translateY(-1px); }
.discord-btn:active { transform: scale(0.97); }

.d-btn-green { background: #248046; }
.d-btn-gold { background: linear-gradient(135deg, #d97706, #b45309); }
.d-btn-secondary { background: #4e5058; }

/* Ephemeral Toast */
.ephemeral-toast {
  margin-top: 14px;
  background: rgba(10, 14, 24, 0.95);
  border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: 8px;
  padding: 12px 14px;
  display: none;
  animation: slideToast 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.toast-top-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #10b981;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.toast-text-content {
  font-size: 0.88rem;
  color: #f8fafc;
  line-height: 1.5;
}

/* ==========================================================
   FEATURES HUB & CARDS
   ========================================================== */
.features-hub {
  position: relative;
  z-index: 1;
  padding: clamp(50px, 8vw, 90px) 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.section-badge-center {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.badge-laser {
  color: #fbbf24;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title-large {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-sub-large {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 650px;
  margin: 0 auto;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-pod {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: clamp(20px, 4vw, 30px);
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-pod:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.35);
  background: var(--bg-card-hover);
}

.pod-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.pod-tag {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  align-self: flex-start;
  margin-bottom: 12px;
}

.tag-green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.tag-gold { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }

.feature-pod h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.feature-pod p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.code-pill {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glass);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #e2e8f0;
  overflow-x: auto;
}

.hl-cyan { color: #38bdf8; font-weight: 700; }

/* ==========================================================
   COMMANDS HUB & EXPLORER
   ========================================================== */
.commands-section {
  position: relative;
  z-index: 1;
  padding: clamp(50px, 8vw, 90px) 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.command-hub-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 34px);
  backdrop-filter: blur(25px);
}

.hub-header { margin-bottom: 24px; }

.search-bar-wrap {
  position: relative;
  margin-bottom: 18px;
}

.search-bar-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 1rem;
}

.search-bar-wrap input {
  width: 100%;
  padding: 14px 100px 14px 44px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.2s;
}

.search-bar-wrap input:focus {
  border-color: var(--primary-gold);
}

.count-pill {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.15);
  padding: 3px 8px;
  border-radius: 20px;
}

.filter-tabs-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.category-btn:hover, .category-btn.active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-color: #f59e0b;
  color: #050609;
}

.commands-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.command-card-item {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.cmd-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.c-name {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fbbf24;
}

.c-tag {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.c-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.c-usage {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #38bdf8;
  gap: 8px;
  overflow-x: auto;
}

.btn-copy-code {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 2px;
  flex-shrink: 0;
}
.btn-copy-code:hover { color: #fff; }

/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.faq-container {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 6vw, 70px) 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion-box { display: grid; gap: 12px; }

.faq-row {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.faq-q i { color: var(--text-dim); transition: transform 0.2s; }
.faq-row.active .faq-q i { transform: rotate(180deg); color: #fbbf24; }

.faq-a {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  display: none;
}

.faq-row.active .faq-a { display: block; }

/* ==========================================================
   BOTTOM CTA BANNER
   ========================================================== */
.bottom-cta-section {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 6vw, 60px) 16px clamp(50px, 8vw, 90px);
  max-width: 1240px;
  margin: 0 auto;
}

.bottom-cta-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(124, 58, 237, 0.2));
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-text-wrap h2 {
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.cta-text-wrap p {
  color: var(--text-muted);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer-block {
  border-top: 1px solid var(--border-glass);
  background: #030406;
  padding: clamp(40px, 6vw, 70px) 16px 24px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.f-brand p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 360px;
}

.f-links { display: flex; gap: 40px; }

.f-col h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.f-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.86rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.f-col a:hover { color: #fbbf24; }

.footer-legal {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================
   MOBILE RESPONSIVE BREAKPOINTS
   ========================================================== */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .feature-cards-grid { grid-template-columns: 1fr 1fr; }
  .commands-grid-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-nav { padding: 10px 14px; }
  .nav-btn-group .btn-secondary-glass { display: none; }
  .hero-showcase { padding: 30px 12px 40px; }
  .hero-actions .btn { width: 100%; }
  
  .hero-metrics-pill {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    padding: 12px 14px;
    gap: 12px;
  }
  .h-divider { display: none; }

  .client-chat-viewport { padding: 12px; }
  .chat-message-row { gap: 10px; }
  .embed-body { padding: 12px; }
  
  .embed-info-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .interactive-button-cluster .discord-btn {
    flex: 1 1 calc(50% - 6px);
    font-size: 0.78rem;
    padding: 8px 10px;
  }

  .feature-cards-grid { grid-template-columns: 1fr; }
  .command-hub-card { padding: 16px 12px; }
  
  .search-bar-wrap input {
    padding: 12px 75px 12px 38px;
    font-size: 0.88rem;
  }
  .count-pill { font-size: 0.68rem; padding: 2px 6px; }

  .bottom-cta-card { padding: 24px 16px; }
  .bottom-cta-card .btn { width: 100%; }
  
  .f-links { gap: 24px; }
}
