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

:root {
  --bg-pitch-black: #000000;
  --bg-charcoal: #2b2b2b;
  --bg-card: radial-gradient(ellipse at center, rgba(191, 191, 191, 0.05) 0%, rgba(191, 191, 191, 0.24) 100%);
  --bg-card-hover: radial-gradient(ellipse at center, rgba(191, 191, 191, 0.12) 0%, rgba(191, 191, 191, 0.38) 100%);
  --bg-card-border: rgba(191, 191, 191, 0.45);
  --bg-card-border-hover: rgba(255, 255, 255, 0.85);
  
  --text-main: #f3f4f6;
  --text-muted: #8b8e9c;
  --text-dim: #5c5f6e;
  
  --slate-matte: #15161b;
  --distressed-gray: #717482;
  --titanium-accent: #b0b4c2;
  
  --border-radius-pill: 50px;
  --border-radius: 18px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-family: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

section[id],
#why-osstre,
#features,
#media {
  scroll-margin-top: 95px;
}

#pricing {
  scroll-margin-top: 40px;
}

body {
  background-color: #000000;
  background-image: none;
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-family);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Background Animated Canvas */
#bg-mesh-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

/* Distressed Fine Grid Texture */
.distressed-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Distressed Scanline / Ambient Glow Sweep */
.distressed-scanline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: distressedPulse 8s ease-in-out infinite alternate;
}

@keyframes distressedPulse {
  0% { opacity: 0.4; transform: scale(0.98); }
  100% { opacity: 0.9; transform: scale(1.02); }
}

/* Ambient Floating Background Light Orbs */
body::before {
  content: '';
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(200, 205, 220, 0.04) 0%, rgba(150, 160, 180, 0.01) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: ambientFloat 16s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(1px 1px at 30px 40px, rgba(255,255,255,0.06), transparent),
                    radial-gradient(1px 1px at 150px 160px, rgba(255,255,255,0.09), transparent),
                    radial-gradient(1px 1px at 280px 100px, rgba(255,255,255,0.05), transparent);
  background-repeat: repeat;
  background-size: 320px 320px;
  pointer-events: none;
  z-index: 0;
  animation: starDrift 90s linear infinite;
}

@keyframes ambientFloat {
  0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateX(-47%) translateY(30px) scale(1.15); opacity: 1; }
  100% { transform: translateX(-53%) translateY(10px) scale(0.95); opacity: 0.8; }
}

@keyframes starDrift {
  0% { background-position: 0 0; }
  100% { background-position: 320px 640px; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-pitch-black);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Floating Pill Navbar */
.floating-navbar-wrapper {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 100;
  padding: 0 1rem;
  animation: navbarSlideDown 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.floating-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 960px;
  padding: 0.5rem 0.6rem 0.5rem 1.25rem;
  background: rgba(12, 13, 18, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-pill);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.floating-navbar:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.brand-icon {
  font-size: 1rem;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  color: #b4b4c4;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  transition: var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-discord-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #b4b4c4;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  transition: var(--transition);
}

.nav-discord-btn:hover {
  color: #fff;
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #000000;
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.user-pill:hover {
  background: #e6e6e6;
  transform: translateY(-1px);
}

.user-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

/* Layout Container */
.layout-container {
  display: flex;
  flex: 1;
  width: 100%;
  max-width: 100%;
  margin: 6.5rem 0 3rem 0;
  padding: 0 2.5rem 0 1.5rem;
  gap: 3.5rem;
  position: relative;
  z-index: 1;
}

/* Sidebar - Floating Curved Glass Panel */
.sidebar {
  width: 260px;
  min-width: 260px;
  background: radial-gradient(ellipse at center, rgba(191, 191, 191, 0.05) 0%, rgba(191, 191, 191, 0.24) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(191, 191, 191, 0.45);
  border-radius: 28px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-self: flex-start;
  position: sticky;
  top: 6.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sidebar-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-left: 0.85rem;
  font-weight: 800;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.sidebar-link.active {
  background: #ffffff;
  color: #000000;
  font-weight: 800;
  border-color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

/* Main Content Area */
.main-content {
  flex: 1;
  padding: 0 1rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-header {
  margin-bottom: 2.5rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1.2px;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

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

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  transition: var(--transition);
}

.glass-card-hover:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

/* Hero Section */
.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 1rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d8d8e5;
  margin-bottom: 2rem;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
  transition: var(--transition);
}

.hero-pill-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-pulse-dot {
  width: 6px;
  height: 6px;
  background: #00e676;
  border-radius: 50%;
  box-shadow: 0 0 10px #00e676;
  animation: pulseDot 2s infinite ease-in-out;
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title-gray {
  color: #88889c;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.63;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Dual Centered Pill Action Buttons */
.hero-buttons-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.btn-pill-white {
  background: #ffffff;
  color: #000000;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 25px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-pill-white:hover {
  transform: translateY(-2px) scale(1.02);
  background: #f0f0f0;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.28);
}

.btn-pill-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 0.85rem 1.8rem;
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.btn-pill-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px) scale(1.02);
}

/* Bottom Telemetry Row */
.telemetry-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.telemetry-item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6a6a7c;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.telemetry-item:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
}

/* Form styling */
.btn-primary { background: #fff; color: #000; font-weight: 700; border-radius: var(--border-radius-pill); }
.btn-primary:hover { background: #e2e2e2; }
.btn-secondary { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--border-radius-pill); }
.btn-success { background: #fff; color: #000; font-weight: 700; border-radius: var(--border-radius-pill); }

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-weight: 600; margin-bottom: 0.6rem; color: #e2e8f0; font-size: 0.9rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(10, 10, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.form-textarea { resize: vertical; min-height: 110px; }

.embed-editor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .embed-editor-grid { grid-template-columns: 1fr; }
  .floating-navbar { width: 92%; }
  .hero-title { font-size: 3.2rem; }
}

.preset-gallery {
  display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.5rem 0; margin-top: 0.5rem;
}
.preset-chip {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.8rem; border-radius: var(--border-radius-pill); font-size: 0.75rem;
  font-weight: 600; cursor: pointer; white-space: nowrap; transition: var(--transition); color: var(--text-muted);
}
.preset-chip:hover { background: #ffffff; color: #000000; }

/* Anticheat Card Interactive Animations */
.ac-status-card {
  background: radial-gradient(ellipse at center, rgba(191, 191, 191, 0.05) 0%, rgba(191, 191, 191, 0.24) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(191, 191, 191, 0.45);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.ac-status-card:hover {
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

/* Why Us / Bilgilendirme Showcase Section */
.why-us-section {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: left;
}

.why-us-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.why-us-title-group {
  max-width: 680px;
}

/* Section Header Centered & Pill Badges */
.section-header-centered {
  text-align: center;
  margin-bottom: 3rem;
}

.section-pill-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.35rem 1.35rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d2d2e2;
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.section-pill-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.why-us-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.35rem 1.35rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d2d2e2;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.why-us-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.why-us-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 0.85rem;
  line-height: 1.1;
}

.why-us-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-us-badge-card {
  background: radial-gradient(ellipse at center, rgba(191, 191, 191, 0.05) 0%, rgba(191, 191, 191, 0.24) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(191, 191, 191, 0.45);
  border-radius: 18px;
  padding: 1.25rem 2rem;
  text-align: center;
  min-width: 170px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  align-self: flex-start;
  transition: var(--transition);
}

.why-us-badge-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.why-us-badge-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 0.2rem;
}

.why-us-badge-sub {
  font-size: 0.72rem;
  color: #8c8fa2;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 950px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: radial-gradient(ellipse at center, rgba(191, 191, 191, 0.05) 0%, rgba(191, 191, 191, 0.24) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(191, 191, 191, 0.45);
  border-radius: 18px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.035) 50%, transparent 60%);
  transform: rotate(25deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.why-card:hover::after {
  opacity: 1;
  animation: shimmerSweep 1.2s ease-in-out;
}

@keyframes shimmerSweep {
  0% { transform: translateY(-30%) rotate(25deg); }
  100% { transform: translateY(30%) rotate(25deg); }
}

.why-card:hover {
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.why-card-identity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.why-card-icon-box {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.why-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.why-card-stat {
  text-align: right;
  flex-shrink: 0;
}

.why-card-stat-main {
  font-size: 0.92rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.why-card-stat-sub {
  font-size: 0.65rem;
  color: #727488;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.why-card-desc {
  font-size: 0.9rem;
  color: #8e90a2;
  line-height: 1.55;
  margin-top: 1.25rem;
}

/* Media / Social Showcase Section */
.media-section {
  margin-top: 5.5rem;
  margin-bottom: 5.5rem;
  text-align: left;
}

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

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

.media-card {
  background: radial-gradient(ellipse at center, rgba(191, 191, 191, 0.05) 0%, rgba(191, 191, 191, 0.24) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(191, 191, 191, 0.45);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.media-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: transparent;
  transition: var(--transition);
}

.media-card.discord-card:hover::before {
  background: #5865F2;
  box-shadow: 0 0 15px #5865F2;
}

.media-card.youtube-card:hover::before {
  background: #FF0000;
  box-shadow: 0 0 15px #FF0000;
}

.media-card.tiktok-card:hover::before {
  background: #FE2C55;
  box-shadow: 0 0 15px #FE2C55;
}

.media-card:hover {
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.media-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.media-card-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.media-card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: var(--transition);
}

.media-card.discord-card .media-card-icon-box {
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.3);
  color: #5865F2;
}

.media-card.youtube-card .media-card-icon-box {
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #FF0000;
}

.media-card.tiktok-card .media-card-icon-box {
  background: rgba(254, 44, 85, 0.15);
  border: 1px solid rgba(254, 44, 85, 0.3);
  color: #FE2C55;
}

.media-card:hover .media-card-icon-box {
  transform: scale(1.08);
}

.media-card-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.4px;
}

.media-card-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a7c90;
}

.media-card-desc {
  font-size: 0.92rem;
  color: #8e90a2;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.media-card-btn {
  width: 100%;
  padding: 0.8rem 1.25rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.media-card-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.discord-preview-container {
  background: var(--discord-sidebar); border-radius: 16px; padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  position: sticky; top: 100px;
}
.discord-preview-header {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); margin-bottom: 1.25rem; font-weight: 700; display: flex;
  align-items: center; justify-content: space-between;
}
.discord-msg { display: flex; gap: 1rem; }
.discord-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: #ffffff; color: #000;
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem;
}
.discord-msg-content { flex: 1; }
.discord-author { font-weight: 700; color: #fff; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem; }
.bot-tag { background: #5865F2; font-size: 0.65rem; padding: 0.15rem 0.35rem; border-radius: 4px; text-transform: uppercase; font-weight: 800; }
.discord-embed { background: var(--discord-embed-bg); border-left: 4px solid #ffffff; border-radius: 6px; padding: 1.25rem; max-width: 520px; margin-top: 0.5rem; }
.discord-embed-title { font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 0.6rem; }
.discord-embed-description { font-size: 0.92rem; color: #dbdee1; white-space: pre-wrap; line-height: 1.5; margin-bottom: 0.75rem; }
.discord-embed-banner { width: 100%; max-height: 260px; object-fit: cover; border-radius: 8px; margin-top: 0.75rem; display: none; }
.discord-embed-thumbnail { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; float: right; margin-left: 1rem; display: none; }
.discord-embed-footer { font-size: 0.78rem; color: #949ba4; margin-top: 0.85rem; font-weight: 500; }
.discord-buttons-row { display: flex; gap: 0.6rem; margin-top: 0.85rem; flex-wrap: wrap; }
.discord-btn { padding: 0.55rem 1.1rem; border-radius: 5px; font-size: 0.88rem; font-weight: 600; color: #fff; border: none; display: inline-flex; align-items: center; gap: 0.45rem; }
.discord-btn-primary { background: #5865F2; }
.discord-btn-secondary { background: #4e5058; }
.discord-btn-success { background: #248046; }
.discord-btn-danger { background: #da373c; }

.table-responsive { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; text-align: left; }
.table th { padding: 1.1rem; background: rgba(255, 255, 255, 0.03); color: var(--text-dim); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.table td { padding: 1.1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.95rem; }
.badge { padding: 0.35rem 0.75rem; border-radius: 50px; font-size: 0.78rem; font-weight: 700; }
.badge-open { background: rgba(255, 255, 255, 0.12); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.3); }
.badge-closed { background: rgba(100, 100, 100, 0.15); color: #888888; border: 1px solid rgba(255, 255, 255, 0.1); }

/* --- BESPOKE OSSTRE HYPER-VAULT & TERMINAL SHOWCASE --- */
.hyper-vault-container {
  background: radial-gradient(ellipse at center, rgba(191, 191, 191, 0.05) 0%, rgba(191, 191, 191, 0.24) 100%);
  border: 1px solid rgba(191, 191, 191, 0.45);
  border-radius: 28px;
  padding: 2.5rem;
  margin-bottom: 4.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  text-align: left;
  transition: var(--transition);
}

.hyper-vault-container:hover {
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.hyper-vault-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

/* Vault Top HUD Header */
.vault-hud-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1.5rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.vault-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #d6d6e4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.vault-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 10px #00e676;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Controls: Duration & Currency */
.vault-controls-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vault-duration-nav {
  display: flex;
  background: rgba(16, 17, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.25rem;
  border-radius: 50px;
  gap: 0.25rem;
}

.vault-duration-btn {
  background: transparent;
  color: #a5a5b8;
  border: none;
  border-radius: 50px;
  padding: 0.45rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.vault-duration-btn:hover {
  color: #ffffff;
}

.vault-duration-btn.active {
  background: #ffffff;
  color: #000000;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.vault-currency-toggle {
  display: flex;
  background: rgba(16, 17, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.25rem;
  border-radius: 50px;
  gap: 0.2rem;
}

.vault-curr-btn {
  background: transparent;
  color: #8c8c9e;
  border: none;
  border-radius: 50px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.vault-curr-btn.active {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Team Build Shutter Toggle Button (Next to Get Access) */
.btn-team-toggle-shutter {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e5e5f0;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.btn-team-toggle-shutter:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-team-toggle-shutter.active {
  background: rgba(0, 230, 118, 0.15);
  border-color: rgba(0, 230, 118, 0.5);
  color: #00e676;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.2);
}

/* Vault Body Grid */
.vault-body-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.vault-price-headline {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.vault-main-price {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2.5px;
  line-height: 1;
}

.vault-period-tag {
  font-size: 1.2rem;
  color: #777788;
  font-weight: 600;
}

.vault-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.vault-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.vault-feature-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #d1d1db;
  font-weight: 500;
}

.vault-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 900;
}

.vault-action-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Digital Kernel Security Token Pass (Right Side) */
.vault-pass-wrapper {
  perspective: 1200px;
  display: flex;
  justify-content: center;
}

.cyber-security-pass {
  width: 350px;
  min-width: 350px;
  max-width: 350px;
  height: 380px;
  min-height: 380px;
  max-height: 380px;
  box-sizing: border-box;
  background: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Moving Laser Scan Line Effect */
.cyber-security-pass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00e676, #ffffff, #00e676, transparent);
  box-shadow: 0 0 15px #00e676;
  opacity: 0.7;
  animation: laserScan 4s infinite linear;
  pointer-events: none;
}

@keyframes laserScan {
  0% { top: -10%; }
  50% { top: 110%; }
  100% { top: -10%; }
}

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

.pass-monogram {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
}

.pass-status-led {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: #00e676;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.35);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.pass-barcode-box {
  background: #101116;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pass-barcode-lines {
  height: 22px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    #ffffff 0px,
    #ffffff 2px,
    transparent 2px,
    transparent 4px,
    #ffffff 4px,
    #ffffff 7px,
    transparent 7px,
    transparent 9px
  );
  opacity: 0.7;
}

.pass-token-id {
  font-family: monospace;
  font-size: 0.72rem;
  color: #9c9cae;
  letter-spacing: 1px;
}

.pass-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 0;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.spec-label {
  font-size: 0.65rem;
  color: #9292a4;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.spec-value {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
}

.pass-footer-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: #7b7b8e;
  font-weight: 600;
}

@media (max-width: 900px) {
  .vault-body-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hyper-vault-container {
    padding: 1.75rem;
  }
}

/* --- OSSTRE SQUAD CLAN STATION STYLES --- */
.squad-station-section {
  margin-top: 5.5rem;
  margin-bottom: 4.5rem;
  text-align: left;
}

.squad-station-dock {
  background: linear-gradient(150deg, rgba(16, 16, 22, 0.85) 0%, rgba(9, 9, 12, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 2.75rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  position: relative;
  overflow: hidden;
}

.squad-station-dock::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.5), rgba(255, 255, 255, 0.5), transparent);
}

.squad-stepper-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 800px) {
  .squad-stepper-row { grid-template-columns: 1fr; }
}

.squad-step-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.squad-step-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.squad-step-btn.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.squad-step-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: #ffffff;
}

.squad-step-count {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.squad-step-sub {
  font-size: 0.78rem;
  color: #888898;
  font-weight: 600;
}

.squad-step-btn.active .squad-step-sub {
  color: #00e676;
}

/* Main Split Grid */
.squad-content-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 950px) {
  .squad-content-split { grid-template-columns: 1fr; gap: 2rem; }
}

.squad-price-display {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.squad-total-price {
  font-size: 3.8rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1;
}

.squad-period-label {
  font-size: 1.15rem;
  color: #777788;
  font-weight: 600;
}

.squad-saving-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #00e676;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.squad-checklist-box {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.25rem;
}

.squad-check-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #d1d1db;
  font-weight: 500;
}

/* Visual Squad Network Hub & Keys Console (Right Side) */
.squad-network-console {
  width: 350px;
  min-width: 350px;
  max-width: 350px;
  height: 380px;
  min-height: 380px;
  max-height: 380px;
  box-sizing: border-box;
  background: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.squad-network-console::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00e676, #ffffff, #00e676, transparent);
  box-shadow: 0 0 15px #00e676;
  opacity: 0.7;
  animation: laserScan 4s infinite linear;
  pointer-events: none;
}

.network-console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.65rem;
}

.network-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
}

.network-live-pulse {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: #00e676;
  font-weight: 700;
}

/* Nodes Grid */
.squad-nodes-hub {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  justify-content: center;
  margin: 0.5rem 0;
}

.squad-node-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #101116;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.node-label-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
}

.node-icon-bubble {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.node-key-badge {
  font-family: monospace;
  font-size: 0.72rem;
  color: #a0a0b2;
  background: rgba(14, 15, 20, 0.55);
  padding: 0.15rem 0.45rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   AUTHENTIC 1:1 C++ IMGUI FIVE-M MENU STYLES
   ========================================================================== */
.imgui-showcase-section {
  padding: 3rem 1rem;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
}

.imgui-window-frame {
  position: relative;
  background: rgba(13, 15, 18, 0.98);
  border: 1px solid rgba(245, 245, 250, 0.25);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  min-height: 540px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

/* ImGui Left Sidebar */
.imgui-sidebar {
  width: 175px;
  min-width: 175px;
  background: transparent;
  border-right: 1px solid rgba(245, 245, 250, 0.08);
  padding: 1.25rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
  position: relative;
}

.imgui-brand-header {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.25rem 0.4rem 0.85rem 0.4rem;
  border-bottom: 1px solid rgba(150, 150, 160, 0.18);
  margin-bottom: 0.5rem;
}

.imgui-brand-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--imgui-text, #ffffff);
}

.imgui-brand-sub {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ff1493;
  letter-spacing: 1px;
}

.imgui-tab-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.imgui-tab-btn {
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #a5a5b8;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  width: 100%;
}

.imgui-tab-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.imgui-tab-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-left: 3px solid var(--imgui-accent, #ffffff);
}

.imgui-tab-btn .tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  color: inherit;
}

.imgui-tab-btn .tab-label {
  flex: 1;
}

.imgui-tab-btn .tab-arrow {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Sidebar Dropdown Subtabs Container (1:1 with menu_i.cpp lines 2043-2075) */
.imgui-subtab-sidebar-box {
  background: rgba(20, 22, 28, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0.2rem 0 0.4rem 0.35rem;
}

.imgui-subtab-btn-item {
  background: transparent;
  border: none;
  outline: none;
  color: #a0a0b2;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
}

.imgui-subtab-btn-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.imgui-subtab-btn-item.active {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* Main Area Viewport */
.imgui-main-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 2;
  position: relative;
}

.imgui-viewport-scroll {
  flex: 1;
  padding: 1.25rem 1.4rem 4.5rem 1.4rem;
  overflow-y: auto;
  max-height: 530px;
}

/* 2-Column Child Cards Grid */
.imgui-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

@media (max-width: 768px) {
  .imgui-columns-2 {
    grid-template-columns: 1fr;
  }
}

/* ImGui Child Container (matching child() / end_child() in Menu.hpp) */
.imgui-child-card {
  background: rgba(24, 25, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  overflow: visible;
  position: relative;
}

.imgui-child-header {
  background: var(--imgui-card-header, #3a3c46);
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}

.imgui-child-body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--imgui-card-body, rgba(16, 17, 22, 0.45));
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
  overflow: visible;
  position: relative;
}

/* Row Widgets */
.imgui-widget-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 22px;
}

.widget-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--imgui-text, #ffffff);
}

/* Switch Toggle (matching sw_w = 30px, sw_h = 14px in widgets.h) */
.imgui-switch-widget {
  width: 30px;
  height: 14px;
  background: rgba(30, 32, 38, 0.9);
  border: 1px solid rgba(220, 220, 230, 0.3);
  border-radius: 7px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.imgui-switch-widget.active {
  background: var(--imgui-accent, #ffffff);
  border-color: var(--imgui-accent, #ffffff);
}

.switch-knob {
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 2px;
  transition: transform 0.2s ease;
}

.imgui-switch-widget.active .switch-knob {
  transform: translateX(16px);
  background: #111111;
}

/* Slider Row */
.slider-col {
  flex-direction: column;
  align-items: stretch;
  gap: 0.3rem;
}

.slider-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-display-val {
  font-size: 0.74rem;
  font-family: monospace;
  font-weight: 700;
  color: #00e676;
}

.imgui-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  outline: none;
}

.imgui-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--imgui-accent, #ffffff);
  cursor: pointer;
}

/* Dropdown Combo System (1:1 with widgets.h begincombo()) */
.imgui-combo-row-item {
  position: relative;
}

.imgui-combo-wrapper {
  position: relative;
  min-width: 145px;
  max-width: 180px;
}

.imgui-combo-box {
  background: rgba(22, 24, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 0.32rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.imgui-combo-box:hover,
.imgui-combo-box.active {
  border-color: var(--imgui-accent, #ffffff);
  background: rgba(32, 36, 46, 0.98);
}

.combo-selected-text {
  font-size: 0.74rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.combo-arrow {
  font-size: 0.72rem;
  color: #a0a0b2;
  transition: transform 0.2s ease;
}

.combo-arrow.open {
  transform: rotate(180deg);
  color: #ffffff;
}

.imgui-combo-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 175px;
  max-height: 220px;
  overflow-y: auto;
  background: rgba(14, 16, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.9);
  z-index: 99999;
  padding: 0.3rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: comboSlideDown 0.15s ease-out;
}

.imgui-combo-dropdown-menu.dropup {
  top: auto;
  bottom: calc(100% + 4px);
  animation: comboSlideUp 0.15s ease-out;
}

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

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

.imgui-combo-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.42rem 0.65rem;
  border-radius: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #cfd0dc;
  cursor: pointer;
  transition: all 0.12s ease;
}

.imgui-combo-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.imgui-combo-option.selected {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 800;
}

.combo-option-check {
  color: #00e676;
  font-size: 0.75rem;
  font-weight: 900;
}

/* Keybind Button System (1:1 with widgets.h keybind()) */
.imgui-keybind-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #00e676;
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.15s ease;
  min-width: 60px;
  text-align: center;
}

.imgui-keybind-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.imgui-keybind-btn.listening {
  border-color: #ff1493;
  color: #ff1493;
  background: rgba(255, 20, 147, 0.18);
  box-shadow: 0 0 12px rgba(255, 20, 147, 0.5);
  animation: keybindPulse 1.2s infinite alternate;
}

@keyframes keybindPulse {
  0% { transform: scale(1); box-shadow: 0 0 4px rgba(255, 20, 147, 0.3); }
  100% { transform: scale(1.04); box-shadow: 0 0 14px rgba(255, 20, 147, 0.7); }
}

/* Neon Button (matching neon_button() in widgets.h) */
.imgui-neon-btn {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1.2px solid rgba(255, 255, 255, 0.26);
  color: #f0f0f5;
  padding: 0.42rem 0.85rem;
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.imgui-neon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Safe Exit Button (matching Safe Exit in Menu.hpp lines 3120-3189) */
.imgui-safe-exit-btn {
  width: 100%;
  background: rgba(65, 65, 72, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 2px solid #dc464b;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #f5f5fa;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
}

.imgui-safe-exit-btn:hover {
  background: rgba(85, 85, 95, 0.95);
}

.power-icon {
  width: 12px;
  height: 12px;
  border: 2px solid #e65055;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.power-icon::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 3px;
  width: 2px;
  height: 6px;
  background: #e65055;
}

/* List Widget (Teleport, Players, Vehicles) */
.imgui-list-widget {
  background: rgba(8, 8, 12, 0.85);
  border: 1px solid rgba(245, 245, 250, 0.12);
  border-radius: 6px;
  max-height: 175px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.imgui-list-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.65rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(200, 200, 210, 0.05);
  font-size: 0.74rem;
  transition: background 0.15s ease;
}

.imgui-list-row:hover {
  background: rgba(25, 26, 32, 0.6);
}

.imgui-list-row.active {
  background: rgba(34, 35, 42, 0.9);
  border-left: 2.5px solid #ffffff;
}

.row-num {
  font-family: monospace;
  color: #9090a0;
}

.row-text {
  color: #ffffff;
  font-weight: 600;
}

/* Selected Info Card */
.imgui-info-card {
  background: rgba(14, 15, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.4rem;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
}

.card-subtitle {
  font-size: 0.72rem;
  color: #bec3cd;
  margin-top: 0.2rem;
}

.card-mem {
  font-size: 0.68rem;
  font-family: monospace;
  color: #8c91a0;
  margin-top: 0.2rem;
}

.imgui-info-box {
  background: rgba(10, 12, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.info-line {
  font-size: 0.74rem;
  color: #b0b4c0;
}

/* ESP Canvas Box (EspPreview.hpp) */
.imgui-esp-canvas-box {
  width: 100%;
  min-height: 330px;
  background: radial-gradient(circle at center, rgba(30, 35, 45, 0.4) 0%, rgba(10, 12, 16, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.esp-render-player {
  width: 85px;
  height: 160px;
  position: relative;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
}

.esp-render-player.box-on {
  border-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.esp-tag-top {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  opacity: 0;
}

.esp-tag-top.show { opacity: 1; }

.esp-tag-bot {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-family: monospace;
  color: #ffffff;
  white-space: nowrap;
  opacity: 0;
}

.esp-tag-bot.show { opacity: 1; }

.esp-bar-health {
  position: absolute;
  left: -5px;
  top: 0;
  width: 2.5px;
  height: 100%;
  background: #34d399;
  border-radius: 1px;
  opacity: 0;
}

.esp-bar-health.show { opacity: 1; }

.esp-bar-armor {
  position: absolute;
  right: -5px;
  top: 0;
  width: 2.5px;
  height: 80%;
  background: #60a5fa;
  border-radius: 1px;
  opacity: 0;
}

.esp-bar-armor.show { opacity: 1; }

.esp-skel-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.esp-skel-wrapper.show { opacity: 1; }

.skel-head {
  width: 16px;
  height: 16px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  margin: 6px auto 0;
  position: relative;
}

.skel-head.dot-on::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: #ff1493;
  border-radius: 50%;
}

.skel-spine {
  width: 2px;
  height: 45px;
  background: #ffffff;
  margin: 0 auto;
}

.skel-arm-l, .skel-arm-r {
  position: absolute;
  top: 32px;
  width: 28px;
  height: 2px;
  background: #ffffff;
}

.skel-arm-l { left: 16px; transform: rotate(-25deg); }
.skel-arm-r { right: 16px; transform: rotate(25deg); }

.skel-leg-l, .skel-leg-r {
  position: absolute;
  bottom: 12px;
  width: 32px;
  height: 2px;
  background: #ffffff;
}

.skel-leg-l { left: 14px; transform: rotate(65deg); }
.skel-leg-r { right: 14px; transform: rotate(-65deg); }

/* Toast Notifications Container (Notification::Render in Menu.hpp lines 69-238) */
.imgui-toast-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 99999;
  pointer-events: none;
}

.imgui-toast {
  background: #000000;
  border: 1px solid #22c55e;
  border-radius: 8px;
  padding: 0.75rem 1rem 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  animation: toastSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.toast-fade-out {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.toast-side-bar {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 2px;
}

.toast-success { border-color: #22c55e; }
.toast-success .toast-side-bar { background: #22c55e; }
.toast-info { border-color: #ff1493; }
.toast-info .toast-side-bar { background: #ff1493; }
.toast-error { border-color: #ef4444; }
.toast-error .toast-side-bar { background: #ef4444; }

.toast-icon-bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
}

.toast-success .toast-icon-bubble { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.toast-info .toast-icon-bubble { background: rgba(255, 20, 147, 0.2); color: #ff1493; }
.toast-error .toast-icon-bubble { background: rgba(239, 68, 68, 0.2); color: #ef4444; }

.toast-msg {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fafafa;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 1px;
  animation: toastProgress 3.2s linear forwards;
}

.toast-success .toast-progress { background: #22c55e; }
.toast-info .toast-progress { background: #ff1493; }
.toast-error .toast-progress { background: #ef4444; }

@keyframes toastProgress {
  from { width: calc(100% - 16px); }
  to { width: 0%; }
}

/* ==========================================
   ENHANCED DASHBOARD DECORATION & ANIMATIONS
   ========================================== */

/* Pure Pitch Black Background */
body {
  background-color: #000000 !important;
  background-image: none !important;
}

/* Hide Orbs for Pitch Black Theme */
.dash-ambient-orb-1,
.dash-ambient-orb-2 {
  display: none !important;
}

@keyframes orbFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.15); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

@keyframes orbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -40px) scale(1.2); }
  100% { transform: translate(20px, -60px) scale(0.9); }
}

/* Category Filter Bar / Tabs */
.dash-category-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  background: radial-gradient(ellipse at center, rgba(191, 191, 191, 0.05) 0%, rgba(191, 191, 191, 0.24) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(191, 191, 191, 0.45);
  border-radius: 50px;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dash-category-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.dash-category-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.dash-category-tab.active {
  color: #000000;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
  font-weight: 800;
}

.dash-category-count {
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.18rem 0.6rem;
  border-radius: 50px;
}

.dash-category-tab.active .dash-category-count {
  background: rgba(0, 0, 0, 0.12);
  color: #000000;
}

/* Stats Overview Cards Header */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.dash-stat-card {
  background: radial-gradient(ellipse at center, rgba(191, 191, 191, 0.05) 0%, rgba(191, 191, 191, 0.24) 100%);
  border: 1px solid rgba(191, 191, 191, 0.45);
  border-radius: 24px;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.dash-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dash-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.15);
}

.dash-stat-card:hover::before {
  opacity: 1;
}

.dash-stat-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.dash-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

.dash-stat-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Glass Card Glow & Animations */
.glass-card-animated {
  animation: dashFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes dashFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Smooth Category Section Filter Transition */
.dash-category-section {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-category-section.hidden-section {
  display: none !important;
}




