/* ==========================================================================
   STARVIS DISCORD BOT • LUXURY GOLDEN + BLACK PRODUCT STYLESHEET
   Futuristic AI SaaS Aesthetics • Premium Glassmorphism • Micro-Animations
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Fira+Code:wght@400;500&family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Core Luxury Color Palette */
  --bg-main: #050505;
  --bg-secondary: #0D0D0D;
  --bg-card: #121212;
  --bg-card-hover: #181818;
  --bg-card-elevated: #1D1D1D;
  --bg-glass: rgba(18, 18, 18, 0.7);
  --bg-glass-heavy: rgba(8, 8, 8, 0.85);
  --bg-input: #0A0A0A;

  /* Gold Luxury Tones */
  --gold-primary: #E7A00A;
  --gold-luxury: #D4AF37;
  --gold-light: #FCD34D;
  --gold-glow: rgba(231, 160, 10, 0.25);
  --gold-glow-intense: rgba(231, 160, 10, 0.45);
  --gold-subtle: rgba(231, 160, 10, 0.08);

  /* Borders & Dividers */
  --border-gold-subtle: rgba(231, 160, 10, 0.16);
  --border-gold-medium: rgba(231, 160, 10, 0.32);
  --border-gold-bright: rgba(231, 160, 10, 0.6);
  --border-dark-subtle: rgba(255, 255, 255, 0.07);

  /* Typography */
  --text-main: #FFFFFF;
  --text-secondary: #A7A7A7;
  --text-muted: #6B7280;
  --text-gold: #E7A00A;

  /* Discord Simulation Colors */
  --discord-bg: #313338;
  --discord-embed: #2B2D31;
  --discord-text: #DBDEE1;
  --discord-text-muted: #949BA4;
  --discord-blurple: #5865F2;
  --discord-green: #248046;
  --discord-red: #DA373C;

  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-brand: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Fira Code', monospace;

  /* Shadows & Glows */
  --shadow-gold-sm: 0 4px 16px rgba(231, 160, 10, 0.15);
  --shadow-gold-lg: 0 10px 40px rgba(231, 160, 10, 0.25);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.7);
  --glow-radial: radial-gradient(circle at center, rgba(231, 160, 10, 0.18) 0%, transparent 70%);

  /* Layout & Viewport (Full Viewport Fluid Architecture) */
  --max-width: 100%;
  --viewport-padding: clamp(24px, 5vw, 100px);
  --content-max-width: 100%;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

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

/* Custom Gold Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #070707;
}
::-webkit-scrollbar-thumb {
  background: rgba(231, 160, 10, 0.3);
  border-radius: 4px;
  border: 1px solid rgba(231, 160, 10, 0.15);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(231, 160, 10, 0.6);
}

/* Background Grids & Ambient Lighting */
.bg-ambient-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(to right, rgba(231, 160, 10, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(231, 160, 10, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.bg-radial-lights {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.radial-glow-top {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(900px, 85vw, 1800px);
  height: clamp(700px, 65vh, 1100px);
  background: radial-gradient(ellipse at center, rgba(231, 160, 10, 0.16) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
  filter: blur(80px);
}

.radial-glow-accent {
  position: absolute;
  width: clamp(600px, 45vw, 950px);
  height: clamp(600px, 45vw, 950px);
  background: radial-gradient(circle, rgba(231, 160, 10, 0.09) 0%, transparent 68%);
  filter: blur(90px);
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.site-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 var(--viewport-padding);
  box-sizing: border-box;
}

/* Loading Screen Animation */
#starvis-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #050505;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#starvis-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-emblem-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold-primary);
  border-bottom-color: var(--gold-luxury);
  animation: spin 1.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.loader-ring-outer {
  position: absolute;
  width: 130%;
  height: 130%;
  border-radius: 50%;
  border: 1px dashed rgba(231, 160, 10, 0.3);
  animation: spin-reverse 8s linear infinite;
}

.loader-logo {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 24px var(--gold-glow-intense);
  border: 1.5px solid var(--gold-primary);
}

.loader-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.loader-subtext {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  to { transform: rotate(-360deg); }
}

/* Typography & Reusable Utilities */
.gold-gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5CE68 40%, #E7A00A 80%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-pure {
  background: linear-gradient(135deg, #FCD34D 0%, #E7A00A 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(231, 160, 10, 0.08);
  border: 1px solid var(--border-gold-subtle);
  padding: 6px 14px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.section-header {
  text-align: center;
  max-width: min(100%, 960px);
  margin: 0 auto clamp(44px, 5.5vh, 76px) auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  line-height: 1.15;
}

.section-desc {
  font-size: clamp(15.5px, 1.15vw, 19px);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Buttons */
.btn-gold-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #F5B018 0%, #E7A00A 50%, #C99505 100%);
  color: #050505;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(231, 160, 10, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-gold-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(231, 160, 10, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  filter: brightness(1.06);
}

.btn-gold-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(18, 18, 18, 0.85);
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border-gold-subtle);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-gold-secondary:hover {
  background: rgba(28, 28, 28, 0.95);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  color: var(--gold-primary);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

/* Glass Card */
.luxury-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(16px);
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 160, 10, 0.4), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.luxury-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-medium);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(231, 160, 10, 0.12);
}

.luxury-card:hover::before {
  opacity: 1;
}

/* 1. Sticky Navbar */
.starvis-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
}

.starvis-navbar.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold-subtle);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

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

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

.nav-logo-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
  transition: var(--transition-smooth);
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.06);
  box-shadow: 0 0 20px var(--gold-glow-intense);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #FFFFFF;
}

.nav-brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gold-primary);
  letter-spacing: 2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 36px);
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 4px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-luxury));
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-nav-login {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.btn-nav-login:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
}

/* 2. Hero Section */
.hero-section {
  padding-top: clamp(140px, 14vh, 200px);
  padding-bottom: clamp(70px, 8vh, 120px);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.95fr);
  gap: clamp(40px, 5.5vw, 110px);
  align-items: center;
  justify-content: space-between;
}

.hero-left {
  position: relative;
  z-index: 10;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.2vw, 74px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: clamp(18px, 2vh, 28px);
}

.hero-headline span {
  display: block;
}

.hero-description {
  font-size: clamp(16px, 1.15vw, 20px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: min(100%, 800px);
  margin-bottom: clamp(28px, 3.2vh, 42px);
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 1.4vw, 22px);
  margin-bottom: clamp(32px, 3.6vh, 48px);
}

.hero-stats-badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 32px);
  padding-top: clamp(20px, 2.2vh, 32px);
  border-top: 1px solid var(--border-gold-subtle);
}

.hero-stat-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
}

.hero-stat-text {
  font-size: clamp(12.5px, 0.95vw, 14.5px);
  color: var(--text-secondary);
}

.hero-stat-text strong {
  color: #FFFFFF;
}

/* Hero Right: Futuristic AI Visual */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-avatar-card {
  position: relative;
  width: 100%;
  max-width: clamp(420px, 35vw, 620px);
  background: var(--bg-card);
  border: 1px solid var(--border-gold-medium);
  border-radius: clamp(22px, 2vw, 32px);
  padding: clamp(20px, 2vw, 36px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85), 0 0 45px var(--gold-glow);
  backdrop-filter: blur(20px);
}

.hero-logo-frame {
  position: relative;
  width: 100%;
  border-radius: clamp(16px, 1.5vw, 24px);
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  background: #000000;
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.9);
}

.hero-logo-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.hero-logo-frame:hover img {
  transform: scale(1.03);
}

.floating-hud-badge {
  position: absolute;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid var(--border-gold-medium);
  backdrop-filter: blur(14px);
  padding: clamp(9px, 0.9vw, 14px) clamp(14px, 1.3vw, 22px);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.65), 0 0 18px rgba(231, 160, 10, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(12px, 0.92vw, 14px);
  font-weight: 600;
  z-index: 10;
  animation: float-slow 4s ease-in-out infinite;
}

.hud-badge-top-right {
  top: -18px;
  right: -24px;
  animation-delay: 0.5s;
}

.hud-badge-bottom-left {
  bottom: -22px;
  left: -24px;
  animation-delay: 2s;
}

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

/* 3. Live Statistics Section */
.stats-section {
  padding: clamp(50px, 6vh, 80px) 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 1.8vw, 36px);
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: clamp(16px, 1.4vw, 22px);
  padding: clamp(28px, 2.6vw, 44px) clamp(20px, 1.8vw, 32px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.stat-box:hover {
  border-color: var(--border-gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55), 0 0 24px var(--gold-glow);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: clamp(12.5px, 0.92vw, 14.5px);
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.stat-subnote {
  font-family: var(--font-mono);
  font-size: clamp(10.5px, 0.8vw, 12px);
  color: var(--gold-primary);
  margin-top: 8px;
}

/* 4. Features Section */
.features-section {
  padding: clamp(70px, 8vh, 120px) 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(320px, 22vw, 400px), 1fr));
  gap: clamp(20px, 1.8vw, 32px);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: clamp(16px, 1.4vw, 22px);
  padding: clamp(28px, 2.4vw, 40px) clamp(24px, 2vw, 34px);
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold-bright);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75), 0 0 28px rgba(231, 160, 10, 0.16);
}

.feature-icon-wrap {
  width: clamp(48px, 3.6vw, 58px);
  height: clamp(48px, 3.6vw, 58px);
  border-radius: 14px;
  background: rgba(231, 160, 10, 0.08);
  border: 1px solid var(--border-gold-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 1.6vw, 28px);
  margin-bottom: 22px;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrap {
  background: var(--gold-primary);
  color: #050505;
  box-shadow: 0 0 20px var(--gold-primary);
  transform: scale(1.08);
}

.feature-title {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.35vw, 23px);
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.feature-desc {
  font-size: clamp(13.5px, 0.96vw, 15.5px);
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 22px;
  flex-grow: 1;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

/* 5. Why Starvis Section */
.why-section {
  padding: clamp(70px, 8vh, 120px) 0;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2vw, 36px);
}

.why-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: clamp(18px, 1.5vw, 24px);
  padding: clamp(30px, 2.6vw, 44px);
  position: relative;
  transition: var(--transition-smooth);
}

.why-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.65), 0 0 24px rgba(231, 160, 10, 0.12);
}

.why-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.why-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.why-text {
  font-size: clamp(14px, 0.98vw, 16px);
  color: var(--text-secondary);
  line-height: 1.68;
}

/* 6. Bot Interface Interactive Preview */
.bot-preview-section {
  padding: clamp(70px, 8vh, 120px) 0;
  position: relative;
}

.preview-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(30px, 3.5vh, 48px);
}

.preview-tab-btn {
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-secondary);
  padding: clamp(10px, 0.9vw, 13px) clamp(18px, 1.4vw, 26px);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.preview-tab-btn:hover {
  color: #FFFFFF;
  border-color: var(--border-gold-medium);
}

.preview-tab-btn.active {
  background: linear-gradient(135deg, rgba(231, 160, 10, 0.2), rgba(212, 175, 55, 0.1));
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 16px rgba(231, 160, 10, 0.2);
}

.discord-simulator-window {
  background: var(--discord-bg);
  border: 1px solid var(--border-gold-medium);
  border-radius: clamp(18px, 1.6vw, 24px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.85), 0 0 38px var(--gold-glow);
  overflow: hidden;
  max-width: min(100%, 1400px);
  width: 100%;
  margin: 0 auto;
}

.discord-window-header {
  background: #1E1F22;
  padding: 16px clamp(20px, 2vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.discord-channel-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1vw, 15.5px);
  font-weight: 700;
  color: #F2F3F5;
}

.discord-channel-hash {
  color: #80848E;
  font-size: 18px;
}

.discord-message-flow {
  padding: clamp(24px, 2.5vw, 42px) clamp(20px, 2vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.discord-msg-row {
  display: flex;
  gap: clamp(14px, 1.4vw, 20px);
  align-items: flex-start;
}

.discord-bot-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.discord-msg-body {
  flex-grow: 1;
  min-width: 0;
}

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

.discord-bot-name {
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  font-weight: 700;
  color: #FFFFFF;
}

.discord-bot-tag {
  background: var(--gold-primary);
  color: #050505;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.discord-timestamp {
  font-size: 12px;
  color: var(--discord-text-muted);
}

.discord-embed-card {
  background: var(--discord-embed);
  border-left: 4px solid var(--gold-primary);
  border-radius: 4px 10px 10px 4px;
  padding: clamp(18px, 1.8vw, 28px) clamp(20px, 2vw, 32px);
  margin-top: 8px;
  max-width: min(100%, 1100px);
  width: 100%;
}

.embed-preview-pane {
  display: none;
}

.embed-preview-pane.active {
  display: block;
}

/* 7. Dashboard Showcase Section */
.dashboard-showcase-section {
  padding: clamp(70px, 8vh, 120px) 0;
  position: relative;
}

.dashboard-browser-mockup {
  background: #0D0D0D;
  border: 1px solid var(--border-gold-bright);
  border-radius: clamp(18px, 1.8vw, 26px);
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.9), 0 0 45px var(--gold-glow);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.browser-mockup-header {
  background: #141414;
  padding: 14px clamp(18px, 1.8vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-gold-subtle);
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.browser-address-bar {
  background: #090909;
  border: 1px solid var(--border-gold-subtle);
  border-radius: 8px;
  padding: 6px clamp(16px, 1.8vw, 24px);
  font-family: var(--font-mono);
  font-size: clamp(12px, 0.9vw, 13.5px);
  color: var(--gold-primary);
  width: min(100%, 460px);
  text-align: center;
}

.browser-mockup-body {
  display: grid;
  grid-template-columns: clamp(230px, 18vw, 320px) 1fr;
  min-height: clamp(520px, 55vh, 760px);
}

.mockup-sidebar {
  background: #090909;
  border-right: 1px solid var(--border-gold-subtle);
  padding: clamp(22px, 2vw, 32px) clamp(16px, 1.4vw, 24px);
}

.mockup-main {
  background: #0E0E0E;
  padding: clamp(24px, 2.5vw, 42px);
}

/* 8. Searchable Commands Showcase */
.commands-section {
  padding: clamp(70px, 8vh, 120px) 0;
  position: relative;
}

.command-controls-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2vh, 28px);
  margin-bottom: clamp(32px, 3.8vh, 50px);
}

.command-search-wrap {
  position: relative;
  width: 100%;
  max-width: min(100%, 780px);
}

.command-search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 14px;
  padding: clamp(14px, 1.2vw, 18px) 20px clamp(14px, 1.2vw, 18px) 52px;
  font-family: var(--font-body);
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  color: #FFFFFF;
  outline: none;
  transition: var(--transition-smooth);
}

.command-search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 24px var(--gold-glow);
  background: var(--bg-card-hover);
}

.command-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 18px;
}

.command-category-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cmd-filter-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-secondary);
  padding: clamp(8px, 0.75vw, 11px) clamp(16px, 1.3vw, 22px);
  border-radius: 10px;
  font-size: clamp(12.5px, 0.9vw, 14px);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cmd-filter-pill:hover,
.cmd-filter-pill.active {
  background: var(--gold-primary);
  color: #050505;
  border-color: var(--gold-primary);
  box-shadow: 0 0 16px var(--gold-glow);
}

.commands-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(320px, 22vw, 400px), 1fr));
  gap: clamp(18px, 1.6vw, 28px);
}

.command-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: clamp(14px, 1.2vw, 18px);
  padding: clamp(20px, 1.8vw, 28px);
  transition: var(--transition-smooth);
}

.command-item-card:hover {
  border-color: var(--border-gold-medium);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.65);
}

.cmd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cmd-name {
  font-family: var(--font-mono);
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  font-weight: 700;
  color: var(--gold-primary);
}

.cmd-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
  background: rgba(231, 160, 10, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(231, 160, 10, 0.22);
}

.cmd-desc {
  font-size: clamp(13px, 0.95vw, 14.5px);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
}

.cmd-usage {
  font-family: var(--font-mono);
  font-size: clamp(11.5px, 0.85vw, 13px);
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-muted);
}

/* 9. Security Radar Command Center */
.security-section {
  padding: clamp(70px, 8vh, 120px) 0;
  position: relative;
}

.security-hud-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-bright);
  border-radius: clamp(22px, 2vw, 32px);
  padding: clamp(32px, 3.6vw, 64px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85), 0 0 45px var(--gold-glow);
  width: 100%;
}

.security-hud-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(420px, 1.45fr);
  gap: clamp(36px, 4.5vw, 80px);
  align-items: center;
}

.radar-display-wrap {
  position: relative;
  width: clamp(280px, 22vw, 400px);
  height: clamp(280px, 22vw, 400px);
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(231, 160, 10, 0.35);
  background: radial-gradient(circle, rgba(231, 160, 10, 0.07) 0%, rgba(5, 5, 5, 0.95) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(231, 160, 10, 0.18), inset 0 0 25px rgba(0, 0, 0, 0.85);
}

.radar-circle-inner {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  border: 1px dashed rgba(231, 160, 10, 0.3);
}

.radar-circle-center {
  position: absolute;
  width: 25%;
  height: 25%;
  border-radius: 50%;
  border: 1px solid rgba(231, 160, 10, 0.4);
}

.radar-crosshair-x {
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(231, 160, 10, 0.18);
}

.radar-crosshair-y {
  position: absolute;
  height: 100%;
  width: 1px;
  background: rgba(231, 160, 10, 0.18);
}

.radar-sweep-beam {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  right: 0;
  transform-origin: 0% 100%;
  background: conic-gradient(from 0deg, rgba(231, 160, 10, 0.5) 0deg, transparent 60deg);
  animation: radar-spin 3s linear infinite;
}

@keyframes radar-spin {
  to { transform: rotate(360deg); }
}

.radar-center-logo {
  position: absolute;
  width: clamp(52px, 4vw, 70px);
  height: clamp(52px, 4vw, 70px);
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  object-fit: cover;
  box-shadow: 0 0 24px var(--gold-primary);
  z-index: 5;
}

.security-checklist {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.3vh, 18px);
}

.sec-check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0B0B0B;
  border: 1px solid var(--border-gold-subtle);
  padding: clamp(14px, 1.3vw, 20px) clamp(16px, 1.5vw, 24px);
  border-radius: 14px;
}

.sec-check-left {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
}

.sec-icon {
  font-size: clamp(18px, 1.4vw, 24px);
}

.sec-label {
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 16.5px);
}

.sec-badge-active {
  font-family: var(--font-mono);
  font-size: clamp(10.5px, 0.8vw, 12px);
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* 10. Premium Pricing Section */
.pricing-section {
  padding: clamp(70px, 8vh, 120px) 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.2vw, 40px);
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: clamp(18px, 1.6vw, 24px);
  padding: clamp(34px, 2.8vw, 50px) clamp(26px, 2.2vw, 38px);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #161616 0%, #101010 100%);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85), 0 0 35px var(--gold-glow);
  transform: scale(1.025);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-luxury));
  color: #050505;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px var(--gold-glow);
}

.pricing-tier-name {
  font-family: var(--font-display);
  font-size: clamp(21px, 1.5vw, 26px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.pricing-tier-desc {
  font-size: clamp(13px, 0.95vw, 14.5px);
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 42px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-gold-subtle);
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(42px, 3.5vw, 56px);
  font-weight: 900;
  color: var(--gold-primary);
}

.price-period {
  font-size: clamp(13px, 0.92vw, 15px);
  color: var(--text-muted);
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vh, 16px);
  margin-bottom: 34px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(13.5px, 0.96vw, 15px);
  color: var(--text-secondary);
}

.pricing-feature-item span {
  color: var(--gold-primary);
  font-weight: 700;
}

/* 11. Community Testimonials Section */
.testimonials-section {
  padding: clamp(70px, 8vh, 120px) 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 1.8vw, 32px);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: clamp(16px, 1.4vw, 22px);
  padding: clamp(26px, 2.4vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.65), 0 0 24px var(--gold-glow);
}

.testimonial-quote {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-server-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1F1F1F;
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-server-name {
  font-weight: 700;
  font-size: clamp(13.5px, 0.95vw, 15px);
  color: #FFFFFF;
}

.author-title {
  font-size: clamp(11.5px, 0.82vw, 13px);
  color: var(--text-muted);
}

/* 12. FAQ Section */
.faq-section {
  padding: clamp(70px, 8vh, 120px) 0;
  position: relative;
}

.faq-accordion-wrap {
  max-width: min(100%, 1160px);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.4vh, 18px);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 18px rgba(231, 160, 10, 0.12);
}

.faq-question {
  padding: clamp(18px, 1.6vw, 24px) clamp(22px, 2vw, 32px);
  font-family: var(--font-display);
  font-size: clamp(15.5px, 1.1vw, 18px);
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-chevron {
  font-size: 14px;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 clamp(22px, 2vw, 32px);
  font-size: clamp(14px, 0.98vw, 15.5px);
  color: var(--text-secondary);
  line-height: 1.72;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: clamp(18px, 1.6vw, 24px);
}

/* 13. Footer */
.starvis-footer {
  background: #040404;
  border-top: 1px solid var(--border-gold-subtle);
  padding: clamp(70px, 8vh, 110px) 0 clamp(32px, 4vh, 50px) 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.8fr) repeat(3, minmax(180px, 1fr));
  gap: clamp(36px, 4.5vw, 90px);
  margin-bottom: clamp(48px, 6vh, 76px);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 16px var(--gold-glow);
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.4vw, 24px);
  font-weight: 900;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.footer-desc {
  font-size: clamp(13.5px, 0.96vw, 15px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: min(100%, 480px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: clamp(13.5px, 0.95vw, 15px);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(24px, 3vh, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: #10B981;
}

.footer-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

/* Responsive Adaptations */
@media (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
  }
  .security-hud-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-description {
    margin: 0 auto clamp(24px, 3vh, 36px) auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats-badge-row {
    justify-content: center;
  }
  .hero-avatar-card {
    margin: 0 auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .security-hud-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .btn-nav-login {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero-headline {
    font-size: 36px;
  }
  .section-title {
    font-size: 28px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .commands-cards-grid {
    grid-template-columns: 1fr;
  }
  .browser-mockup-body {
    grid-template-columns: 1fr;
  }
  .mockup-sidebar {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   AUTHENTIC DISCORD BOT PROFILE & RICH PRESENCE CARD
   ========================================================================== */
.discord-profile-card-landing {
  max-width: min(100%, 640px);
  width: 100%;
  margin: 0 auto;
  background: #111214;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(231, 160, 10, 0.12);
  border: 1px solid rgba(231, 160, 10, 0.3);
  position: relative;
  text-align: left;
}

.discord-profile-banner {
  height: 110px;
  background: linear-gradient(135deg, #18150c 0%, #30210a 50%, #151515 100%);
  position: relative;
}

.discord-banner-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(231, 160, 10, 0.35) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.5;
}

.discord-profile-header {
  padding: 0 18px 16px;
  position: relative;
}

.discord-avatar-container {
  position: relative;
  width: 86px;
  height: 86px;
  margin-top: -44px;
  margin-bottom: 12px;
}

.discord-avatar-img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 6px solid #111214;
  background: #000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  object-fit: cover;
}

.discord-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid #111214;
  background: #23A55A; /* Discord online green */
}

.discord-status-dot.idle { background: #F0B232; }
.discord-status-dot.dnd { background: #F23F43; }
.discord-status-dot.invisible { background: #80848E; }

.discord-badges-container {
  position: absolute;
  top: 14px;
  right: 18px;
  display: flex;
  gap: 6px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(231, 160, 10, 0.25);
  padding: 4px 10px;
  border-radius: 8px;
}

.discord-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-primary);
}

.discord-user-details {
  background: #2B2D31;
  border-radius: 12px;
  padding: 16px;
  margin-top: 10px;
}

.discord-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.discord-display-name {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-display);
}

.discord-bot-badge {
  background: #5865F2;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.discord-handle {
  font-size: 13px;
  color: #949BA4;
  margin-bottom: 12px;
}

.discord-profile-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 14px 0;
}

.discord-profile-section-title {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: #B5BAC1;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.discord-activity-card {
  background: #1E1F22;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  border-left: 3px solid var(--gold-primary);
}

.discord-activity-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #111214;
  border: 1px solid rgba(231, 160, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.discord-activity-info {
  min-width: 0;
  flex: 1;
}

.discord-activity-type {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-primary);
}

.discord-activity-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #F2F3F5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 2px 0;
}

.discord-activity-details {
  font-size: 12px;
  color: #949BA4;
  display: flex;
  align-items: center;
  gap: 6px;
}

.discord-bio-rendered {
  font-size: 13px;
  color: #DBDEE1;
  line-height: 1.5;
  white-space: pre-line;
  background: #1E1F22;
  padding: 12px;
  border-radius: 8px;
  border-left: 3px solid #5865F2;
}

.discord-bio-rendered h1, .discord-bio-rendered h2 {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.discord-bio-rendered blockquote {
  border-left: 3px solid #4E5058;
  padding-left: 8px;
  color: #949BA4;
  margin: 6px 0;
}

