/* ==========================================================================
   DEVNOX DISCORD SERVICES - HIGH-FIDELITY CSS3 STYLESHEET
   Futuristic Glassmorphism & Cyber Aesthetics for Modern SaaS/Agency
   ========================================================================== */

:root {
  /* Default Cyber Neon Theme */
  --bg-primary: #070913;
  --bg-secondary: #0d1224;
  --bg-tertiary: #131b35;
  --accent-primary: #00f2fe;
  --accent-secondary: #4facfe;
  --accent-tertiary: #a855f7;
  --accent-hot: #f43f5e;
  --accent-green: #10b981;
  --accent-gold: #f59e0b;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --glass-bg: rgba(13, 18, 36, 0.75);
  --glass-card: rgba(18, 26, 51, 0.68);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-glow: rgba(0, 242, 254, 0.4);
  --glass-highlight: rgba(255, 255, 255, 0.08);

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-heading: 'Space Grotesk', sans-serif;

  --glow-shadow: 0 0 35px rgba(0, 242, 254, 0.28);
  --card-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 25px rgba(0, 242, 254, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 1. Deep Space Blue Theme */
[data-theme="deepspace"] {
  --bg-primary: #030712;
  --bg-secondary: #0b1120;
  --bg-tertiary: #111827;
  --accent-primary: #38bdf8;
  --accent-secondary: #6366f1;
  --accent-tertiary: #818cf8;
  --glass-bg: rgba(11, 17, 32, 0.8);
  --glass-card: rgba(15, 23, 42, 0.72);
  --glass-border: rgba(56, 189, 248, 0.22);
  --glass-border-glow: rgba(99, 102, 241, 0.45);
  --glow-shadow: 0 0 35px rgba(56, 189, 248, 0.3);
}

/* 2. Aurora Emerald Theme */
[data-theme="aurora"] {
  --bg-primary: #021a15;
  --bg-secondary: #042921;
  --bg-tertiary: #064e3b;
  --accent-primary: #10b981;
  --accent-secondary: #06b6d4;
  --accent-tertiary: #a7f3d0;
  --glass-bg: rgba(4, 41, 33, 0.78);
  --glass-card: rgba(6, 60, 48, 0.7);
  --glass-border: rgba(16, 185, 129, 0.28);
  --glass-border-glow: rgba(6, 182, 212, 0.5);
  --glow-shadow: 0 0 35px rgba(16, 185, 129, 0.35);
}

/* 3. Sunset Solar Theme */
[data-theme="sunset"] {
  --bg-primary: #180914;
  --bg-secondary: #281022;
  --bg-tertiary: #3b112f;
  --accent-primary: #fb923c;
  --accent-secondary: #f43f5e;
  --accent-tertiary: #fbbf24;
  --glass-bg: rgba(40, 16, 34, 0.78);
  --glass-card: rgba(58, 20, 47, 0.7);
  --glass-border: rgba(251, 146, 60, 0.28);
  --glass-border-glow: rgba(244, 63, 94, 0.5);
  --glow-shadow: 0 0 35px rgba(251, 146, 60, 0.35);
}

/* 4. Obsidian Royal Gold Theme */
[data-theme="obsidian"] {
  --bg-primary: #0a0a0c;
  --bg-secondary: #16151a;
  --bg-tertiary: #232129;
  --accent-primary: #fbbf24;
  --accent-secondary: #f59e0b;
  --accent-tertiary: #d97706;
  --glass-bg: rgba(22, 21, 26, 0.8);
  --glass-card: rgba(30, 28, 36, 0.75);
  --glass-border: rgba(251, 191, 36, 0.25);
  --glass-border-glow: rgba(245, 158, 11, 0.5);
  --glow-shadow: 0 0 35px rgba(251, 191, 36, 0.3);
}

/* 5. Tokyo Synthwave Theme */
[data-theme="synthwave"] {
  --bg-primary: #12072b;
  --bg-secondary: #1e0d42;
  --bg-tertiary: #2e105e;
  --accent-primary: #ff2a85;
  --accent-secondary: #00f0ff;
  --accent-tertiary: #ffe600;
  --glass-bg: rgba(30, 13, 66, 0.8);
  --glass-card: rgba(45, 18, 92, 0.72);
  --glass-border: rgba(255, 42, 133, 0.3);
  --glass-border-glow: rgba(0, 240, 255, 0.5);
  --glow-shadow: 0 0 35px rgba(255, 42, 133, 0.35);
}

/* ==========================================================================
   Base Reset & Typography
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

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

/* Ambient Glowing Orbs */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.38;
  animation: floatOrb 20s ease-in-out infinite alternate;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
  top: -100px;
  left: 15%;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
  bottom: -150px;
  right: 10%;
  animation-duration: 24s;
  animation-delay: -6s;
}

.orb-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--accent-tertiary) 0%, transparent 70%);
  top: 45%;
  left: 65%;
  animation-duration: 18s;
  animation-delay: -9s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.15); }
  100% { transform: translate(-40px, 70px) scale(0.9); }
}

/* Cursor Glow */
#cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.09) 0%, rgba(168, 85, 247, 0.04) 45%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: width 0.3s, height 0.3s;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */

.app-container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 2.5rem 2.5rem;
  max-width: 1480px;
  margin: 0 auto;
  gap: 3.5rem;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  width: 100%;
}

.glass-panel {
  background: var(--glass-card);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

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

.section-header {
  margin-bottom: 2.2rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.glass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.25rem;
  gap: 0.8rem;
  background: var(--glass-bg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 1rem;
  z-index: 100;
  transition: var(--transition-smooth);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  user-select: none;
  cursor: pointer;
  flex-shrink: 0;
}

.brand-icon-wrapper {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: 0 0 18px rgba(0, 242, 254, 0.4);
  transition: var(--transition-bounce);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.header-brand:hover .brand-icon-wrapper {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.7);
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.brand-highlight {
  color: var(--accent-primary);
}

/* Desktop Nav Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font-main);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-btn-link {
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.08);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.icon-btn,
.lang-switch-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  height: 35px;
  position: relative;
}

.icon-btn {
  width: 35px;
}

.icon-btn:hover,
.lang-switch-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
  transform: translateY(-2px);
}

.icon {
  width: 16px;
  height: 16px;
}

/* Header CTA: Discord beitreten */
.header-cta-btn {
  padding: 0.48rem 1.1rem !important;
  font-size: 0.84rem !important;
  border-radius: var(--radius-full) !important;
  text-decoration: none;
  background: #5865f2 !important;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.5) !important;
  color: #fff !important;
  white-space: nowrap;
}

.header-cta-btn:hover {
  background: #4752c4 !important;
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.8) !important;
}

.nav-discord-icon {
  width: 16px;
  height: 16px;
}

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 8px;
}

.hamburger-line {
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Audio Visualizer Bars */
.audio-visualizer-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 15px;
}

.bar {
  width: 2.5px;
  background: var(--accent-primary);
  border-radius: 1px;
  height: 5px;
}

.audio-btn.playing .bar-1 { animation: waveBar 0.8s ease-in-out infinite alternate; }
.audio-btn.playing .bar-2 { animation: waveBar 0.5s ease-in-out infinite alternate 0.2s; }
.audio-btn.playing .bar-3 { animation: waveBar 0.7s ease-in-out infinite alternate 0.4s; }
.audio-btn.playing .bar-4 { animation: waveBar 0.6s ease-in-out infinite alternate 0.1s; }

@keyframes waveBar {
  0% { height: 3px; }
  100% { height: 15px; }
}

/* Dropdown Menus */
.theme-dropdown,
.lang-dropdown,
.canvas-fx-dropdown,
.settings-dropdown {
  position: relative;
}

.glass-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(8, 12, 26, 0.96);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.65rem;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 240px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 242, 254, 0.15);
  z-index: 120;
}

.settings-dropdown.open .glass-dropdown,
.lang-dropdown.open .glass-dropdown {
  display: flex;
  animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-header {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  padding: 0.3rem 0.4rem;
}

.theme-mini-grid,
.fx-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.theme-opt,
.lang-opt,
.fx-opt {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  color: var(--text-secondary);
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.8rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.theme-opt:hover,
.lang-opt:hover,
.fx-opt:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.theme-opt.active,
.lang-opt.active,
.fx-opt.active {
  background: rgba(0, 242, 254, 0.12);
  color: var(--accent-primary);
  font-weight: 700;
  border: 1px solid rgba(0, 242, 254, 0.3);
}

.settings-audio-opt {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
}

.settings-audio-opt:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--accent-primary);
}

.lang-switch-btn {
  padding: 0.35rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.35rem;
}

/* User Profile Dropdown & Discord Auth */
.auth-header-container {
  display: flex;
  align-items: center;
}

.user-profile-dropdown {
  position: relative;
}

.user-profile-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.4);
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.user-profile-pill:hover {
  background: rgba(88, 101, 242, 0.28);
  border-color: #5865f2;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.35);
  transform: translateY(-1px);
}

.user-avatar-wrap {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #35363c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.user-online-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23a55a;
  border: 2px solid #111214;
}

.user-pill-name {
  color: #ffffff;
  font-size: 0.86rem;
}

.user-profile-dropdown.open .user-profile-menu {
  display: flex;
  animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-profile-menu {
  min-width: 270px;
  padding: 1rem;
  gap: 0.8rem;
}

.user-menu-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
}

.user-big-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #5865f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.user-big-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.user-big-meta strong {
  color: #fff;
  font-size: 0.95rem;
}

.user-sub-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.role-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #5865f2;
  background: rgba(88, 101, 242, 0.15);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  display: inline-block;
  margin-top: 0.15rem;
}

.user-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.user-stats-row .stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.user-stats-row .stat-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.user-stats-row .stat-val {
  font-size: 0.8rem;
  color: var(--text-primary);
}

.user-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.user-menu-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.user-menu-item.logout-opt {
  color: #ff5e62;
  margin-top: 0.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.55rem;
}

.user-menu-item.logout-opt:hover {
  background: rgba(255, 94, 98, 0.12);
  color: #ff5e62;
}



/* Discord Exclusive Login Gate Overlay */
.discord-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 30%, rgba(88, 101, 242, 0.32), rgba(3, 7, 18, 0.98) 75%);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1.5rem;
  overflow-y: auto;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.discord-gate-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.discord-gate-card {
  width: 100%;
  max-width: 520px;
  background: rgba(13, 17, 34, 0.96);
  border: 1px solid rgba(88, 101, 242, 0.55);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.2rem;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.95), 0 0 60px rgba(88, 101, 242, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  animation: modalScaleUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.gate-header-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.gate-avatar-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

.gate-logo-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  border: 2px solid rgba(0, 242, 254, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.3);
}

.gate-devnox-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.gate-link-pulse {
  font-size: 1.4rem;
  color: var(--accent-primary);
  animation: pulseGlow 1.8s infinite ease-in-out;
}

.gate-discord-logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #5865f2;
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.7);
}

.gate-discord-icon {
  width: 28px;
  height: 28px;
}

.gate-security-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #c9cdfb;
  background: rgba(88, 101, 242, 0.18);
  border: 1px solid rgba(88, 101, 242, 0.35);
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.gate-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23a55a;
  box-shadow: 0 0 10px #23a55a;
  animation: pulseDot 1.4s infinite;
}

.gate-text-center {
  text-align: center;
}

.gate-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.gate-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Benefits Grid */
.gate-benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
}

.gate-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  font-size: 1.15rem;
  line-height: 1.3;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.benefit-text strong {
  font-size: 0.84rem;
  color: #ffffff;
  font-weight: 700;
}

.benefit-text span {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.gate-btn-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.gate-real-oauth-btn {
  text-decoration: none;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gate-real-oauth-btn:hover {
  background: linear-gradient(135deg, #4752c4, #353ca3);
  box-shadow: 0 14px 40px rgba(88, 101, 242, 0.75);
  transform: translateY(-2px);
  color: #ffffff;
}

.gate-btn-icon {
  width: 22px;
  height: 22px;
}

.gate-community-btn {
  text-decoration: none;
  font-size: 0.82rem;
  padding: 0.65rem 0.8rem;
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center;
}

.gate-footer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px solid var(--glass-border);
  padding-top: 0.7rem;
}

/* Mobile Auth Status Box */
.mobile-auth-status-box {
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 0.5rem;
}

.mobile-user-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-avatar-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #5865f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-user-avatar {
  font-size: 1.1rem;
}

.mobile-user-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mobile-user-info strong {
  font-size: 0.9rem;
  color: #ffffff;
}

.mobile-user-badge {
  font-size: 0.7rem;
  color: var(--accent-primary);
}

.mobile-logout-btn {
  font-size: 1rem;
}

.mobile-discord-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.6rem 0.8rem;
  font-size: 0.85rem;
  background: #5865f2;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  opacity: 1;
  transition: var(--transition-smooth);
}

.mobile-drawer.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.mobile-drawer-content {
  width: 82%;
  max-width: 320px;
  height: 100%;
  background: rgba(10, 14, 30, 0.95);
  border-left: 1px solid var(--glass-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.mobile-nav-link {
  padding: 0.8rem 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
  text-align: left;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
}

.mobile-nav-link:hover {
  background: rgba(0, 242, 254, 0.12);
  color: var(--accent-primary);
}

.full-width {
  width: 100%;
}

/* ==========================================================================
   Live Activity Stream Ticker
   ========================================================================== */

.live-activity-stream {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin: -1.5rem auto 0;
  backdrop-filter: blur(15px);
  font-size: 0.84rem;
}

.stream-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.stream-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
}

.stream-text {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   1. Hero Section & AI Chat Integration
   ========================================================================== */

.hero-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  background: var(--glass-card);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3.2rem 2.8rem;
  max-width: 920px;
  width: 100%;
  text-align: center;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  animation: scaleFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glow-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary), transparent);
  animation: shimmerBorder 5s infinite linear;
}

@keyframes shimmerBorder {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hologram-glare {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
  transform: rotate(30deg);
  opacity: 0.6;
}

/* Emblem */
.hero-brand-emblem-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.emblem-glow-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), #3b82f6);
  animation: spinRing 7s linear infinite;
  filter: blur(10px);
  opacity: 0.8;
  z-index: 1;
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-emblem-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(0, 242, 254, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-brand-emblem-wrap:hover .hero-emblem-img {
  transform: scale(1.08);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-primary);
  margin-bottom: 1.2rem;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.hero-title {
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.1rem;
}

.title-brand {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
}

.title-slogan {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shineText 6s linear infinite;
}

@keyframes shineText {
  to { background-position: 200% center; }
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.glow-submit-btn {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #030712;
  border: none;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
  transition: var(--transition-bounce);
  white-space: nowrap;
  text-decoration: none;
}

.glow-submit-btn:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.75);
}

.btn-arrow {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}

.glow-submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.secondary-glass-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.96rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.secondary-glass-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
  transform: translateY(-2px);
}

/* AI Chat Hero Card */
.ai-chat-hero-box {
  background: rgba(13, 20, 42, 0.85);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 242, 254, 0.15);
}

.ai-chat-hero-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
}

.ai-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.ai-bot-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-primary);
  object-fit: cover;
}

.ai-pulse-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--accent-green);
  border: 2px solid #070913;
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
}

.ai-chat-text-wrap {
  flex: 1;
}

.ai-chat-header-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}

.ai-chat-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.ai-online-pill {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
}

.ai-chat-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.ai-start-btn {
  padding: 0.65rem 1.3rem !important;
  font-size: 0.9rem !important;
  flex-shrink: 0;
}

/* ==========================================================================
   2. Trust & Values Section
   ========================================================================== */

.trust-section {
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-card {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.trust-card:hover {
  border-color: var(--glass-border-glow);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--glow-shadow);
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.trust-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   3. Services & Pricing Section - High-Fidelity UI Redesign
   ========================================================================== */

.services-section {
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

@media (max-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.service-card {
  position: relative;
  background: rgba(10, 16, 36, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 254, 0.45);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.18);
}

/* Featured Top Angebot Bot Card */
.featured-service {
  background: linear-gradient(180deg, rgba(14, 24, 54, 0.85) 0%, rgba(8, 14, 32, 0.8) 100%);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 242, 254, 0.12);
}

.featured-service:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(0, 242, 254, 0.3);
}

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: 0 0 15px var(--accent-primary);
}

/* Featured Web Service Card */
.featured-web-service {
  background: linear-gradient(180deg, rgba(22, 16, 48, 0.82) 0%, rgba(8, 12, 30, 0.8) 100%);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(168, 85, 247, 0.15);
}

.featured-web-service:hover {
  border-color: rgba(217, 70, 239, 0.7);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(217, 70, 239, 0.35);
}

.service-card-glow-web {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #a855f7, #00f2fe);
  box-shadow: 0 0 15px #a855f7;
}

/* Badge Tags */
.service-badge-tag {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.service-badge-tag.glow-tag {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.35);
}

.service-badge-tag.glow-purple {
  background: rgba(168, 85, 247, 0.18);
  border-color: #c084fc;
  color: #f0abfc;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}

/* Service Card Header */
.service-card-header {
  margin-bottom: 1rem;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(3deg);
}

.icon-bot {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.icon-server {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.icon-boost {
  background: rgba(244, 63, 94, 0.1);
  border-color: rgba(244, 63, 94, 0.3);
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.15);
}

.icon-web {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.service-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.45;
  min-height: 2.6rem;
}

/* Card Hero Price Block */
.card-hero-price {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.featured-service .card-hero-price {
  border-color: rgba(0, 242, 254, 0.3);
  background: rgba(0, 242, 254, 0.07);
}

.web-price-hero {
  border-color: rgba(168, 85, 247, 0.35);
  background: rgba(168, 85, 247, 0.09);
}

.price-prefix {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-amount {
  font-family: var(--font-mono);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--accent-primary);
  letter-spacing: -0.5px;
}

.web-price-hero .price-amount {
  color: #38bdf8;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.price-suffix {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Service Checklist */
.service-checklist-wrap {
  flex-grow: 1;
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.check-svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: #10b981;
  filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.6));
}

.cyan-glow-check {
  color: #00f2fe;
  filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.6));
}

/* Module Checklist (Card 1) */
.module-checklist li {
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.28);
  padding: 0.38rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.check-icon {
  font-size: 0.85rem;
  margin-right: 0.2rem;
}

.check-title {
  flex-grow: 1;
  font-size: 0.78rem;
  color: var(--text-primary);
  font-weight: 500;
}

.check-price-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: rgba(0, 242, 254, 0.12);
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 242, 254, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Compact Bundle Banner (Card 1) */
.compact-bundle-banner {
  margin-top: 0.75rem;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(0, 242, 254, 0.4);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.bundle-banner-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.bundle-sparkle {
  font-size: 1.1rem;
}

.bundle-banner-title {
  display: block;
  font-size: 0.82rem;
  color: #fff;
  font-weight: 800;
  line-height: 1;
}

.bundle-banner-sub {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 500;
  display: block;
  margin-top: 0.15rem;
}

.bundle-banner-save {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: #f43f5e;
  font-weight: 800;
}

.bundle-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bundle-strike {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-decoration: line-through;
  line-height: 1;
}

.bundle-final {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--accent-primary);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
  line-height: 1.1;
}

/* Card Footer */
.service-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-request-btn {
  font-size: 0.92rem;
  padding: 0.75rem 1.1rem;
  justify-content: center;
  border-radius: var(--radius-full);
}

.service-card .secondary-glass-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
}

.service-card .secondary-glass-btn:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--accent-primary);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
  transform: translateY(-2px);
}

.btn-sub-arrow {
  transition: transform 0.2s ease;
  font-size: 1.1rem;
  line-height: 1;
}

.service-request-btn:hover .btn-sub-arrow {
  transform: translateX(4px);
}

.web-order-cta {
  background: linear-gradient(135deg, #00f2fe, #a855f7);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.45);
}

.web-order-cta:hover {
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.75);
}

.price-disclaimer-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

/* ==========================================================================
   4. Pricing Summary Table & Notice Section
   ========================================================================== */

.pricing-summary-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pricing-card {
  max-width: 820px;
  width: 100%;
  padding: 3rem 2.5rem;
}

.pricing-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.overview-table-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 660px;
  margin: 1.8rem auto 1rem;
  text-align: left;
}

.overview-row-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.overview-row-card:hover {
  border-color: var(--accent-primary);
  background: rgba(0, 242, 254, 0.05);
}

.overview-col-left {
  display: flex;
  flex-direction: column;
}

.overview-category {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.overview-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.overview-price-tag {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.overview-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-footer-notice-box {
  background: rgba(0, 242, 254, 0.06);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 660px;
  margin: 0 auto;
}

.notice-main-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ==========================================================================
   5. Workflow Section
   ========================================================================== */

.workflow-section {
  width: 100%;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.workflow-step-card {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.workflow-step-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(0, 242, 254, 0.35);
  margin-bottom: 0.6rem;
  line-height: 1;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   6. Support Section
   ========================================================================== */

.support-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.support-card {
  max-width: 780px;
  width: 100%;
  padding: 3rem 2rem;
}

.support-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid #5865f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.4);
}

.support-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0.6rem auto 2rem;
}

.support-actions-row {
  display: flex;
  justify-content: center;
}

.discord-ticket-cta {
  background: #5865f2 !important;
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.5) !important;
  color: #fff !important;
}

.discord-ticket-cta:hover {
  background: #4752c4 !important;
  box-shadow: 0 0 35px rgba(88, 101, 242, 0.8) !important;
}

.btn-discord-icon {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.glass-footer {
  position: relative;
  z-index: 20;
  padding: 3rem 2.5rem 1.8rem;
  background: var(--glass-bg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--accent-primary);
}

.footer-slogan {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-nav-col,
.footer-legal-col,
.footer-social-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-primary);
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.footer-nav-col a,
.footer-link-btn {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: var(--font-main);
}

.footer-nav-col a:hover,
.footer-link-btn:hover {
  color: var(--accent-primary);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
}

.social-icon-btn.discord-btn:hover {
  background: #5865F2;
  color: #fff;
  border-color: #5865F2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.8);
  transform: translateY(-3px);
}

.social-icon-btn.tiktok-btn:hover {
  background: #fe2c55;
  color: #fff;
  border-color: #fe2c55;
  box-shadow: 0 0 20px rgba(254, 44, 85, 0.8);
  transform: translateY(-3px);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.4rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.easter-egg-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.easter-egg-btn:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

/* ==========================================================================
   Modals Common Styles
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
  opacity: 1;
  transition: var(--transition-smooth);
}

.modal-backdrop.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  position: relative;
  width: 100%;
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.modal-subtitle {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.modal-mini-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent-primary);
}

.close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.close-btn:hover {
  background: rgba(244, 63, 94, 0.25);
  border-color: #f43f5e;
  color: #fff;
  transform: scale(1.1) rotate(90deg);
}

/* Partner Modal */
.partner-modal-card {
  max-width: 620px;
  width: 100%;
  padding: 2.2rem;
  animation: scaleIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-empty-state {
  padding: 2.2rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  background: rgba(0, 0, 0, 0.35);
}

.empty-icon {
  font-size: 3rem;
}

.empty-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.empty-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.5;
}

.partner-cta-btn {
  margin-top: 0.6rem;
}

/* Legal Modals */
.legal-modal-card {
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
}

.legal-content {
  overflow-y: auto;
  padding-right: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.legal-content h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin: 1.2rem 0 0.4rem;
}

.legal-content h4:first-child {
  margin-top: 0;
}

.legal-content a {
  color: var(--accent-primary);
  text-decoration: underline;
}

/* Terminal Modal */
.terminal-modal-card {
  max-width: 780px;
  width: 100%;
  padding: 1.5rem;
  background: rgba(8, 12, 24, 0.92);
  border: 1px solid rgba(0, 242, 254, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 242, 254, 0.2);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terminal-header-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.terminal-body {
  height: 340px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.5;
  color: #a7f3d0;
  padding: 0.6rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ascii-art {
  font-size: 0.65rem;
  color: var(--accent-primary);
  margin-bottom: 0.8rem;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.cmd-highlight {
  color: #fbbf24;
  font-weight: 700;
}

.terminal-input-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.terminal-prompt {
  color: var(--accent-primary);
  font-weight: 700;
  white-space: nowrap;
}

.terminal-input-field {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  outline: none;
}

.terminal-quick-cmds {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.quick-lbl {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.quick-cmd-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.quick-cmd-btn:hover {
  background: rgba(0, 242, 254, 0.15);
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.term-line-input { color: #f8fafc; font-weight: 700; margin-top: 0.5rem; }
.term-line-output { color: #94a3b8; margin: 0.2rem 0; }
.term-line-success { color: #10b981; }
.term-line-error { color: #f43f5e; }
.term-line-ai { color: var(--accent-primary); background: rgba(0, 242, 254, 0.08); padding: 0.4rem 0.6rem; border-left: 3px solid var(--accent-primary); border-radius: 2px; margin: 0.4rem 0; }

/* Mini-Game Modal */
.game-modal-card {
  max-width: 720px;
  width: 100%;
  padding: 1.8rem;
}

.game-scoreboard {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
  align-items: center;
}

.score-pill {
  flex: 1 1 auto;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.lives-pill { border-color: rgba(244, 63, 94, 0.45); background: rgba(244, 63, 94, 0.08); }
.lives-icons { display: inline-flex; align-items: center; gap: 4px; }
.heart-svg { width: 18px; height: 18px; fill: #f43f5e; filter: drop-shadow(0 0 6px rgba(244, 63, 94, 0.9)); }
.heart-svg.lost { fill: rgba(255, 255, 255, 0.15); filter: none; opacity: 0.35; }
.combo-pill .score-val { color: #fbbf24; }

.score-lbl { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700; color: var(--text-muted); }
.score-val { font-family: var(--font-mono); font-size: 1.15rem; font-weight: 800; color: var(--accent-primary); }

.powerup-status-hud { display: flex; gap: 0.4rem; }
.powerup-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 242, 254, 0.2);
  border: 1px solid var(--accent-primary);
  color: #fff;
  animation: pulseScale 1s infinite;
}

.speed-badge { background: rgba(0, 242, 254, 0.2); border-color: #00f2fe; color: #a5f3fc; }
.shield-badge { background: rgba(16, 185, 129, 0.25); border-color: #10b981; color: #a7f3d0; }
.mult-badge { background: rgba(245, 158, 11, 0.25); border-color: #f59e0b; color: #fde68a; }
.slomo-badge { background: rgba(168, 85, 247, 0.25); border-color: #a855f7; color: #e9d5ff; }

.game-canvas-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #030712;
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.85);
}

#game-canvas {
  width: 100%;
  height: auto;
  display: block;
  cursor: crosshair;
}

.game-overlay-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 18, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  gap: 0.8rem;
}

.powerup-legend {
  display: flex;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
}

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

.toast {
  background: var(--glass-bg);
  backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border-glow);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), var(--glow-shadow);
  animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.9rem;
}

.toast-icon { font-size: 1.2rem; }

@keyframes toastIn {
  from { transform: translateX(60px) scale(0.9); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes scaleFadeIn {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Section Badges & Typography Utilities
   ========================================================================== */

.section-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid var(--glass-border-glow);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

/* ==========================================================================
   2. LIVE CLUSTER STATUS & METRICS HUB
   ========================================================================== */

.metrics-hub-section {
  width: 100%;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.metric-card {
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-glow);
  box-shadow: var(--card-shadow), var(--glow-shadow);
}

.metric-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.metric-icon-wrap.cyan {
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.metric-icon-wrap.emerald {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.metric-icon-wrap.purple {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.metric-icon-wrap.gold {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-number-row {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.metric-unit {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.metric-lbl {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ==========================================================================
   5. INTERACTIVE PROJECT PRICE CALCULATOR (WUNSCHPROJEKT-KONFIGURATOR)
   ========================================================================== */

.calculator-section {
  width: 100%;
}

.calculator-layout-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.calculator-options-wrap {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--glass-border);
}

.group-icon {
  margin-right: 0.5rem;
}

.group-quick-btn {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--glass-border-glow);
  color: var(--accent-primary);
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.group-quick-btn:hover {
  background: var(--accent-primary);
  color: #070913;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.calc-checkbox-card {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.calc-item-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.card-check-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  transition: var(--transition-smooth);
}

.calc-checkbox-card:hover .card-check-inner {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 242, 254, 0.3);
  transform: translateY(-2px);
}

.calc-item-check:checked + .card-check-inner {
  background: rgba(0, 242, 254, 0.08);
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
}

.card-check-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-badge-icon {
  font-size: 1.1rem;
}

.item-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-primary);
}

.item-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  flex-grow: 1;
}

.item-price-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-top: 0.4rem;
}

.calc-extras-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.boost-counter-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.boost-counter-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.boost-sparkle {
  font-size: 1.5rem;
}

.boost-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.boost-counter-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
}

.counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.counter-btn:hover {
  background: var(--accent-primary);
  color: #070913;
}

.counter-val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-primary);
  min-width: 20px;
  text-align: center;
}

.express-toggle-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.express-toggle-label:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
}

.express-toggle-label input {
  display: none;
}

.toggle-slider {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  position: relative;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.toggle-slider::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: var(--transition-smooth);
}

.express-toggle-label input:checked + .toggle-slider {
  background: var(--accent-gold);
}

.express-toggle-label input:checked + .toggle-slider::after {
  transform: translateX(20px);
}

.express-text {
  display: flex;
  flex-direction: column;
}

.express-text strong {
  font-size: 0.92rem;
  color: var(--accent-gold);
}

.express-text span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Calculator Summary Card */
.calculator-summary-wrap {
  width: 100%;
}

.calc-summary-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-color: var(--glass-border-glow);
}

.sticky-summary {
  position: sticky;
  top: 5rem;
}

.summary-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.summary-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 1px;
}

.summary-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}

.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 80px;
  max-height: 240px;
  overflow-y: auto;
}

.summary-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.summary-item-name {
  color: var(--text-secondary);
}

.summary-item-price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-primary);
}

.summary-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 1rem 0;
  text-align: center;
}

.summary-divider {
  height: 1px;
  background: var(--glass-border);
  width: 100%;
}

.summary-calc-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.discount-row {
  color: var(--accent-green);
  font-weight: 600;
}

.total-row {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 0.6rem;
  border-top: 1px solid var(--glass-border);
}

.calc-total-highlight {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.calc-delivery-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  color: var(--text-primary);
}

.calc-delivery-badge.express-active {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--accent-gold);
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.summary-notice {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   6. LIVE DISCORD BOT SIMULATOR
   ========================================================================== */

.simulator-section {
  width: 100%;
}

.discord-simulator-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  height: 620px;
  max-height: 80vh;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #2b2d31;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

/* Discord Sidebar */
.discord-sidebar {
  background: #1e1f22;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.discord-server-header {
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.discord-server-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.server-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.server-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #f2f3f5;
  letter-spacing: 0.5px;
}

.server-verified-badge {
  color: #5865f2;
  font-size: 0.8rem;
}

.discord-channels-list {
  padding: 0.8rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
}

.channel-category {
  font-size: 0.68rem;
  font-weight: 700;
  color: #949ba4;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.4rem 0.2rem;
}

.discord-channel-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 4px;
  color: #949ba4;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: all 0.15s ease;
}

.discord-channel-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #dbdee1;
}

.discord-channel-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.channel-hash {
  font-size: 1.1rem;
  color: #80848e;
}

.discord-user-bar {
  background: #232428;
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.discord-user-avatar {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #35363c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.user-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #23a55a;
  border: 2px solid #232428;
}

.discord-user-meta {
  display: flex;
  flex-direction: column;
}

.discord-username {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f2f3f5;
}

.discord-tag {
  font-size: 0.68rem;
  color: #949ba4;
}

/* Discord Chat Stage */
.discord-chat-stage {
  background: #313338;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.discord-chat-header {
  padding: 0.8rem 1.2rem;
  background: #313338;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  z-index: 2;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #f2f3f5;
  font-size: 0.94rem;
}

.chat-hash {
  color: #80848e;
  font-size: 1.3rem;
}

.chat-divider {
  color: #4e5058;
}

.chat-topic {
  font-size: 0.82rem;
  color: #949ba4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-action-btn {
  background: transparent;
  border: 1px solid #4e5058;
  color: #dbdee1;
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.chat-action-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Messages Scroll Area */
.discord-messages-scroll {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.2rem 1.2rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  scroll-behavior: smooth;
}

/* Custom Discord Scrollbars */
.discord-messages-scroll::-webkit-scrollbar,
.discord-channels-list::-webkit-scrollbar {
  width: 8px;
}

.discord-messages-scroll::-webkit-scrollbar-track,
.discord-channels-list::-webkit-scrollbar-track {
  background: #2b2d31;
  border-radius: 4px;
}

.discord-messages-scroll::-webkit-scrollbar-thumb,
.discord-channels-list::-webkit-scrollbar-thumb {
  background: #1a1b1e;
  border-radius: 4px;
}

.discord-messages-scroll::-webkit-scrollbar-thumb:hover,
.discord-channels-list::-webkit-scrollbar-thumb:hover {
  background: #111214;
}

.discord-messages-scroll,
.discord-channels-list {
  scrollbar-width: thin;
  scrollbar-color: #1a1b1e #2b2d31;
}

.discord-msg-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  animation: fadeIn 0.25s ease;
  position: relative;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.discord-msg-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.discord-msg-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.discord-msg-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
  min-width: 0;
}

.discord-msg-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.discord-msg-author {
  font-weight: 700;
  font-size: 0.92rem;
  color: #f2f3f5;
}

.discord-bot-tag {
  background: #5865f2;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
}

.discord-msg-time {
  font-size: 0.72rem;
  color: #949ba4;
}

.discord-msg-text {
  font-size: 0.92rem;
  color: #dbdee1;
  line-height: 1.45;
  word-break: break-word;
}

.mention-cmd {
  background: rgba(88, 101, 242, 0.2);
  color: #c9cdfb;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 600;
}

/* Discord Rich Embed Card */
.discord-embed-card {
  background: #2b2d31;
  border-radius: 4px;
  border-left: 4px solid #00f2fe;
  padding: 0.9rem 1.1rem;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.35rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.embed-cyan { border-left-color: #00f2fe; }

.embed-author-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #dbdee1;
}

.embed-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #f2f3f5;
  margin: 0.15rem 0;
}

.embed-desc {
  font-size: 0.85rem;
  color: #dbdee1;
  line-height: 1.4;
}

.embed-fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.embed-field {
  display: flex;
  flex-direction: column;
}

.field-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #f2f3f5;
}

.field-val {
  font-size: 0.82rem;
  color: #dbdee1;
}

.embed-footer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #949ba4;
  margin-top: 0.3rem;
}

.embed-footer-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

/* Discord Action Buttons */
.discord-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.discord-comp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 3px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
  color: #ffffff;
}

.btn-blurple { background: #5865f2; }
.btn-blurple:hover { background: #4752c4; }

.btn-green { background: #23a55a; }
.btn-green:hover { background: #1a7a42; }

.btn-grey { background: #4e5058; }
.btn-grey:hover { background: #6d6f78; }

.btn-red { background: #da373c; }
.btn-red:hover { background: #a1282c; }

/* Floating Scroll to Bottom Button */
.sim-scroll-bottom-btn {
  position: absolute;
  bottom: 85px;
  right: 25px;
  background: #5865f2;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-bounce);
}

.sim-scroll-bottom-btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

.sim-scroll-bottom-btn.hidden {
  display: none;
}

/* Typing indicator */
.discord-typing-indicator {
  font-size: 0.74rem;
  color: #949ba4;
  padding: 0.2rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 20px;
  background: #313338;
  flex-shrink: 0;
}

.typing-dots {
  display: inline-flex;
  gap: 3px;
}

.typing-dots span {
  width: 4px;
  height: 4px;
  background: #949ba4;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Quick Slash Pills */
.sim-quick-pills {
  padding: 0.45rem 1.2rem;
  background: #2b2d31;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  overflow-x: auto;
  flex-shrink: 0;
}

.quick-title {
  font-size: 0.74rem;
  font-weight: 700;
  color: #949ba4;
  white-space: nowrap;
}

.sim-pill {
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.3);
  color: #c9cdfb;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.sim-pill:hover {
  background: #5865f2;
  color: #ffffff;
}

/* Discord Chat Input */
.discord-input-container {
  padding: 0.5rem 1.2rem 0.85rem;
  background: #313338;
  flex-shrink: 0;
}

.discord-input-box {
  background: #383a40;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 0.8rem;
  height: 44px;
}

.input-plus-btn,
.input-emoji-btn {
  background: #4e5058;
  color: #dbdee1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 0.6rem;
  transition: background 0.15s ease;
}

.input-emoji-btn {
  margin-right: 0.6rem;
  font-size: 0.9rem;
  background: transparent;
}

.input-plus-btn:hover,
.input-emoji-btn:hover {
  background: #5865f2;
  color: #fff;
}

.discord-text-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #f2f3f5;
  font-size: 0.92rem;
}

.discord-text-input::placeholder {
  color: #6d6f78;
}

.discord-send-btn {
  background: transparent;
  border: none;
  color: #949ba4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}

.discord-send-btn:hover {
  color: var(--accent-primary);
}

.send-icon {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   7. LIVE DISCORD EMBED BUILDER & DESIGNER STUDIO
   ========================================================================== */

.embed-studio-section {
  width: 100%;
}

.embed-studio-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  padding: 2.2rem;
}

.embed-controls-panel {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.panel-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.4rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.color-palette-picker {
  display: flex;
  gap: 0.6rem;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.color-dot.active {
  border-color: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 15px currentColor;
}

.studio-input,
.studio-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.88rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.studio-input:focus,
.studio-textarea:focus {
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.studio-textarea {
  resize: vertical;
}

.studio-buttons-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

/* Embed Studio Right Preview */
.embed-preview-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.preview-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-hot);
  letter-spacing: 1px;
}

.preview-channel-pill {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.discord-preview-box {
  background: #313338;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.discord-preview-msg {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

/* ==========================================================================
   8. DISCORD SERVER ARCHITECTURE EXPLORER
   ========================================================================== */

.server-explorer-section {
  width: 100%;
}

/* Server Template Showroom Tabs */
.server-template-tabs-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.8rem 0 1rem;
}

.server-template-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.server-template-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 242, 254, 0.4);
  transform: translateY(-2px);
}

.server-template-tab.active {
  background: rgba(0, 242, 254, 0.12);
  border-color: var(--accent-primary);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.25);
}

.tab-badge-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.tab-text-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tab-title {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tab-sub {
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-top: 0.1rem;
}

.tab-price-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.server-template-feature-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.6rem;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(20px);
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tag-check {
  color: var(--accent-green);
}

.architecture-explorer-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.8rem;
  align-items: flex-start;
}

.arch-tree-panel {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.arch-server-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--glass-border);
}

.arch-server-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #23a55a;
  box-shadow: 0 0 10px #23a55a;
}

.arch-categories-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.arch-category {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.arch-cat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
}

.arch-cat-header:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.cat-chevron {
  font-size: 0.65rem;
  color: var(--accent-primary);
  transition: transform 0.2s ease;
}

.arch-channel-items {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 0.6rem;
}

.arch-chan-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.arch-chan-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  transform: translateX(3px);
}

.arch-chan-item.active {
  background: rgba(0, 242, 254, 0.12);
  border-left: 3px solid var(--accent-primary);
  color: var(--text-primary);
  font-weight: 600;
}

.chan-icon {
  font-size: 1rem;
}

.chan-name {
  flex-grow: 1;
}

.chan-lock-icon {
  font-size: 0.75rem;
  color: var(--accent-gold);
}

/* Architecture Detail Inspector */
.arch-detail-panel {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border-color: var(--glass-border-glow);
}

.inspector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.8rem;
}

.inspector-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.inspector-hash {
  font-size: 1.6rem;
  color: var(--accent-primary);
}

.inspector-channel-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.inspector-perm-badge {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-gold);
}

.inspector-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.inspector-meta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.meta-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.meta-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.meta-val {
  font-size: 0.88rem;
  color: var(--text-primary);
}

.highlight-green {
  color: var(--accent-green);
}

.inspector-desc-box {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.inspector-desc-title {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-primary);
}

.inspector-desc-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.inspector-preview-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inspector-msg-mock {
  background: #313338;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  border-left: 3px solid #5865f2;
  font-size: 0.88rem;
}

.mock-author {
  font-weight: 700;
  color: #5865f2;
  margin-bottom: 0.3rem;
}

.mock-text {
  color: #dbdee1;
  line-height: 1.5;
}

.inspector-footer {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}

.secondary-glass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-bounce);
}

.secondary-glass-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

/* ==========================================================================
   11. CUSTOMER REVIEWS & TESTIMONIALS SECTION
   ========================================================================== */

.reviews-section {
  width: 100%;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.review-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-glow);
  box-shadow: var(--card-shadow), var(--glow-shadow);
}

.review-stars {
  font-size: 1.2rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.review-quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}

.review-user-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.review-avatar-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--glass-border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.review-user-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.review-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.review-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-verified-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   12. SEARCHABLE FAQ ACCORDION SECTION
   ========================================================================== */

.faq-section {
  width: 100%;
}

.faq-search-wrap {
  max-width: 580px;
  margin: 1.4rem auto 0;
}

.faq-search-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border-glow);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.4rem;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.faq-search-field:focus {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.3);
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 880px;
  margin: 2.2rem auto 0;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  color: var(--text-primary);
}

.faq-q-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-chevron {
  font-size: 0.8rem;
  color: var(--accent-primary);
  transition: transform 0.25s ease;
}

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

.faq-item.open .faq-answer-content {
  max-height: 250px;
  padding-bottom: 1.4rem;
}

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

/* ==========================================================================
   COMMAND PALETTE MODAL (Ctrl+K)
   ========================================================================== */

.cmd-search-btn {
  gap: 0.4rem;
  padding: 0 0.8rem;
  width: auto !important;
}

.cmd-badge-kbd {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  color: var(--text-secondary);
}

.cmd-palette-card {
  width: 100%;
  max-width: 620px;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), var(--glow-shadow);
  animation: scaleFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cmd-palette-input-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
}

.cmd-search-icon {
  width: 22px;
  height: 22px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

#cmd-palette-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: var(--text-primary);
}

.cmd-esc-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  color: var(--text-muted);
}

.cmd-palette-results {
  max-height: 340px;
  overflow-y: auto;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cmd-palette-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
}

.cmd-palette-item:hover,
.cmd-palette-item.selected {
  background: rgba(0, 242, 254, 0.12);
  border-left: 3px solid var(--accent-primary);
}

.cmd-palette-item-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cmd-palette-item-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cmd-palette-item-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cmd-palette-item-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.cmd-palette-item-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-primary);
  background: rgba(0, 242, 254, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.cmd-palette-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  padding: 0.65rem 1.4rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--glass-border);
  font-size: 0.74rem;
  color: var(--text-muted);
}

.cmd-palette-footer kbd {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  font-family: var(--font-mono);
}

.footer-easter-actions {
  display: flex;
  gap: 0.6rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (hover: none) and (pointer: coarse) {
  #cursor-glow { display: none !important; }
  .tilt-card { transform: none !important; }
}

/* Tablet & Small Desktop (< 1180px) */
@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .trust-grid,
  .services-grid,
  .workflow-grid,
  .calculator-layout-grid,
  .discord-simulator-container,
  .embed-studio-layout,
  .architecture-explorer-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .discord-sidebar {
    display: none;
  }

  .sticky-summary {
    position: static;
  }

  .footer-top-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Mobile Devices (< 680px) */
@media (max-width: 680px) {
  .app-container {
    padding: max(0.8rem, env(safe-area-inset-top)) max(0.8rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) max(0.8rem, env(safe-area-inset-left));
    gap: 2.2rem;
  }

  .main-content {
    gap: 3rem;
  }

  .glass-header {
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-md);
  }

  .header-cta-btn {
    display: none;
  }

  .live-activity-stream {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: -0.5rem;
  }

  .hero-card {
    padding: 2rem 1.2rem;
  }

  .hero-brand-emblem-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .hero-emblem-img {
    width: 80px;
    height: 80px;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.6rem;
  }

  .hero-action-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .hero-action-buttons a {
    width: 100%;
    justify-content: center;
  }

  .ai-chat-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .ai-chat-header-row {
    justify-content: center;
  }

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

  .calculator-options-wrap,
  .calc-summary-card,
  .embed-studio-layout,
  .arch-detail-panel,
  .trust-card,
  .service-card,
  .pricing-card,
  .support-card,
  .workflow-step-card,
  .review-card {
    padding: 1.6rem 1.1rem;
  }

  .form-row-grid {
    grid-template-columns: 1fr;
  }

  .calc-options-grid {
    grid-template-columns: 1fr;
  }

  .overview-row-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .toast-container {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .modal-backdrop {
    padding: 0.8rem;
    align-items: flex-start;
    overflow-y: auto;
  }

  .partner-modal-card,
  .legal-modal-card,
  .terminal-modal-card,
  .game-modal-card,
  .cmd-palette-card {
    padding: 1.2rem 1rem;
    margin: auto 0;
    max-height: 90vh;
  }

  .game-scoreboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .powerup-status-hud {
    grid-column: span 2;
    justify-content: center;
  }

  .ascii-art {
    font-size: 0.35rem;
    overflow-x: auto;
  }

  .terminal-body {
    height: 260px;
  }
}