/* =================================================================
   YANKEPROJECT - MINECRAFT PLUGIN STORE & ADMIN DASHBOARD SYSTEM
   Theme: High-Tech Dark Gamer / Glassmorphism / Neon Cyber-Violet
==================================================================== */

:root {
  --bg-dark: #070815;
  --bg-surface: #101326;
  --bg-surface-elevated: #181c34;
  --bg-card: rgba(18, 22, 42, 0.78);
  --bg-glass: rgba(12, 15, 30, 0.72);
  
  --primary: #8b5cf6;
  --primary-hover: #7c3aed;
  --primary-glow: rgba(139, 92, 246, 0.4);
  
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.35);
  
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.35);
  
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(139, 92, 246, 0.3);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px var(--primary-glow);
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background:
    radial-gradient(900px 540px at 88% -12%, rgba(116, 75, 190, .20), transparent 65%),
    radial-gradient(700px 480px at -8% 35%, rgba(6, 182, 212, .12), transparent 65%),
    linear-gradient(180deg, #080916 0%, #070815 42%, #090a18 100%);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

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

/* Ambient Glow Orbs */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  animation: floatAmbient 18s ease-in-out infinite alternate;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6, transparent);
  top: -100px;
  right: -100px;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #06b6d4, transparent);
  top: 40%;
  left: -200px;
  animation-delay: -5s;
}

.glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #ec4899, transparent);
  bottom: -100px;
  right: 15%;
  animation-delay: -10s;
}

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

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography & Headings */
h1, h2, h3, h4, .brand-name {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  color: #ffffff;
  font-weight: 700;
}

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

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

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 21, 0.76);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(139, 92, 246, .25), rgba(6, 182, 212, .14));
  border: 1px solid rgba(196, 181, 253, .44);
  border-radius: var(--radius-md);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
  transition: transform var(--transition-fast);
}

.logo-group:hover .logo-icon {
  transform: scale(1.05) rotate(4deg);
}

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

.brand-name {
  font-size: 1.52rem;
  letter-spacing: .025em;
  line-height: 1.1;
  font-weight: 800;
}

.brand-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}
.nav-support-btn { font-family: var(--font-main); background: transparent; border: 0; cursor: pointer; }

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--primary);
}

.discord-badge-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(88, 101, 242, 0.15);
  color: #8599f5 !important;
  border: 1px solid rgba(88, 101, 242, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.discord-badge-link:hover {
  background: #5865f2;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.5);
  transform: translateY(-1px);
}

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.currency-selector {
  display: flex;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 3px;
}

.currency-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.currency-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 10px var(--primary-glow);
}

.cart-trigger-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glow);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.cart-trigger-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.cart-trigger-btn svg {
  width: 20px;
  height: 20px;
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #f43f5e;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg-dark);
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.6);
}

/* User Auth Block */
.user-auth-block {
  position: relative;
}

.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glow);
  padding: 4px 12px 4px 6px;
  border-radius: var(--radius-full);
  color: #fff;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.user-profile-btn:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.user-avatar-head {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  image-rendering: pixelated;
}

.user-profile-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.user-profile-name {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.user-role-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.role-admin { color: #f59e0b; }
.role-customer { color: #10b981; }

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  background: #0e1424;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 0, 0, 0.8);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 120;
}

.user-dropdown-menu.open {
  display: flex;
  animation: fadeIn 0.15s ease;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
  text-decoration: none;
}

.dropdown-item:hover {
  background: rgba(139, 92, 246, 0.15);
  color: #fff;
}

.dropdown-item.admin-btn {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  font-weight: 700;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.dropdown-item.admin-btn:hover {
  background: #f59e0b;
  color: #000;
}

.dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: 4px 0;
}

.dropdown-logout {
  color: #f43f5e !important;
}

.dropdown-logout:hover {
  background: rgba(244, 63, 94, 0.15) !important;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Button Component Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9333ea 0%, #4f46e5 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-glow {
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-xs {
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 6px;
}

.full-width {
  width: 100%;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 50px 0;
  text-align: center;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border-glow);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c084fc;
  margin-bottom: 24px;
}

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

.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Store Section */
.store-section {
  padding: 60px 0;
}

.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pill-btn:hover {
  background: var(--bg-surface-elevated);
  color: #fff;
}

.pill-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 16px var(--primary-glow);
}

.toolbar-right {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 450px;
  justify-content: flex-end;
}

.search-box {
  position: relative;
  flex: 1;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 36px 10px 38px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
}

.search-box input:focus {
  border-color: var(--primary);
}

.search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
}

.sort-select {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.85rem;
  outline: none;
}

/* Plugins Grid */
.plugins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.plugin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
}

.plugin-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--primary-glow);
}

.card-banner {
  height: 138px;
  position: relative;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.card-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(3, 7, 18, 0.04), rgba(3, 7, 18, 0.68));
  pointer-events: none;
}

.card-banner-name {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 76px;
  bottom: 20px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-badge {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.badge-new { background: #8b5cf6; color: #fff; }

.card-version {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.card-icon-wrapper {
  position: absolute;
  top: 52px;
  bottom: auto;
  right: 16px;
  left: auto;
  z-index: 3;
  width: 44px;
  height: 44px;
  background: var(--bg-surface-elevated);
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Checkout */
.checkout-modal { width: min(920px, calc(100vw - 32px)); max-height: min(780px, calc(100vh - 32px)); overflow-y: auto; padding: 0; }
.checkout-header { padding: 30px 34px 24px; background: radial-gradient(circle at right top, rgba(6, 182, 212, 0.2), transparent 38%), linear-gradient(135deg, #15102d, #101827); border-bottom: 1px solid var(--border-color); }
.checkout-eyebrow { color: var(--accent-cyan); font: 700 0.7rem var(--font-mono); letter-spacing: .12em; }
.checkout-header h2 { color: #fff; font-size: 1.8rem; margin: 8px 0 6px; }
.checkout-header p { color: var(--text-muted); margin: 0; font-size: .92rem; }
.checkout-form { padding: 26px 34px 24px; }
.checkout-main-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .85fr); gap: 24px; align-items: start; }
.checkout-details-panel { min-width: 0; }
.checkout-section-heading { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; }
.checkout-section-heading > span { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(139, 92, 246, .2); border: 1px solid rgba(167, 139, 250, .45); color: #c4b5fd; font: 700 .75rem var(--font-mono); }
.checkout-section-heading strong, .checkout-section-heading small { display: block; }
.checkout-section-heading strong { color: #f8fafc; font-size: .94rem; }
.checkout-section-heading small { color: var(--text-muted); font-size: .75rem; margin-top: 2px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.payment-selection-section { margin-top: 24px; }
.payment-options-grid { display: grid; gap: 10px; }
.pay-option-card { display: block; cursor: pointer; }
.pay-option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-content { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border: 1px solid var(--border-color); border-radius: 12px; background: rgba(15, 23, 42, .55); transition: .2s ease; }
.pay-option-card:hover .option-content { border-color: rgba(139, 92, 246, .65); background: rgba(139, 92, 246, .09); }
.pay-option-card input:checked + .option-content { border-color: #8b5cf6; background: rgba(139, 92, 246, .15); box-shadow: 0 0 0 3px rgba(139, 92, 246, .1); }
.pay-icon { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: rgba(255,255,255,.08); font-size: 1.1rem; }
.pay-copy { min-width: 0; flex: 1; }
.pay-title, .pay-subtitle { display: block; }
.pay-title { color: #f8fafc; font-weight: 700; font-size: .9rem; }
.pay-subtitle { color: var(--text-muted); font-size: .76rem; margin-top: 3px; }
.pay-check { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; border: 1px solid #64748b; color: transparent; font-size: .72rem; }
.pay-option-card input:checked + .option-content .pay-check { color: #fff; background: #8b5cf6; border-color: #8b5cf6; }
.pay-option-maintenance { cursor: not-allowed; }
.pay-option-maintenance .option-content { opacity: .55; filter: saturate(.5); }
.pay-option-maintenance:hover .option-content { border-color: var(--border-color); background: rgba(15, 23, 42, .55); }
.maintenance-label { padding: 4px 7px; border: 1px solid rgba(251, 191, 36, .35); border-radius: 999px; color: #fbbf24; font: 700 .62rem var(--font-mono); letter-spacing: .04em; }
.support-message-group { margin-top: 14px; }
.support-message-group label span { color: var(--text-dim); font-weight: 400; }
.support-success-modal .success-desc strong { color: #c4b5fd; font-family: var(--font-mono); }
.support-fields { display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, .8fr); gap: 12px; align-items: end; margin-top: 14px; }
.support-fields .form-group { margin: 0; }
.support-response-card { min-height: 43px; display: flex; align-items: center; gap: 9px; padding: 8px 11px; border: 1px solid rgba(6, 182, 212, .19); border-radius: 10px; background: rgba(6, 182, 212, .06); }
.support-response-card > span { font-size: 1.05rem; }
.support-response-card strong, .support-response-card small { display: block; }
.support-response-card strong { color: #e0f2fe; font-size: .75rem; }
.support-response-card small { color: #7dd3fc; font-size: .68rem; line-height: 1.25; }
.support-summary-status { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; color: #a7f3d0; font-size: .72rem; font-weight: 600; }
.support-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52, 211, 153, .12); }
.support-progress { display: grid; gap: 13px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-color); }
.support-progress-item { position: relative; display: flex; gap: 9px; color: var(--text-dim); }
.support-progress-item:not(:last-child)::after { content: ''; position: absolute; top: 22px; left: 9px; height: 16px; border-left: 1px dashed rgba(148, 163, 184, .38); }
.support-progress-item > span { width: 19px; height: 19px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; border: 1px solid rgba(148, 163, 184, .35); font: 700 .65rem var(--font-mono); }
.support-progress-item.active { color: #c4b5fd; }
.support-progress-item.active > span { border-color: #8b5cf6; background: #8b5cf6; color: #fff; box-shadow: 0 0 11px rgba(139,92,246,.45); }
.support-progress-item p { margin: -2px 0 0; }
.support-progress-item strong, .support-progress-item small { display: block; }
.support-progress-item strong { font-size: .73rem; color: #dbe4f2; }
.support-progress-item small { margin-top: 2px; font-size: .67rem; line-height: 1.35; }
.support-ticket-meta { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.support-ticket-meta span { padding: 5px 9px; border: 1px solid var(--border-color); border-radius: 999px; color: var(--text-muted); font-size: .72rem; }
.support-ticket-meta b { color: #cbd5e1; margin-right: 4px; }
.support-center-modal { width: min(850px, calc(100vw - 32px)); }
.support-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.support-category-card { display: flex; align-items: center; gap: 10px; min-height: 74px; padding: 11px 12px; cursor: pointer; border: 1px solid var(--border-color); border-radius: 12px; background: rgba(15, 23, 42, .46); transition: .2s ease; }
.support-category-card input { position: absolute; opacity: 0; pointer-events: none; }
.support-category-card:hover { border-color: rgba(139,92,246,.55); background: rgba(139,92,246,.08); }
.support-category-card input:checked ~ * { position: relative; z-index: 1; }
.support-category-card:has(input:checked) { border-color: #8b5cf6; background: rgba(139,92,246,.15); box-shadow: 0 0 0 3px rgba(139,92,246,.10); }
.support-category-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; background: rgba(255,255,255,.08); font-size: 1rem; }
.support-category-card > span:nth-of-type(2) { flex: 1; min-width: 0; }
.support-category-card strong, .support-category-card small { display: block; }
.support-category-card strong { color: #f8fafc; font-size: .82rem; }
.support-category-card small { margin-top: 2px; color: var(--text-muted); font-size: .68rem; line-height: 1.25; }
.support-category-card i { width: 18px; height: 18px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #64748b; border-radius: 50%; color: transparent; font-style: normal; font-size: .67rem; }
.support-category-card:has(input:checked) i { color: #fff; border-color: #8b5cf6; background: #8b5cf6; }
.support-form-heading { margin-top: 26px; }
.general-support-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.general-support-fields .form-group { margin: 0; }
.general-support-message { grid-column: 1 / -1; }
.support-form-footer { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--border-color); color: var(--text-muted); font-size: .73rem; }
.payment-note { display: flex; gap: 8px; align-items: flex-start; margin-top: 12px; padding: 10px 12px; border-radius: 9px; background: rgba(6, 182, 212, .08); color: #a5f3fc; font-size: .77rem; }
.payment-note p { margin: 0; line-height: 1.45; }
.checkout-order-summary { padding: 18px; border: 1px solid var(--border-color); border-radius: 14px; background: linear-gradient(145deg, rgba(30, 41, 59, .68), rgba(15, 23, 42, .86)); }
.summary-header { color: #f8fafc; font-weight: 700; padding-bottom: 13px; border-bottom: 1px solid var(--border-color); }
.checkout-items-summary { display: grid; gap: 10px; padding: 14px 0; }
.summary-line { display: flex; gap: 10px; justify-content: space-between; color: var(--text-muted); font-size: .8rem; }
.summary-line strong { color: #f8fafc; white-space: nowrap; }
.checkout-grand-total { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--border-color); color: #e2e8f0; font-weight: 700; }
.checkout-grand-total .total-val { color: #c4b5fd; font-size: 1.25rem; }
.checkout-assurances { display: grid; gap: 7px; color: #86efac; font-size: .73rem; }
.checkout-submit-btn { margin-top: 24px; min-height: 48px; }
.checkout-legal { margin: 10px 0 0; color: #64748b; text-align: center; font-size: .7rem; }

.card-icon-wrapper svg {
  width: 22px;
  height: 22px;
  color: #c084fc;
}

.card-body {
  padding: 24px 20px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plugin-name {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: #fff;
}

.plugin-tagline {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.plugin-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.platform-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.platform-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 4px;
}

.card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-container {
  display: flex;
  flex-direction: column;
}

.price-title {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #10b981;
}

.card-actions {
  display: flex;
  gap: 8px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-surface);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-lg);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* Custom Order Request Section */
.custom-order-section {
  padding: 60px 0;
}

.order-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4, #10b981);
}

.order-card-content {
  background: var(--bg-surface);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.order-title {
  font-size: 2.2rem;
  margin: 10px 0 14px 0;
}

.order-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.order-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-form {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  padding: 28px;
  border-radius: var(--radius-md);
}

.form-title {
  font-size: 1.3rem;
  margin-bottom: 18px;
  text-align: center;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  padding: 10px 14px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
}

/* FAQ Accordion */
.faq-section {
  padding: 60px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 1.3rem;
  color: var(--primary);
}

.faq-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
  color: var(--text-muted);
}

.faq-item.active .faq-body {
  padding-bottom: 18px;
  max-height: 200px;
}

/* Footer */
.site-footer {
  background: #040609;
  border-top: 1px solid var(--border-color);
  padding: 50px 0 20px 0;
  margin-top: 60px;
}

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

.footer-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 320px;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.payment-methods-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-badge {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #0d121f;
  border-left: 1px solid var(--border-color);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-drawer-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.cart-item-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.cart-item-info {
  flex: 1;
}

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

.cart-item-ver {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #10b981;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 1.2rem;
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-surface);
}

.cart-summary-row, .cart-discount-row, .cart-final-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.cart-coupon-row {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.cart-coupon-row input {
  flex: 1;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: #fff;
}

.cart-final-total-row {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
  margin-top: 10px;
}

.final-price {
  color: #10b981;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

/* Modals General */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #0f1525;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 35px var(--primary-glow);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
}

.plugin-modal-header {
  padding: 32px 28px 20px 28px;
}

.modal-badge-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

.modal-badge {
  background: #8b5cf6;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

.modal-version {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #cbd5e1;
}

.modal-plugin-title {
  font-size: 2rem;
  margin-bottom: 4px;
}

.modal-plugin-tagline {
  color: var(--accent-cyan);
}

.modal-body-content {
  padding: 24px 28px;
}

.modal-full-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: var(--radius-md);
}

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

.spec-label {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.spec-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.modal-footer {
  padding: 18px 28px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-price-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #10b981;
}

/* Auth Modal */
.auth-modal {
  max-width: 440px;
  padding: 32px;
}

.auth-header {
  text-align: center;
  margin-bottom: 18px;
}

.auth-icon-badge {
  font-size: 2.4rem;
  margin-bottom: 4px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 4px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.auth-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.auth-tab-btn.active {
  background: var(--primary);
  color: #fff;
}

.admin-demo-tip {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: #fbbf24;
  margin-bottom: 16px;
}

.form-alert {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid #f43f5e;
  color: #fecdd3;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

/* =================================================================
   DEDICATED CUSTOMER DASHBOARD (dashboard.html) STYLES
==================================================================== */
.dashboard-page-body {
  background: #080c16;
  min-height: 100vh;
}

.dash-welcome-banner {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.12) 100%);
  border: 1px solid var(--border-glow);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
  gap: 20px;
}

.dash-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dash-big-avatar {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-glow);
  image-rendering: pixelated;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.dash-banner-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

.dash-banner-stats {
  display: flex;
  gap: 14px;
}

.dash-stat-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.dash-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.dash-stat-txt {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.dash-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.dash-licenses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dash-product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-fast);
}

.dash-product-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.card-frozen {
  border-color: rgba(244, 63, 94, 0.5) !important;
  opacity: 0.8;
}

.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dash-plugin-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.5px;
}

.dash-card-title {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 2px;
}

.dash-key-container {
  background: #060911;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}

.dash-key-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
}

.dash-key-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.dash-key-row code {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: #38bdf8;
  font-weight: 700;
}

.dash-ip-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-ip-container label {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 500;
}

.dash-ip-row {
  display: flex;
  gap: 8px;
}

.dash-ip-row input {
  flex: 1;
  background: #060911;
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.dash-ip-hint {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.dash-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-date-text {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.dash-empty-card {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-surface);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-lg);
}

/* =================================================================
   DEDICATED ADMIN PAGE (admin.html) STYLES
==================================================================== */
.admin-page-body {
  background: #060911;
  min-height: 100vh;
}

.admin-auth-guard {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.guard-card {
  background: #0e1424;
  border: 1px solid var(--border-glow);
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px var(--primary-glow);
}

.guard-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

.guard-back-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.guard-back-link:hover {
  color: #fff;
  text-decoration: underline;
}

.admin-full-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.adm-page-sidebar {
  background: #090e1a;
  border-right: 1px solid var(--border-color);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
}

.adm-sidebar-brand {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.adm-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.adm-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.adm-menu-item:hover {
  background: var(--bg-surface);
  color: #fff;
}

.adm-menu-item.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 16px var(--primary-glow);
}

.adm-sidebar-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.adm-user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.adm-user-texts {
  display: flex;
  flex-direction: column;
}

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

.adm-user-role {
  font-size: 0.7rem;
  color: #f59e0b;
  font-weight: 800;
}

.adm-page-main {
  padding: 36px 40px;
  overflow-y: auto;
  max-height: 100vh;
}

.adm-content-tab {
  display: none;
}

.adm-content-tab.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

.adm-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 14px;
}

.adm-topbar h2 {
  font-size: 1.8rem;
}

.adm-subtext {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.adm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.adm-stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.adm-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.glow-green { background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); }
.glow-purple { background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.3); }
.glow-cyan { background: rgba(6, 182, 212, 0.15); border: 1px solid rgba(6, 182, 212, 0.3); }
.glow-amber { background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.3); }

.adm-stat-info {
  display: flex;
  flex-direction: column;
}

.adm-stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
}

.adm-stat-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.adm-card-block {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}

.adm-card-block h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.adm-search-bar {
  margin-bottom: 18px;
}

.adm-search-bar input {
  width: 100%;
  max-width: 400px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  outline: none;
}

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

.adm-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.adm-form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.adm-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.adm-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.adm-inline-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr auto;
  gap: 12px;
  align-items: center;
}

.adm-inline-form .form-group {
  margin-bottom: 0;
}

/* Tables */
.adm-table-wrapper {
  overflow-x: auto;
}

.adm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.adm-table th {
  background: #090e1a;
  padding: 12px 16px;
  text-align: left;
  color: var(--text-dim);
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}

.adm-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
}

.adm-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.adm-table code {
  background: rgba(0, 0, 0, 0.4);
  color: #38bdf8;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.lic-status-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.status-active {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid #10b981;
}

.status-frozen {
  background: rgba(244, 63, 94, 0.15);
  color: #f43f5e;
  border: 1px solid #f43f5e;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .admin-full-wrapper { grid-template-columns: 1fr; }
  .adm-page-sidebar { height: auto; position: static; }
  .adm-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .adm-form-grid { grid-template-columns: 1fr 1fr; }
  .dash-licenses-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .adm-stats-grid { grid-template-columns: 1fr; }
  .adm-form-grid { grid-template-columns: 1fr; }
  .adm-inline-form { grid-template-columns: 1fr; }
  .adm-page-main { padding: 20px; }
  .plugins-grid { grid-template-columns: 1fr; }
  .dash-welcome-banner { flex-direction: column; align-items: flex-start; }
  .checkout-modal { width: min(100vw - 20px, 560px); }
  .checkout-header, .checkout-form { padding-left: 20px; padding-right: 20px; }
  .checkout-main-grid, .checkout-grid { grid-template-columns: 1fr; }
  .support-fields { grid-template-columns: 1fr; }
  .support-category-grid, .general-support-fields { grid-template-columns: 1fr; }
  .general-support-message { grid-column: auto; }
  .support-form-footer { align-items: stretch; flex-direction: column; }
  .checkout-order-summary { order: -1; }
}

/* =================================================================
   PRODUCT IMAGE & ENHANCED CARD STYLES
==================================================================== */
.card-banner {
  transition: transform 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.plugin-card:hover .card-banner {
  filter: brightness(1.05);
}

.modal-full-desc {
  line-height: 1.7;
  color: #cbd5e1;
  font-size: 0.95rem;
  white-space: pre-line;
}

.adm-image-section input[type="file"] {
  cursor: pointer;
}

.adm-image-section input[type="file"]::-webkit-file-upload-button {
  background: var(--bg-card);
  color: var(--primary-light);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 8px;
  transition: all 0.2s ease;
}

.adm-image-section input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--primary);
  color: #fff;
}

/* =================================================================
   PREMIUM STOREFRONT THEME
==================================================================== */
.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #6d45d3);
  border-color: rgba(216, 180, 254, .54);
  box-shadow: 0 12px 24px rgba(91, 55, 184, .25), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9d71f7, #7853dc);
  box-shadow: 0 15px 32px rgba(103, 62, 212, .40), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.hero-section {
  min-height: 590px;
  padding: 112px 0 72px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .48;
  background-image: linear-gradient(rgba(167, 139, 250, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(167, 139, 250, .08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-section::after {
  content: '';
  position: absolute;
  width: min(78vw, 980px);
  height: 240px;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  z-index: -1;
  background: radial-gradient(ellipse, rgba(124, 58, 237, .22), transparent 66%);
  filter: blur(16px);
}

.hero-badge, .section-badge {
  border-color: rgba(103, 232, 249, .26);
  background: rgba(8, 47, 73, .36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.hero-title {
  max-width: 1030px;
  font-size: clamp(3.2rem, 6.2vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.036em;
  text-wrap: balance;
}

.hero-subtitle { max-width: 620px; font-size: 1.08rem; color: #a9b4cb; }
.hero-cta-group .btn { min-height: 50px; padding-left: 22px; padding-right: 22px; }
.store-section, .custom-order-section, .faq-section { padding: 88px 0; }
.section-header { margin-bottom: 42px; }
.section-title { font-size: clamp(2.2rem, 4vw, 3.1rem); letter-spacing: -.025em; }

.store-toolbar {
  padding: 13px;
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 18px;
  background: rgba(15, 18, 37, .56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.pill-btn { background: rgba(30, 35, 62, .62); border-color: transparent; }
.pill-btn.active { background: linear-gradient(135deg, #8b5cf6, #7347da); box-shadow: 0 7px 14px rgba(91, 55, 184, .26); }
.search-box input, .sort-select { background: rgba(7, 9, 24, .55); border-color: rgba(148, 163, 184, .16); }
.plugins-grid { gap: 22px; }

.plugin-card {
  border-color: rgba(148, 163, 184, .14);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(30, 35, 61, .82), rgba(13, 16, 32, .94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 14px 34px rgba(0,0,0,.16);
}

.plugin-card:hover { border-color: rgba(196, 181, 253, .55); box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 22px 44px rgba(0,0,0,.32), 0 0 0 1px rgba(139, 92, 246, .12); }
.card-banner { height: 150px; }
.card-banner-name { font-family: var(--font-heading); font-size: clamp(1.3rem, 2.3vw, 1.75rem); letter-spacing: .01em; }
.card-body { padding: 25px 21px 21px; }
.plugin-name { font-size: 1.42rem; letter-spacing: .01em; }
.platform-chip { background: rgba(6, 182, 212, .08); border-color: rgba(6, 182, 212, .17); }

.order-card-wrapper { padding: 1px; border-radius: 24px; background: linear-gradient(120deg, rgba(139,92,246,.85), rgba(6,182,212,.55), rgba(16,185,129,.65)); box-shadow: 0 25px 70px rgba(0,0,0,.25); }
.order-card-content { border-radius: 23px; background: linear-gradient(135deg, rgba(19,23,45,.96), rgba(10,13,29,.98)); padding: 52px; }
.order-form { background: rgba(6, 9, 23, .58); border-color: rgba(148, 163, 184, .15); box-shadow: inset 0 1px 0 rgba(255,255,255,.035); }
.faq-item { background: linear-gradient(100deg, rgba(22, 27, 50, .8), rgba(14, 17, 36, .84)); border-color: rgba(148, 163, 184, .14); border-radius: 14px; }
.faq-item:hover { border-color: rgba(139,92,246,.34); }
.site-footer { margin-top: 84px; padding-top: 62px; background: linear-gradient(180deg, #080a18, #05060e); }

@media (max-width: 768px) {
  .hero-section { min-height: auto; padding: 86px 0 58px; }
  .hero-title { font-size: clamp(2.75rem, 13vw, 4.1rem); }
  .store-section, .custom-order-section, .faq-section { padding: 58px 0; }
  .order-card-content { padding: 28px 20px; }
  .store-toolbar { padding: 10px; }
}

/* Clean community-store visual system, inspired by established game-server storefronts. */
:root { --bg-dark:#0b0f15; --bg-surface:#141b25; --bg-surface-elevated:#1a2330; --bg-card:#151e29; --bg-glass:#141b25; --primary:#3fa8e8; --primary-hover:#2b94d3; --primary-glow:rgba(63,168,232,.18); --accent-cyan:#61c5fb; --border-color:rgba(255,255,255,.09); --border-glow:rgba(97,197,251,.27); --radius-sm:7px; --radius-md:10px; --radius-lg:14px; }
body { background:#0b0f15; }
#particleCanvas, .ambient-glow { display:none; }
.container { max-width:1180px; }
.site-header { background:#111821; border-bottom-color:rgba(255,255,255,.07); backdrop-filter:none; }
.header-inner { height:70px; }
.logo-icon { width:38px; height:38px; border-radius:8px; background:#1c2837; border-color:rgba(97,197,251,.35); box-shadow:none; }
.brand-name { font-size:1.32rem; letter-spacing:.02em; }
.nav-links { gap:20px; }
.nav-link { font-size:.88rem; color:#a9b6c5; }
.nav-link.active::after { height:2px; background:#4bb5ef; box-shadow:none; }
.discord-badge-link { padding:6px 11px; background:rgba(88,101,242,.16); box-shadow:none; }
.currency-selector, .cart-trigger-btn, .user-profile-btn { background:#1a2330; border-color:rgba(255,255,255,.1); box-shadow:none; }
.btn { border-radius:7px; font-weight:700; }
.btn-primary, .btn-primary:hover { background:#3fa8e8; border-color:#61c5fb; box-shadow:none; }
.btn-primary:hover { background:#58b7ee; }
.btn-secondary { background:#202b38; border-color:#344352; }
.btn-glow { box-shadow:none; }
.hero-section { min-height:410px; padding:88px 0 70px; background:linear-gradient(90deg,rgba(8,12,18,.92) 0%,rgba(8,12,18,.66) 58%,rgba(8,12,18,.38)),url('images/minecraft_skyblock_island_1788104553894.jpg') center/cover no-repeat; }
.hero-section::before, .hero-section::after { display:none; }
.hero-container { align-items:flex-start; text-align:left; }
.hero-badge { margin-bottom:15px; padding:5px 10px; color:#8fd3f7; background:rgba(20,39,54,.84); border-color:rgba(97,197,251,.24); box-shadow:none; }
.hero-title { max-width:700px; font-size:clamp(2.55rem,4.8vw,4.1rem); line-height:1.04; letter-spacing:-.025em; }
.hero-subtitle { max-width:580px; color:#c1ccd8; font-size:1rem; margin-bottom:26px; }
.hero-cta-group { justify-content:flex-start; margin-bottom:0; gap:10px; }
.hero-cta-group .btn { min-height:44px; }
.gradient-text { background:none; -webkit-background-clip:initial; -webkit-text-fill-color:#67c8f9; color:#67c8f9; }
.store-section, .custom-order-section, .faq-section { padding:62px 0; }
.section-header { margin-bottom:30px; }
.section-title { font-size:clamp(2rem,3.2vw,2.55rem); letter-spacing:-.015em; }
.section-badge { padding:4px 10px; background:rgba(63,168,232,.09); border-color:rgba(63,168,232,.18); color:#67c8f9; }
.store-toolbar { padding:11px; border-radius:10px; background:#141b25; box-shadow:none; }
.pill-btn { border:1px solid transparent; border-radius:6px; background:#1b2633; }
.pill-btn.active { background:#3fa8e8; box-shadow:none; }
.search-box input, .sort-select { border-radius:7px; background:#0f151e; }
.plugins-grid { gap:18px; }
.plugin-card { border-radius:10px; border-color:rgba(255,255,255,.09); background:#151e29; box-shadow:0 3px 10px rgba(0,0,0,.18); }
.plugin-card:hover { transform:translateY(-3px); border-color:rgba(97,197,251,.42); box-shadow:0 9px 20px rgba(0,0,0,.25); }
.card-banner { height:135px; }
.card-banner-name { font-size:1.45rem; }
.card-body { padding:20px; }
.plugin-name { font-size:1.24rem; }
.plugin-tagline { color:#72c8f4; }
.platform-chip { border-radius:5px; background:#1b2a38; border-color:#29465a; color:#a9d9f0; }
.order-card-wrapper { border-radius:12px; padding:1px; background:#263e53; box-shadow:none; }
.order-card-content { border-radius:11px; padding:38px; background:#151e29; }
.order-form, .checkout-order-summary { border-radius:9px; background:#101720; box-shadow:none; }
.faq-item { border-radius:8px; background:#151e29; box-shadow:none; }
.faq-header { padding:15px 18px; }
.site-footer { margin-top:58px; padding-top:46px; background:#080b10; }
@media (max-width:768px) { .hero-section { min-height:440px; background-position:62% center; } .hero-container { align-items:center; text-align:center; } .hero-cta-group { justify-content:center; } .nav-links { gap:12px; } .nav-support-btn { display:none; } }

/* Community hub: a familiar game-server portal layout. */
.community-hub-section { padding:42px 0 18px; background:#0f151d; border-top:1px solid rgba(255,255,255,.05); border-bottom:1px solid rgba(255,255,255,.06); }
.community-hub-grid { display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:26px; align-items:start; }
.hub-section-heading { display:flex; align-items:end; justify-content:space-between; margin-bottom:15px; }
.hub-kicker { display:block; margin-bottom:2px; color:#62c4f5; font:700 .68rem var(--font-mono); letter-spacing:.1em; }
.hub-section-heading h2 { font-size:1.55rem; letter-spacing:0; }
.hub-link, .news-card a, .news-support-link { color:#72c9f3; font-size:.79rem; font-weight:700; text-decoration:none; }
.hub-link span, .news-card a span, .news-support-link span { margin-left:3px; transition:transform .16s ease; display:inline-block; }
.hub-link:hover span, .news-card a:hover span, .news-support-link:hover span { transform:translateX(3px); }
.news-card { display:flex; gap:16px; padding:18px 19px; background:#151e29; border:1px solid rgba(255,255,255,.08); border-radius:8px; margin-bottom:10px; }
.news-card:hover { border-color:rgba(97,197,251,.28); }
.featured-news-card { border-left:3px solid #3fa8e8; }
.news-card-date { width:42px; flex:0 0 auto; padding-top:1px; text-align:center; border-right:1px solid rgba(255,255,255,.09); }
.news-card-date span { display:block; color:#f8fbff; font:700 1.35rem/1 var(--font-heading); }
.news-card-date small { color:#8090a1; font:700 .61rem var(--font-mono); letter-spacing:.07em; }
.news-card-content { min-width:0; }
.news-category { color:#62c4f5; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.news-card h3 { margin:2px 0 5px; font-size:1.08rem; letter-spacing:0; }
.news-card p { margin:0 0 9px; color:#9caaba; font-size:.82rem; line-height:1.5; }
.news-support-link { padding:0; border:0; background:transparent; cursor:pointer; font-family:var(--font-main); }
.community-sidebar { display:grid; gap:12px; }
.hub-panel { overflow:hidden; border:1px solid rgba(255,255,255,.08); border-radius:8px; background:#151e29; }
.hub-panel-title { display:flex; align-items:center; justify-content:space-between; padding:13px 14px; border-bottom:1px solid rgba(255,255,255,.07); }
.hub-panel-title h3 { font-size:.95rem; letter-spacing:0; }
.hub-panel-icon { color:#6ac9f5; font-size:.92rem; }
.featured-plugin-row { display:flex; align-items:center; gap:9px; padding:11px 13px; color:inherit; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.055); }
.featured-plugin-row:last-child { border-bottom:0; }
.featured-plugin-row:hover { background:#1a2633; }
.featured-plugin-mark { width:30px; height:30px; display:grid; place-items:center; flex:0 0 auto; border-radius:6px; color:#fff; font:800 .68rem var(--font-mono); }
.featured-plugin-mark.purple { background:#7253c9; }.featured-plugin-mark.blue { background:#3189bb; }.featured-plugin-mark.gold { background:#bd8630; }
.featured-plugin-row > span:nth-child(2) { min-width:0; flex:1; }.featured-plugin-row strong, .featured-plugin-row small { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.featured-plugin-row strong { color:#dfe8f0; font-size:.74rem; }.featured-plugin-row small { margin-top:1px; color:#8494a5; font-size:.65rem; }.featured-plugin-row b { color:#82d1f4; font-size:.71rem; }
.community-panel { padding-bottom:14px; }.community-panel p { margin:13px 14px; color:#94a4b5; font-size:.77rem; line-height:1.5; }.hub-discord-btn { display:block; margin:0 14px; padding:8px; border-radius:6px; background:#5865f2; color:#fff; text-decoration:none; text-align:center; font-size:.76rem; font-weight:700; }
@media (max-width:860px) { .community-hub-grid { grid-template-columns:1fr; }.community-sidebar { grid-template-columns:1fr 1fr; }.community-panel { padding-bottom:14px; } }
@media (max-width:560px) { .community-hub-section { padding:30px 0 10px; }.community-sidebar { grid-template-columns:1fr; }.hub-section-heading { align-items:center; }.news-card { padding:15px; }.news-card-date { width:36px; } }

/* Full-page Minecraft backdrop replaces the old particle effect. */
html { background:#070b10; }
body {
  background-color:#090d13;
  background-image:
    linear-gradient(180deg, rgba(7, 11, 16, .84) 0%, rgba(7, 11, 16, .90) 42%, rgba(7, 11, 16, .94) 100%),
    url('images/minecraft_skyblock_island_1788104553894.jpg');
  background-size:cover;
  background-position:center top;
  background-attachment:fixed;
}
#particleCanvas, .ambient-glow { display:none !important; }
.community-hub-section { background:rgba(12, 18, 25, .80); backdrop-filter:blur(3px); }
.store-section, .custom-order-section, .faq-section { position:relative; }
.store-section::before, .custom-order-section::before, .faq-section::before { content:''; position:absolute; inset:0; z-index:0; background:rgba(8, 12, 18, .44); pointer-events:none; }
.store-section > .container, .custom-order-section > .container, .faq-section > .container { z-index:1; }
@media (max-width:768px) { body { background-attachment:scroll; background-position:58% top; } }

/* Dedicated support-center page */
.support-page-body { min-height:100vh; }
.support-portal { min-height:calc(100vh - 70px); padding:66px 0 80px; }
.support-page-hero { max-width:700px; margin:0 auto 36px; text-align:center; }
.support-page-kicker { display:inline-block; margin-bottom:8px; color:#7fd1f8; font:700 .69rem var(--font-mono); letter-spacing:.11em; }
.support-page-hero h1 { font-size:clamp(2.35rem,4.5vw,3.5rem); letter-spacing:-.025em; }
.support-page-hero p { max-width:570px; margin:10px auto 0; color:#bac7d4; font-size:.95rem; }
.support-page-grid { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:20px; align-items:start; }
.support-request-panel, .support-info-card, .support-discord-card { border:1px solid rgba(255,255,255,.1); border-radius:10px; background:rgba(17,24,33,.93); box-shadow:0 10px 28px rgba(0,0,0,.2); }
.support-request-panel { padding:25px; }
.support-page-heading { display:flex; align-items:center; gap:10px; margin-bottom:15px; }
.support-page-heading > span { width:25px; height:25px; display:grid; place-items:center; flex:0 0 auto; border-radius:50%; background:#3fa8e8; color:#fff; font:700 .7rem var(--font-mono); }
.support-page-heading h2 { font-size:1.08rem; letter-spacing:0; }.support-page-heading p { margin:1px 0 0; color:#8394a6; font-size:.73rem; }
.support-page-categories { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px; }
.support-page-categories label { display:flex; align-items:center; gap:10px; min-height:68px; padding:10px; border:1px solid rgba(255,255,255,.09); border-radius:8px; background:#121a24; cursor:pointer; transition:.16s ease; }
.support-page-categories label:hover { border-color:rgba(97,197,251,.42); background:#16222e; }.support-page-categories input { position:absolute; opacity:0; }
.support-page-categories label:has(input:checked) { border-color:#3fa8e8; background:rgba(63,168,232,.13); box-shadow:0 0 0 2px rgba(63,168,232,.1); }
.support-page-category-icon { width:32px; height:32px; display:grid; place-items:center; flex:0 0 auto; border-radius:7px; background:#203040; font-size:.95rem; }.support-page-categories label > span:nth-of-type(2) { min-width:0; flex:1; }.support-page-categories strong,.support-page-categories small { display:block; }.support-page-categories strong { color:#e8eff6; font-size:.78rem; }.support-page-categories small { margin-top:2px; color:#8495a6; font-size:.65rem; line-height:1.25; }
.support-page-categories i { width:17px; height:17px; display:grid; place-items:center; border:1px solid #526272; border-radius:50%; color:transparent; font-style:normal; font-size:.62rem; }.support-page-categories label:has(input:checked) i { background:#3fa8e8; border-color:#3fa8e8; color:#fff; }
.detail-heading { margin-top:27px; }.support-page-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:13px; }.support-page-form-grid .form-group { margin:0; }.support-page-message { grid-column:1 / -1; }
.support-page-form-grid input,.support-page-form-grid textarea,.support-page-form-grid select { background:#0d131b; border-color:#2a3948; }.support-page-submit { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-top:20px; padding-top:16px; border-top:1px solid rgba(255,255,255,.08); }.support-page-submit p { max-width:460px; margin:0; color:#8fa0b0; font-size:.72rem; line-height:1.45; }
.support-page-aside { display:grid; gap:14px; }.support-info-card { padding:20px; }.support-info-icon { display:grid; place-items:center; width:35px; height:35px; margin-bottom:13px; border-radius:8px; background:rgba(63,168,232,.14); color:#73cef7; font-size:1.1rem; }.support-info-card h3,.support-discord-card h3 { font-size:1.05rem; letter-spacing:0; }.support-info-card ol { display:grid; gap:15px; margin:18px 0 0; padding:0; list-style:none; counter-reset:support; }.support-info-card li { position:relative; padding-left:28px; counter-increment:support; }.support-info-card li::before { content:counter(support); position:absolute; top:0; left:0; width:18px; height:18px; display:grid; place-items:center; border:1px solid #3f6177; border-radius:50%; color:#89d5fa; font:700 .62rem var(--font-mono); }.support-info-card b,.support-info-card span { display:block; }.support-info-card b { color:#d9e5ee; font-size:.76rem; }.support-info-card span { margin-top:2px; color:#8596a7; font-size:.68rem; line-height:1.35; }
.support-discord-card { padding:19px; background:linear-gradient(145deg,#192442,#141b2b); }.support-discord-card > span { color:#a9b8ff; font:700 .66rem var(--font-mono); text-transform:uppercase; letter-spacing:.08em; }.support-discord-card h3 { margin:6px 0; }.support-discord-card p { margin:0 0 15px; color:#a5b1c1; font-size:.74rem; line-height:1.45; }.support-discord-card a { display:block; padding:9px; border-radius:6px; background:#5865f2; color:#fff; text-align:center; text-decoration:none; font-size:.76rem; font-weight:700; }
.support-page-success { position:fixed; inset:0; z-index:300; display:grid; place-items:center; padding:20px; background:rgba(3,6,10,.76); backdrop-filter:blur(5px); }.support-page-success[hidden] { display:none; }.support-page-success > div { width:min(440px,100%); padding:32px; border:1px solid rgba(97,197,251,.28); border-radius:10px; background:#141d28; box-shadow:0 20px 55px rgba(0,0,0,.46); text-align:center; }.support-page-success > div > span { width:45px; height:45px; display:grid; place-items:center; margin:0 auto 12px; border-radius:50%; background:#24a66c; color:#fff; font-weight:800; }.support-page-success h2 { font-size:1.35rem; letter-spacing:0; }.support-page-success p { margin:8px 0 20px; color:#aab8c7; font-size:.82rem; line-height:1.5; }.support-page-success strong { color:#89d7fb; font-family:var(--font-mono); }.support-page-success .btn { margin:4px; }
@media (max-width:850px) { .support-page-grid { grid-template-columns:1fr; }.support-page-aside { grid-template-columns:1fr 1fr; }.support-page-nav { display:none; } }
@media (max-width:600px) { .support-portal { padding:38px 0 55px; }.support-request-panel { padding:17px; }.support-page-categories,.support-page-form-grid,.support-page-aside { grid-template-columns:1fr; }.support-page-message { grid-column:auto; }.support-page-submit { align-items:stretch; flex-direction:column; }.support-page-submit .btn { width:100%; }.support-page-hero { text-align:left; }.support-page-hero p { margin-left:0; }.support-page-success > div { padding:25px 18px; } }

/* Admin support overview */
.adm-card-heading-row { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:15px; }.adm-card-heading-row h3 { margin:0; }.adm-card-heading-row p { margin:3px 0 0; color:var(--text-dim); font-size:.77rem; }.support-overview-legend { display:flex; align-items:center; gap:6px; color:var(--text-muted); font-size:.72rem; }.support-overview-legend i { width:8px; height:8px; border-radius:50%; background:#f59e0b; box-shadow:0 0 8px rgba(245,158,11,.45); }.support-priority-badge { display:inline-block; padding:4px 7px; border-radius:999px; font-size:.66rem; font-weight:800; }.support-priority-badge.high { color:#fef3c7; background:rgba(245,158,11,.18); border:1px solid rgba(245,158,11,.38); }.support-priority-badge.normal { color:#bfdbfe; background:rgba(59,130,246,.14); border:1px solid rgba(59,130,246,.32); }.support-tickets-table td { vertical-align:top; }.support-tickets-table code { font-size:.7rem; }.support-tickets-table small { color:var(--text-dim); }.support-ticket-message { max-width:300px; margin:3px 0; color:#cbd5e1; font-size:.74rem; line-height:1.35; }.support-ticket-items { display:block; color:#7dd3fc !important; }.support-empty-row { padding:24px !important; color:var(--text-dim); text-align:center; }
@media (max-width:650px) { .adm-card-heading-row { align-items:flex-start; flex-direction:column; }.support-overview-legend { display:none; } }
