/* ═══════════════════════════════════════════
   VAMPIRE HOSTING — Global Stylesheet
   Dark Red Premium Theme
═══════════════════════════════════════════ */

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

/* ─── CSS Variables ─────────────────────── */
:root {
  --blood: #8B0000;
  --blood-bright: #e73c54;
  --blood-light: #ff4d6d;
  --blood-glow: #ff2442;
  --crimson: #DC143C;
  --deep: #050103;
  --dark: #0a0305;
  --dark2: #120509;
  --dark3: #1a080d;
  --card: rgba(18, 5, 9, 0.7);
  --card2: rgba(26, 8, 13, 0.8);
  --surface: #2a1117;
  --border: rgba(220, 20, 60, 0.15);
  --border-bright: rgba(220, 20, 60, 0.4);
  --text: #fdfafb;
  --text-muted: #b8989e;
  --text-dim: #7d5b62;
  --white: #ffffff;
  --green: #10b981;
  --yellow: #f59e0b;
  --red: #ef4444;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 64px rgba(220, 20, 60, 0.15);
  --glow: 0 0 25px rgba(220, 20, 60, 0.5);
  --glow-sm: 0 0 12px rgba(220, 20, 60, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Light Mode ─────────────────────────── */
html.light {
  --blood: #DC143C;
  --blood-bright: #e73c54;
  --blood-light: #ff4d6d;
  --blood-glow: #ff2442;
  --crimson: #DC143C;
  --deep: #f8f9fa;
  --dark: #ffffff;
  --dark2: #f1f3f5;
  --dark3: #e9ecef;
  --card: rgba(255, 255, 255, 0.7);
  --card2: rgba(248, 249, 250, 0.8);
  --surface: #e9ecef;
  --border: rgba(220, 20, 60, 0.2);
  --border-bright: rgba(220, 20, 60, 0.5);
  --text: #111827;
  --text-muted: #4b5563;
  --text-dim: #9ca3af;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 64px rgba(220, 20, 60, 0.12);
  --glow: 0 0 25px rgba(220, 20, 60, 0.3);
  --glow-sm: 0 0 12px rgba(220, 20, 60, 0.2);
}

/* ─── Midnight Blue Theme (dashboard only) ─ */
[data-theme="midnight"] {
  --blood: #1a3a6b;
  --blood-bright: #2563eb;
  --blood-light: #3b82f6;
  --blood-glow: #60a5fa;
  --crimson: #2563eb;
  --deep: #0a0f1e;
  --dark: #0f1629;
  --dark2: #131d35;
  --dark3: #192340;
  --card: #131d35;
  --card2: #192340;
  --surface: #1e2a4a;
  --border: rgba(37,99,235,0.25);
  --border-bright: rgba(59,130,246,0.4);
  --text: #e8eef8;
  --text-muted: #7a9cc8;
  --text-dim: #4a6a98;
  --shadow-sm: 0 2px 8px rgba(37,99,235,0.2);
  --shadow: 0 8px 32px rgba(37,99,235,0.3);
  --shadow-lg: 0 16px 64px rgba(37,99,235,0.4);
  --glow: 0 0 20px rgba(37,99,235,0.4);
  --glow-sm: 0 0 10px rgba(37,99,235,0.3);
}

/* ─── Emerald Theme (dashboard only) ──────── */
[data-theme="emerald"] {
  --blood: #065f46;
  --blood-bright: #059669;
  --blood-light: #10b981;
  --blood-glow: #34d399;
  --crimson: #059669;
  --deep: #020f0a;
  --dark: #041a11;
  --dark2: #061f14;
  --dark3: #09291b;
  --card: #061f14;
  --card2: #08261a;
  --surface: #0d3321;
  --border: rgba(5,150,105,0.25);
  --border-bright: rgba(16,185,129,0.4);
  --text: #e8f8f2;
  --text-muted: #5fa882;
  --text-dim: #2d6a4f;
  --shadow-sm: 0 2px 8px rgba(5,150,105,0.2);
  --shadow: 0 8px 32px rgba(5,150,105,0.3);
  --shadow-lg: 0 16px 64px rgba(5,150,105,0.4);
  --glow: 0 0 20px rgba(5,150,105,0.4);
  --glow-sm: 0 0 10px rgba(5,150,105,0.3);
}

/* ─── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

@keyframes bg-pan {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--deep);
  background-image: radial-gradient(circle at 15% 50%, rgba(220, 20, 60, 0.08), transparent 30%),
                    radial-gradient(circle at 85% 30%, rgba(220, 20, 60, 0.06), transparent 30%),
                    radial-gradient(circle at 50% 100%, rgba(139, 0, 0, 0.1), transparent 40%);
  background-size: 200% 200%;
  animation: bg-pan 15s ease infinite;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--blood-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--crimson); }
img { max-width: 100%; }
ul { list-style: none; }

/* ─── Scrollbar ─────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--blood); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--crimson); }

/* ─── Background ────────────────────────── */
.bg-grid {
  background-image:
    linear-gradient(rgba(139,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,0,0,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ─── Animated Particles ────────────────── */
.particles {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--crimson);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.5;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ─── Veltrion Style Navbar ───────────────── */
.vh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.vh-nav.scrolled {
  background: rgba(9, 9, 11, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.vh-nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.vh-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.vh-brand-logo { width: 32px; height: 32px; object-fit: contain; }
.vh-brand-name { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--text); line-height: 1; display: block; }
.vh-brand-sub { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; }
.vh-nav-links { display: flex; align-items: center; gap: 2rem; }
.vh-nav-link { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: color 0.2s; position: relative; background: none; border: none; cursor: pointer; padding: 0; font-family: inherit; }
.vh-nav-link:hover, .vh-nav-link--active { color: var(--text); }
.vh-dropdown { position: relative; }
.vh-dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 5px;
  background: #111113; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  padding: 0.5rem; min-width: 220px; display: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6); z-index: 100;
}
.vh-dropdown:hover .vh-dropdown-menu { display: flex; flex-direction: column; animation: dropIn 0.2s ease; }
.vh-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; color: #a1a1aa; font-size: 0.9rem; text-decoration: none; transition: all 0.2s;
}
.vh-dropdown-item i { font-size: 1.1rem; color: var(--crimson); }
.vh-dropdown-item:hover { background: rgba(255,255,255,0.04); color: #fff; transform: translateX(2px); }
@keyframes dropIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.vh-nav-actions { display: flex; align-items: center; gap: 1rem; }
.vh-icon-btn {
  background: transparent; border: none; color: var(--text-muted); font-size: 1.25rem;
  cursor: pointer; position: relative; transition: color 0.2s; display: flex; align-items: center;
}
.vh-icon-btn:hover { color: var(--text); }
.vh-cart-badge {
  position: absolute; top: -6px; right: -8px; background: var(--crimson); color: #fff;
  font-size: 0.65rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vh-cart-badge:empty { display: none; }
.vh-btn-ghost {
  display: none; padding: 0.5rem 1rem; color: var(--text); text-decoration: none;
  font-size: 0.9rem; font-weight: 600; border-radius: 8px; transition: background 0.2s;
}
.vh-btn-ghost:hover { background: var(--surface); }
.vh-btn-solid {
  background: var(--crimson); color: #fff; border: none; font-size: 0.9rem; font-weight: 600; padding: 8px 18px; border-radius: 8px; cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.vh-btn-solid:hover { filter: brightness(1.1); }
/* Mobile Menu */
.vh-hamburger { display: block; background: none; border: none; cursor: pointer; width: 24px; height: 20px; position: relative; z-index: 1001; }
.vh-hamburger span {
  display: block; width: 100%; height: 2px; background: var(--text); position: absolute; transition: all 0.3s;
}
.vh-hamburger span:nth-child(1) { top: 0; }
.vh-hamburger span:nth-child(2) { top: 9px; }
.vh-hamburger span:nth-child(3) { top: 18px; }
.vh-hamburger.open span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.vh-hamburger.open span:nth-child(2) { opacity: 0; }
.vh-hamburger.open span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

.vh-mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark);
  z-index: 999; display: flex; flex-direction: column; padding: 80px 2rem 2rem;
  transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.vh-mobile-menu.open { transform: translateY(0); }
.vh-mobile-menu a {
  font-size: 1.25rem; font-weight: 600; color: var(--text); text-decoration: none;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.vh-mobile-section { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 1.5rem; margin-bottom: 0.5rem; }

@media(max-width:900px) {
  .vh-nav-links, .vh-nav-actions { display: none; }
  .vh-hamburger { display: flex; }
}


/* ─── Buttons ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blood), var(--crimson));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-outline:hover {
  background: rgba(139,0,0,0.15);
  border-color: var(--crimson);
  color: var(--text);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; }
.btn-danger { background: linear-gradient(135deg, #7b0000, #e74c3c); color: #fff; }
.btn-success { background: linear-gradient(135deg, #006644, #00d68f); color: #fff; }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ─── Cards ─────────────────────────────── */
.card {
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover::before { opacity: 1; }
.card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.card-featured {
  background: linear-gradient(135deg, var(--card2), rgba(139,0,0,0.1));
  border-color: var(--blood);
}
.card-featured::before { opacity: 1; }

/* ─── Pricing Cards ─────────────────────── */
.pricing-card {
  background: linear-gradient(145deg, var(--card), var(--card2));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(45deg, var(--blood-glow), var(--crimson), transparent 40%, transparent 60%, var(--blood));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: all 0.5s ease;
  z-index: -1;
}
.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--glow);
  border-color: transparent;
}
.pricing-card:hover::before {
  opacity: 1;
  animation: border-dance 3s ease infinite;
}
@keyframes border-dance {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.pricing-card.popular {
  background: linear-gradient(145deg, rgba(220,20,60,0.1), var(--card2));
}
.popular-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--blood-glow), var(--crimson));
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
  color: white; font-size: 0.7rem; font-weight: 800;
  padding: 6px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--text); margin-bottom: 0.5rem;
}
.plan-price {
  font-size: 2.5rem; font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  transition: all 0.3s ease;
}
.pricing-card:hover .plan-price {
  background: linear-gradient(135deg, var(--blood-glow), var(--crimson));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; color: var(--crimson); -webkit-text-fill-color: var(--crimson); }
.plan-period { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.plan-specs { margin: 1rem 0 1.5rem; }
.plan-spec {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(139,0,0,0.1);
  font-size: 0.9rem; color: var(--text-muted);
}
.plan-spec:last-child { border-bottom: none; }
.plan-spec-icon { color: var(--crimson); font-size: 1rem; }

/* ─── Hero ──────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  padding: 100px 2rem 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% -20%, rgba(139,0,0,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(220,20,60,0.1) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,0,0,0.2);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--crimson);
  margin-bottom: 1.5rem;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,20,60,0); }
  50% { box-shadow: 0 0 0 6px rgba(220,20,60,0.1); }
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title span {
  background: linear-gradient(135deg, var(--crimson), var(--blood-glow), #ff6b6b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--crimson);
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Sections ──────────────────────────── */
/* ─── VPS Banner ────────────────────────── */
.vps-banner {
  border-radius: var(--radius-xl);
  padding: 5rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.vps-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,3,5,0.95) 0%, rgba(10,3,5,0.6) 50%, rgba(10,3,5,0.8) 100%);
  z-index: 1;
}
.vps-banner-content {
  position: relative;
  z-index: 2;
}
.vps-banner-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,0,0,0.3); border: 1px solid var(--border-bright);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.8rem; font-weight: 700; color: var(--crimson);
  margin-bottom: 1rem;
}
.vps-banner-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.vps-banner-title span {
  background: linear-gradient(135deg, var(--blood-glow), var(--crimson));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vps-banner-desc {
  font-size: 1rem; color: var(--text-muted);
  max-width: 700px; margin: 0 auto; line-height: 1.6;
}
.section { padding: 5rem 2rem; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  background: rgba(139,0,0,0.2);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--crimson); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-title span {
  background: linear-gradient(135deg, var(--crimson), var(--blood-glow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc { font-size: 1rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ─── Grid Layouts ──────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .navbar { padding: 0 1rem; }
  .nav-links, .nav-dropdown, .nav-actions .btn-outline { display: none; }
  .hamburger { display: flex; }
  .section { padding: 3.5rem 1.25rem; }
  .hero { padding: 90px 1.25rem 50px; }
  .hero-stats { gap: 1.5rem; }
}

/* ─── Page Header ───────────────────────── */
.page-header {
  padding: 120px 2rem 60px;
  background: radial-gradient(ellipse 80% 100% at 50% -10%, rgba(139,0,0,0.3) 0%, transparent 60%);
  text-align: center;
}
.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.page-header h1 span {
  background: linear-gradient(135deg, var(--crimson), var(--blood-glow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-dim); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--crimson); }
.breadcrumb span { color: var(--text-dim); }

/* ─── Feature Cards ─────────────────────── */
.feature-card {
  background: linear-gradient(145deg, var(--card), var(--dark2));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 20, 60, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(220, 20, 60, 0.1);
}
.feature-card .feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.15), rgba(139, 0, 0, 0.05));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--blood-glow);
  transition: transform 0.4s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--crimson), var(--blood));
  color: #fff;
  box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}
.feature-card .feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.5rem;
}
.feature-card .feature-desc {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.5;
}

/* ─── Forms ─────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--blood-bright);
  box-shadow: 0 0 0 3px rgba(139,0,0,0.2);
}
.form-control::placeholder { color: var(--text-dim); }
select.form-control option { background: var(--dark); }
.input-group { display: flex; gap: 0; }
.input-group .form-control { border-radius: var(--radius) 0 0 var(--radius); }
.input-group .btn { border-radius: 0 var(--radius) var(--radius) 0; }

/* ─── Auth Pages ────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(139,0,0,0.25) 0%, transparent 60%);
}
.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%; max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  text-align: center; margin-bottom: 0.5rem;
}
.auth-sub { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1;
  height: 1px; background: var(--border);
}
.divider span { font-size: 0.8rem; color: var(--text-dim); }

/* ─── Dashboard Layout ──────────────────── */
.dash-layout {
  display: flex; min-height: 100vh; padding-top: 0;
}
.dash-sidebar {
  width: 260px;
  background: var(--dark2);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: var(--transition);
}
.sidebar-brand {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.sidebar-logo {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blood), var(--crimson));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.sidebar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--crimson));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sidebar-nav { flex: 1; padding: 1.5rem 1rem; overflow-y: auto; }
.sidebar-section-title {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-dim); padding: 0 0.5rem;
  margin-bottom: 0.5rem; margin-top: 1.25rem;
}
.sidebar-section-title:first-child { margin-top: 0; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2px;
  transition: var(--transition);
}
.sidebar-nav a:hover { color: var(--text); background: rgba(139,0,0,0.15); }
.sidebar-nav a.active { color: var(--text); background: rgba(139,0,0,0.25); border-left: 3px solid var(--crimson); }
.sidebar-nav a span.icon { font-size: 1.1rem; }
.sidebar-user {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
}
.sidebar-user-info { display: flex; align-items: center; gap: 10px; }
.sidebar-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blood), var(--crimson));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: white;
}
.sidebar-user-name { font-size: 0.875rem; font-weight: 600; }
.sidebar-user-email { font-size: 0.75rem; color: var(--text-muted); }
.dash-main {
  flex: 1;
  margin-left: 260px;
  padding: 2rem;
  min-height: 100vh;
}
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.dash-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem; font-weight: 800;
}
.dash-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-top: 2px; }
.dash-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.dash-panel-title {
  font-size: 1rem; font-weight: 700;
  color: var(--text);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1.25rem;
}
.dash-panel-title .icon { color: var(--crimson); }

/* ─── Table ─────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
table {
  width: 100%; border-collapse: collapse;
  font-size: 0.875rem;
}
th {
  background: var(--dark3);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(139,0,0,0.1);
  color: var(--text);
  vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(139,0,0,0.04); }

/* ─── Status Badges ─────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-pending { background: rgba(255,202,40,0.15); color: var(--yellow); border: 1px solid rgba(255,202,40,0.3); }
.badge-approved { background: rgba(0,214,143,0.15); color: var(--green); border: 1px solid rgba(0,214,143,0.3); }
.badge-denied { background: rgba(255,68,68,0.15); color: var(--red); border: 1px solid rgba(255,68,68,0.3); }
.badge-expired { background: rgba(255,68,68,0.15); color: var(--red); border: 1px solid rgba(255,68,68,0.3); }
.badge-active { background: rgba(0,214,143,0.15); color: var(--green); border: 1px solid rgba(0,214,143,0.3); }
.badge-inactive { background: rgba(107,74,80,0.3); color: var(--text-dim); border: 1px solid var(--border); }

/* ─── Stats Cards ───────────────────────── */
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(139,0,0,0.3), rgba(220,20,60,0.1));
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  color: var(--crimson);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Alerts / Toasts ───────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: rgba(0,214,143,0.1); border: 1px solid rgba(0,214,143,0.3); color: var(--green); }
.alert-error { background: rgba(255,68,68,0.1); border: 1px solid rgba(255,68,68,0.3); color: var(--red); }
.alert-info { background: rgba(139,0,0,0.15); border: 1px solid var(--border-bright); color: var(--text); }
.toast-container {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  min-width: 300px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { transform: translateX(100%); opacity:0; } to { transform: translateX(0); opacity:1; } }

/* ─── QR Section ────────────────────────── */
.qr-box {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.qr-img {
  border-radius: var(--radius);
  border: 4px solid var(--border-bright);
  padding: 8px;
  background: white;
  display: inline-block;
}
.qr-img img { display: block; border-radius: 4px; }

/* ─── Cart ──────────────────────────────── */
.cart-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
.cart-item-name { font-weight: 600; }
.cart-item-price { color: var(--crimson); font-weight: 700; font-size: 1.1rem; }
.cart-total {
  padding: 1.25rem;
  background: rgba(139,0,0,0.1);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-total-label { font-size: 0.9rem; color: var(--text-muted); }
.cart-total-value { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--crimson); }

/* ─── Floating Cart Button ──────────────── */
.cart-fab {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blood), var(--crimson));
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg), var(--glow);
  z-index: 500;
  transition: var(--transition);
}
.cart-fab:hover { transform: scale(1.1); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  width: 22px; height: 22px;
  background: white; color: var(--blood);
  border-radius: 50%;
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.cart-drawer {
  position: fixed; bottom: 0; right: 0;
  width: 400px; max-height: 80vh;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 499;
  transform: translateY(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}
.cart-drawer.open { transform: translateY(0); }
@media (max-width: 440px) { .cart-drawer { width: 100%; } }

/* ─── Info Page Content ─────────────────── */
.info-content {
  max-width: 900px; margin: 0 auto;
}
.info-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.info-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--crimson);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.info-section h2::before {
  content: '';
  width: 4px; height: 20px;
  background: linear-gradient(to bottom, var(--blood), var(--crimson));
  border-radius: 2px;
}
.info-section p, .info-section li {
  color: var(--text-muted); line-height: 1.8; font-size: 0.95rem;
}
.info-section ul { padding-left: 0; }
.info-section ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(139,0,0,0.1);
  display: flex; align-items: center; gap: 8px;
}
.info-section ul li::before { content: '▸'; color: var(--crimson); flex-shrink: 0; }

/* ─── Footer ────────────────────────────── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 2rem; margin-bottom: 3rem; }
.footer-brand-desc { color: var(--text-dim); font-size: 0.875rem; line-height: 1.7; margin-top: 0.75rem; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.875rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--crimson); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dash-sidebar { transform: translateX(-100%); }
  .dash-sidebar.mobile-open { transform: translateX(0); }
  .dash-main { margin-left: 0; }
}

/* ─── Modal ─────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%; max-width: 500px;
  max-height: 90vh; overflow-y: auto;
  transform: scale(0.95);
  transition: var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal-title { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 700; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; padding: 4px; }

/* ─── Animations ────────────────────────── */
.animate-up { animation: slideUp 0.6s ease both; }
.animate-up-delay { animation: slideUp 0.6s ease 0.15s both; }
.animate-fade { animation: fadeIn 0.5s ease both; }
@keyframes slideUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ─── Glowing text ──────────────────────── */
.glow-text {
  text-shadow: 0 0 20px rgba(220,20,60,0.5);
  color: var(--crimson);
}

/* ─── Divider with blood ────────────────── */
.hr-blood {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  margin: 2rem 0;
}

/* ─── Admin sidebar specific ────────────── */
.sidebar-badge {
  margin-left: auto;
  background: var(--blood);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px; border-radius: 50px;
}

/* ─── Veltrion Style Footer ───────────────── */
.vh-footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 4rem 1.5rem 2rem; margin-top: auto; }
.vh-footer-inner { max-width: 1400px; margin: 0 auto; }
.vh-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
@media(max-width:900px) { .vh-footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media(max-width:500px) { .vh-footer-grid { grid-template-columns: 1fr; } }
.vh-footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.vh-footer-brand p { color: var(--text-muted) !important; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; color: var(--text); }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.vh-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border); }
@media(max-width:600px) { .vh-footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; } }

/* ─── Page Header ───────────────────────── */
.page-header {
  padding: 140px 2rem 60px;
  text-align: center;
  background: radial-gradient(ellipse at center top, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -1px;
}
.page-header h1 span {
  background: linear-gradient(135deg, #DC143C, #ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  background: rgba(220, 20, 60, 0.05);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.breadcrumb a {
  color: var(--text);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--crimson);
}
.breadcrumb span {
  color: var(--text-dim);
}
