:root {
  /* Dark & Luxurious Lavender Palette */
  --bg-dark: #08070c;
  --bg-surface: #0e0c15;
  --bg-card: rgba(18, 15, 26, 0.72);
  --bg-card-hover: rgba(26, 21, 38, 0.88);
  --bg-input: rgba(255, 255, 255, 0.035);
  
  --border-subtle: rgba(216, 180, 254, 0.07);
  --border-card: rgba(216, 180, 254, 0.13);
  --border-card-hover: rgba(216, 180, 254, 0.32);
  
  /* Accent Hues: Muted Lavender & Deep Velvet Violet */
  --color-lavender: #d8b4fe;
  --color-lavender-light: #f3e8ff;
  --color-purple: #9333ea;
  --color-purple-subtle: rgba(147, 51, 234, 0.12);
  --color-success: #34d399;
  
  /* Text Shades */
  --text-main: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Typography */
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-title: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Geometry & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(147, 51, 234, 0.08);
  --shadow-glow: 0 0 30px rgba(216, 180, 254, 0.18);
  
  --transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  letter-spacing: -0.01em;
}

/* Scroll-lock classes when Drawers, Gatekeeper or Modals are active */
html.drawer-open,
html.gate-open,
html.modal-open {
  overflow: hidden !important;
  height: 100% !important;
  max-height: 100vh !important;
  overscroll-behavior: none !important;
  scroll-behavior: auto !important;
}

body.drawer-open,
body.gate-open,
body.modal-open {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 100vh !important;
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

main {
  flex: 1;
}

.page-container,
.section-container {
  width: 95%;
  max-width: 1600px;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

/* Ambient Floating Glow Orbs (Wide Immersive Atmosphere) */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  will-change: transform;
  transform: translateZ(0);
  contain: strict;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.45) 0%, rgba(219, 39, 119, 0.25) 40%, transparent 70%);
  top: -150px;
  right: -100px;
}

.orb-2 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, rgba(88, 28, 135, 0.3) 50%, transparent 70%);
  bottom: 0px;
  left: -200px;
  opacity: 0.35;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0); }
  100% { transform: translate(45px, 60px); }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text-main);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 10%, #e9d5ff 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lavender-text {
  color: var(--color-lavender) !important;
}

.green-text {
  color: var(--color-success) !important;
}

/* Navbar - Floating Capsule Pill Style (Fixed & Smooth Scroll Follower) */
.navbar {
  position: fixed !important;
  top: 1.2rem;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 0 1.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: top, transform;
}

/* Scrolled state: naturally glides closer to top and gets sleeker, richer glassmorphism */
.navbar.scrolled {
  top: 0.75rem;
}

.nav-container {
  pointer-events: auto;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.7rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  background: linear-gradient(90deg, rgba(26, 12, 38, 0.92) 0%, rgba(15, 9, 24, 0.96) 50%, rgba(24, 11, 35, 0.92) 100%);
  border: 1px solid rgba(216, 180, 254, 0.22);
  border-radius: 9999px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 14px 40px -8px rgba(0, 0, 0, 0.75), 0 0 25px rgba(168, 85, 247, 0.14), inset 0 1px 1px rgba(255, 255, 255, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: padding, background, box-shadow;
}

.navbar.scrolled .nav-container {
  padding: 0.52rem 1.45rem;
  background: linear-gradient(90deg, rgba(20, 10, 30, 0.95) 0%, rgba(12, 7, 20, 0.98) 50%, rgba(18, 9, 28, 0.95) 100%);
  border-color: rgba(216, 180, 254, 0.32);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 18px 45px -8px rgba(0, 0, 0, 0.88), 0 0 32px rgba(168, 85, 247, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.16);
}

/* Page content spacing for fixed navbar */
.navbar + main,
.navbar ~ main {
  padding-top: 5.6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, rgba(20, 10, 30, 0.9) 100%);
  border: 1px solid rgba(216, 180, 254, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.25);
  padding: 6px;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.brand:hover .brand-icon {
  border-color: rgba(216, 180, 254, 0.5);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.45);
  transform: scale(1.04);
}

.brand-icon img,
.brand-flower-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

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

.brand-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-name .highlight {
  color: var(--color-lavender);
  font-weight: 500;
  font-size: 0.96rem;
  margin-left: 0.2rem;
}

.brand-sub {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  flex-shrink: 1;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(226, 232, 240, 0.78);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: 9999px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  white-space: nowrap;
  border: 1px solid transparent;
}

.nav-link i,
.nav-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
  color: rgba(216, 180, 254, 0.7);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(216, 180, 254, 0.18);
  transform: translateY(-1px);
}

.nav-link:hover i,
.nav-link:hover svg {
  color: var(--color-lavender);
  transform: scale(1.1);
}

.nav-link.active {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.28) 0%, rgba(126, 34, 206, 0.4) 100%);
  border: 1px solid rgba(216, 180, 254, 0.35);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.nav-link.active i,
.nav-link.active svg {
  color: #d8b4fe;
}

.nav-link.active::after {
  display: none;
}

.nav-link-vip {
  display: none !important;
  color: #fef08a !important;
  background: rgba(250, 204, 21, 0.08) !important;
  border: 1px solid rgba(250, 204, 21, 0.3) !important;
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.35);
}

body.has-buyer-role .nav-link-vip {
  display: inline-flex !important;
}

.nav-link-vip i,
.nav-link-vip svg {
  color: #facc15 !important;
}

.nav-link-vip:hover {
  background: rgba(250, 204, 21, 0.16) !important;
  border-color: rgba(250, 204, 21, 0.55) !important;
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.3);
}

.nav-link-vip.active {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.28), rgba(202, 138, 4, 0.38)) !important;
  border-color: rgba(250, 204, 21, 0.65) !important;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.4) !important;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  white-space: nowrap !important;
}

.nav-actions * {
  white-space: nowrap !important;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-success);
  flex-shrink: 0;
  white-space: nowrap !important;
}

.status-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #c084fc 0%, #9333ea 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d8b4fe 0%, #a855f7 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(147, 51, 234, 0.45);
}

.nav-actions .btn {
  padding: 0.38rem 0.82rem !important;
  font-size: 0.78rem !important;
  border-radius: var(--radius-full) !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  gap: 0.4rem !important;
  height: auto;
  line-height: 1.2;
}

.nav-actions svg,
.nav-actions i {
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0 !important;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(216, 180, 254, 0.3);
  transform: translateY(-2px);
  color: #fff;
}

.btn-discord {
  background: #5865F2;
  color: #fff;
  box-shadow: 0 4px 18px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
  background: #6b77f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(88, 101, 242, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-card);
  color: var(--color-lavender);
  width: 100%;
}

.btn-outline:hover {
  background: var(--color-purple-subtle);
  border-color: var(--color-lavender);
  color: #fff;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 0.98rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* =========================================
   GLOBAL OFFICIAL NOTICES TOP BAR
   ========================================= */
.global-notices-top-hub {
  width: 95%;
  max-width: 1600px;
  margin: 3.5rem auto 0 !important;
  padding: 0 1.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

.global-notice-card {
  background: linear-gradient(90deg, rgba(28, 14, 40, 0.9), rgba(16, 10, 24, 0.95)) !important;
  border: 1px solid rgba(216, 180, 254, 0.25) !important;
  border-radius: 16px !important;
  padding: 0.9rem 1.4rem !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55), 0 0 20px rgba(168, 85, 247, 0.1) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

/* =========================================
   WIDESCREEN HERO SECTION (Enlarged & Bold)
   ========================================= */
.hero-split-section {
  max-width: 1600px;
  width: 95%;
  margin: 3.5rem auto 7.5rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 1080px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 180, 254, 0.28);
  border-radius: 9999px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
  color: #fff;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #f43f5e;
  border-radius: 50%;
  box-shadow: 0 0 12px #f43f5e;
  flex-shrink: 0;
}

.hero-title {
  font-size: 5.2rem;
  line-height: 1.04;
  font-weight: 800;
  margin-bottom: 1.6rem;
  letter-spacing: -0.04em;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

.hero-desc {
  font-size: 1.35rem;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.75;
  margin-bottom: 2.8rem;
  max-width: 720px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-hero-shop {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 50%, #9333ea 100%);
  color: #fff !important;
  padding: 1.15rem 2.6rem;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(225, 29, 72, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-hero-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(225, 29, 72, 0.65);
}

.btn-hero-discord {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(216, 180, 254, 0.28);
  color: #fff !important;
  padding: 1.15rem 2.6rem;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-hero-discord:hover {
  background: rgba(88, 101, 242, 0.25);
  border-color: #5865F2;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.hero-feature-pills {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-feature-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pill-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 180, 254, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f43f5e;
  flex-shrink: 0;
}

.pill-icon-box svg,
.pill-icon-box i {
  width: 22px;
  height: 22px;
}

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

.pill-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.pill-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.25;
}

/* =========================================
   GIANT GLOWING STANDALONE FLOWER LOGO
   ========================================= */
.hero-logo-only-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.hero-logo-spotlight-halo {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.5) 0%, rgba(236, 72, 153, 0.3) 45%, transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  animation: haloPulse 6s ease-in-out infinite alternate;
}

@keyframes haloPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

.hero-standalone-flower-logo {
  max-width: 460px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(168, 85, 247, 0.7)) drop-shadow(0 0 100px rgba(236, 72, 153, 0.45));
  animation: floatLogo 5s ease-in-out infinite alternate;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.hero-standalone-flower-logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 80px rgba(216, 180, 254, 0.9)) drop-shadow(0 0 120px rgba(244, 63, 94, 0.6));
}

@keyframes floatLogo {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1.5deg); }
}

.hero-explore-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 5rem;
  color: rgba(226, 232, 240, 0.55);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: floatExplore 3s ease-in-out infinite alternate;
}

@keyframes floatExplore {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}
  border-radius: 50%;
  pointer-events: none;
  filter: blur(25px);
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.flower-hero-logo-frame {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0.6rem auto 1.4rem;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(76, 0, 125, 0.4), rgba(14, 0, 28, 0.8));
  border: 1px solid rgba(216, 180, 254, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(168, 85, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: var(--transition);
}

.flower-hero-logo-frame:hover {
  transform: scale(1.04) rotate(2deg);
  border-color: rgba(216, 180, 254, 0.55);
  box-shadow: 0 20px 45px rgba(147, 51, 234, 0.4), inset 0 0 35px rgba(168, 85, 247, 0.4);
}

.flower-hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(216, 180, 254, 0.45));
}

.flower-hero-logo-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.flower-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(147, 51, 234, 0.18);
  border: 1px solid rgba(216, 180, 254, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-lavender-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.flower-brand-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 30%, #d8b4fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flower-brand-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.45;
}

/* Standalone Hero Flower Logo */
.hero-logo-only-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5rem;
}

.hero-standalone-flower-logo {
  max-width: 340px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 45px rgba(147, 51, 234, 0.55));
  animation: floatLogo 5s ease-in-out infinite alternate;
  transition: var(--transition);
  cursor: pointer;
}

.hero-standalone-flower-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 65px rgba(216, 180, 254, 0.75));
}

@keyframes floatLogo {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(1.5deg); }
}

.radar-target {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.target-1 {
  top: 35%;
  left: 62%;
}

.target-2 {
  bottom: 25%;
  left: 28%;
}

.target-ping {
  width: 8px;
  height: 8px;
  background: var(--color-lavender);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-lavender);
  display: block;
}

.target-tag {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  color: var(--color-lavender-light);
  background: rgba(18, 15, 26, 0.85);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  border: 1px solid rgba(216, 180, 254, 0.2);
}

.radar-overlay-text {
  position: absolute;
  bottom: 0.6rem;
  left: 0.8rem;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: rgba(216, 180, 254, 0.5);
}

/* Telemetry Grid */
.hud-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.hud-stat-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

.hud-stat-label {
  display: block;
  font-size: 0.68rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.hud-stat-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.hud-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.8rem;
}

.hud-footer-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hud-footer-item i {
  width: 14px;
  height: 14px;
  color: var(--color-success);
}

/* =========================================
   MEDIA SHOWCASE & IMAGES
   ========================================= */
.media-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #000;
}

.showcase-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-frame:hover .showcase-img {
  transform: scale(1.02);
}

.media-overlay-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(8, 7, 12, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(216, 180, 254, 0.25);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--color-lavender-light);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-lavender);
  box-shadow: 0 0 8px var(--color-lavender);
  animation: pulse 1.6s infinite;
}

/* =========================================
   BENTO GRID ARCHITECTURE SECTION
   ========================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

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

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-premium);
}

.bento-hero {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.14) 0%, rgba(18, 15, 26, 0.88) 100%);
  border-color: rgba(216, 180, 254, 0.35);
}

.bento-wide {
  grid-column: span 2;
}

.bento-media-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.bento-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bento-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bento-img-wrap:hover .bento-thumb {
  transform: scale(1.03);
}

.bento-tag {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--color-lavender);
  font-weight: 600;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.bento-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: #fff;
  font-weight: 700;
}

.bento-card p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.bento-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.bento-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.bento-feature-list li svg,
.bento-feature-list li i {
  width: 15px;
  height: 15px;
  color: #34d399;
  flex-shrink: 0;
  margin-top: 2px;
}

.bento-card-footer {
  margin-top: auto;
  display: flex;
  gap: 0.6rem;
}

/* Card Icons */
.card-icon {
  width: 46px;
  height: 46px;
  background: var(--color-purple-subtle);
  border: 1px solid rgba(216, 180, 254, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--color-lavender);
}

.card-icon.accent {
  color: #fff;
  background: linear-gradient(135deg, #a855f7, #6b21a8);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.feature-list li i {
  width: 16px;
  height: 16px;
  color: var(--color-lavender);
}

/* CTA Banner Card */
.cta-banner-card {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(18, 15, 26, 0.95) 100%);
  border: 1px solid rgba(216, 180, 254, 0.3);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  box-shadow: var(--shadow-premium);
}

.cta-banner-content h2 {
  font-size: 2.2rem;
  margin: 0.6rem 0 0.6rem;
}

.cta-banner-content p {
  color: var(--text-body);
  font-size: 1.05rem;
}

/* =========================================
   COMPACT 2-COLUMN BALANCED STORE GRID (Pricing Page)
   Product 1  Product 2
   Product 3  Product 4
   ========================================= */
.store-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.store-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.store-tab-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-main);
  border-color: rgba(216, 180, 254, 0.3);
}

.store-tab-btn.active {
  background: rgba(147, 51, 234, 0.18);
  border-color: rgba(216, 180, 254, 0.5);
  color: #fff;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.25);
}

/* Compact 2-Column Store Grid */
.grid-2col-store {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .grid-2col-store {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
}

/* Sleek Compact Store Product Card */
.store-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.store-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-premium);
}

.store-card.featured-border {
  border-color: rgba(216, 180, 254, 0.45);
  background: linear-gradient(180deg, rgba(147, 51, 234, 0.09) 0%, rgba(18, 15, 26, 0.95) 100%);
}

/* Media / Thumbnail (140px for beautiful GIF banners) */
.store-card-media {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #090710;
  border-bottom: 1px solid var(--border-subtle);
}

.store-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.store-card:hover .store-img {
  transform: scale(1.05);
}

.store-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(8, 7, 12, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(216, 180, 254, 0.25);
  color: var(--color-lavender-light);
  z-index: 2;
}

.store-badge.featured {
  background: linear-gradient(135deg, #d8b4fe, #a855f7);
  color: #08070c;
  border: none;
  box-shadow: 0 2px 8px rgba(147, 51, 234, 0.4);
}

.store-status-pill {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(8, 7, 12, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(52, 211, 153, 0.3);
  z-index: 2;
}

.store-status-pill i {
  width: 11px;
  height: 11px;
}

.green-text {
  color: var(--color-success);
}

/* Compact Card Body */
.store-card-body {
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.store-card-title-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.store-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.store-card-tag {
  font-size: 0.68rem;
  color: var(--color-lavender);
  font-family: var(--font-mono);
}

.store-card-desc {
  color: var(--text-body);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0;
}

/* Compact Duration Row */
.store-duration-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.duration-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-weight: 600;
}

.store-pills {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.duration-btn {
  padding: 0.22rem 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--text-body);
  font-size: 0.68rem;
  font-family: var(--font-main);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.duration-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(216, 180, 254, 0.3);
  color: #fff;
}

.duration-btn.active {
  background: rgba(147, 51, 234, 0.28);
  border-color: var(--color-lavender);
  color: #fff;
  box-shadow: 0 0 8px rgba(216, 180, 254, 0.25);
}

.duration-btn.vip-pill {
  border-color: rgba(216, 180, 254, 0.35);
  color: var(--color-lavender);
}

/* Compact Card Footer */
.store-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.store-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-val {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.price-period {
  font-size: 0.68rem;
  color: var(--text-dim);
}

.discord-buy-btn {
  padding: 0.45rem 0.95rem;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  gap: 0.4rem;
}

.discord-buy-btn i {
  width: 14px;
  height: 14px;
}

/* Compact Discord Support Banner */
.discord-support-banner {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.12) 0%, rgba(147, 51, 234, 0.1) 100%);
  border: 1px solid rgba(88, 101, 242, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem;
  max-width: 880px;
  margin: 2.5rem auto 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-premium);
}

.discord-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.discord-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid rgba(88, 101, 242, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  flex-shrink: 0;
}

.discord-banner-icon i {
  width: 22px;
  height: 22px;
}

.discord-banner-text {
  flex: 1;
  min-width: 220px;
}

.discord-banner-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.discord-banner-text p {
  font-size: 0.84rem;
  color: var(--text-body);
  margin: 0;
}

.discord-banner-text code {
  background: rgba(0, 0, 0, 0.45);
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
  color: var(--color-lavender);
  font-family: var(--font-mono);
  border: 1px solid rgba(216, 180, 254, 0.2);
  font-size: 0.78rem;
}

/* Sections General */
.section-container {
  max-width: 1280px;
  margin: 0 auto 6.5rem;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-size: 0.82rem;
  color: var(--color-lavender);
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: var(--color-purple-subtle);
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.section-desc {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.page-banner {
  text-align: center;
  padding: 5rem 2rem 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.page-tag {
  font-size: 0.82rem;
  color: var(--color-lavender);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--color-purple-subtle);
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: var(--radius-full);
}

.page-title {
  font-size: 2.75rem;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #fff;
}

.page-desc {
  color: var(--text-body);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Feature Tabs */
.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.tab-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-main);
  border-color: rgba(216, 180, 254, 0.25);
}

.tab-btn.active {
  background: rgba(147, 51, 234, 0.25);
  border-color: rgba(216, 180, 254, 0.65);
  color: #fff;
  box-shadow: 0 4px 25px rgba(147, 51, 234, 0.4), 0 0 15px rgba(192, 132, 252, 0.3);
}

#features-section,
#feature-tabs-bar,
.feature-tabs,
.tab-pane {
  scroll-margin-top: 95px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-subtle);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-premium);
}

/* Simulator */
.simulator-wrapper {
  background: #0d0b14;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  box-shadow: var(--shadow-premium);
}

.sim-controls {
  padding: 2.2rem;
  background: rgba(14, 12, 20, 0.9);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sim-ctrl-group {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.switch-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text-body);
  user-select: none;
  font-weight: 500;
}

.switch-container input {
  display: none;
}

.slider {
  position: relative;
  width: 42px;
  height: 22px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: var(--transition);
}

.slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.switch-container input:checked + .slider {
  background-color: var(--color-lavender);
}

.switch-container input:checked + .slider::before {
  background-color: #08070c;
  transform: translateX(20px);
}

.sim-stats {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.8rem;
}

.sim-stat-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
}

.sim-stat-row strong {
  color: var(--text-main);
  font-weight: 600;
}

.sim-screen {
  position: relative;
  background: #06050a;
  min-height: 480px;
  height: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(216, 180, 254, 0.1);
  cursor: crosshair;
}

#espCanvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.watermark {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 0.78rem;
  color: rgba(216, 180, 254, 0.4);
  font-weight: 500;
  pointer-events: none;
}

/* Status Cards */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}

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

.status-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.8rem 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.status-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 180, 254, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(147, 51, 234, 0.22);
}

.status-card:hover .status-card-cta-hint {
  color: #fff !important;
  transform: translateX(4px);
}

.status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: nowrap;
}

.status-title-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
  flex: 1;
}

.status-thumb-img-wrap {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(216, 180, 254, 0.35);
  background: #090710;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-thumb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-top h4 {
  font-size: 1.22rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.01em;
  margin: 0;
}

.sub-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
  white-space: nowrap;
}

.badge.safe, .badge.warning, .badge.danger {
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge.safe {
  background: rgba(52, 211, 153, 0.16);
  border: 1px solid rgba(52, 211, 153, 0.45);
  color: #34d399;
  box-shadow: 0 0 15px rgba(52, 211, 153, 0.2);
}

.badge.warning {
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fbbf24;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.badge.danger {
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #f87171;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.badge.safe {
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #34d399;
}

.badge.warning {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.badge.danger {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.status-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.86rem;
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  white-space: nowrap;
}

.status-row strong {
  color: var(--text-body);
  font-weight: 600;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(14px);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--color-lavender);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background: rgba(0, 0, 0, 0.15);
}

.faq-answer p {
  padding: 0 1.8rem 1.4rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.75;
}

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

/* FAQ Helpdesk Support Card */
.faq-helpdesk-card {
  background: linear-gradient(135deg, rgba(26, 18, 42, 0.7), rgba(15, 11, 25, 0.85));
  border: 1px solid rgba(216, 180, 254, 0.22);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2.4rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 30px rgba(147, 51, 234, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.faq-helpdesk-header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.faq-helpdesk-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.25), rgba(168, 85, 247, 0.15));
  border: 1px solid rgba(216, 180, 254, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lavender);
  flex-shrink: 0;
  box-shadow: 0 0 25px rgba(147, 51, 234, 0.25);
}

.faq-helpdesk-icon svg, .faq-helpdesk-icon i {
  width: 28px;
  height: 28px;
}

.faq-helpdesk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .faq-helpdesk-card {
    padding: 1.6rem 1.2rem;
  }
  .faq-helpdesk-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .faq-helpdesk-actions {
    flex-direction: column;
  }
  .faq-helpdesk-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 4, 8, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #120f1c;
  border: 1px solid rgba(216, 180, 254, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(147, 51, 234, 0.15);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 480px;
  padding: 2.4rem;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.2rem;
}

.modal-header h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 0.4rem;
}

.modal-price {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-lavender);
}

.form-group {
  margin-bottom: 1.25rem;
}

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

.form-group input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--color-lavender);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(216, 180, 254, 0.2);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
}

.pay-option input {
  display: none;
}

.pay-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
}

.pay-option input:checked + .pay-card {
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(216, 180, 254, 0.4);
  color: #fff;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  pointer-events: none;
}

.toast {
  background: rgba(18, 15, 26, 0.85);
  border: 1px solid rgba(216, 180, 254, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(147, 51, 234, 0.1);
  animation: slideIn 0.35s ease-out, fadeOut 0.5s ease-in 4.5s forwards;
  pointer-events: auto;
}

@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.95); }
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--color-purple-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lavender);
}

.toast-body {
  font-size: 0.84rem;
}

.toast-body strong {
  color: #fff;
  display: block;
  font-weight: 600;
}

.toast-body span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  background: #060509;
  padding: 4rem 2rem 3rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

.footer-nav {
  display: flex;
  gap: 1.8rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--color-lavender);
}

/* =========================================
   RESELLER & VENDOR PANEL STYLES
   ========================================= */
.reseller-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.reseller-perk-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
  position: relative;
  display: flex;
  flex-direction: column;
}

.reseller-perk-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-premium);
}

.perk-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-purple-subtle);
  border: 1px solid rgba(216, 180, 254, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lavender);
  margin-bottom: 1.1rem;
}

.perk-icon-wrap i {
  width: 22px;
  height: 22px;
}

.reseller-perk-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.reseller-perk-card p {
  color: var(--text-body);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

/* Reseller Tiers Grid */
.reseller-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-subtle);
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-premium);
}

.tier-card.featured-tier {
  background: linear-gradient(180deg, rgba(147, 51, 234, 0.12) 0%, rgba(18, 15, 26, 0.95) 100%);
  border-color: rgba(216, 180, 254, 0.45);
  box-shadow: var(--shadow-glow);
}

.tier-badge {
  align-self: flex-start;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  margin-bottom: 0.9rem;
}

.tier-badge.featured {
  background: linear-gradient(135deg, #d8b4fe, #a855f7);
  color: #08070c;
  border: none;
  box-shadow: 0 2px 10px rgba(147, 51, 234, 0.4);
}

.tier-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.tier-price {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.tier-price span {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 400;
  font-family: var(--font-main);
}

.tier-margin {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--color-lavender);
  background: var(--color-purple-subtle);
  border: 1px solid rgba(216, 180, 254, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.4rem;
}

.tier-margin strong {
  color: #fff;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-body);
}

.tier-features li i {
  width: 15px;
  height: 15px;
  color: var(--color-lavender);
  flex-shrink: 0;
}

.tier-btn {
  width: 100%;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.88rem;
}

.footer-copy {
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-hero, .bento-wide {
    grid-column: span 1;
  }
  .bento-media-split {
    grid-template-columns: 1fr;
  }
  .compact-product-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .compact-action-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-left: none;
    border-top: 1px solid var(--border-subtle);
    padding-left: 0;
    padding-top: 1rem;
    width: 100%;
  }
  .compact-price-box {
    align-items: flex-start;
  }
  .buy-product-btn {
    width: auto;
  }
}

@media (max-width: 1100px) {
  .status-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .nav-links {
    display: none;
  }
  .nav-container {
    padding: 0.55rem 1rem;
    gap: 0.5rem;
  }
  .brand-sub {
    display: none;
  }
}

/* =========================================
   LIVE VISUAL IN-PLACE EDITOR TOOLBAR (Bottom-Left)
   ========================================= */
.vortex-edit-toolbar {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  background: rgba(14, 11, 22, 0.95);
  border: 1px solid rgba(216, 180, 254, 0.45);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(147, 51, 234, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999990;
  font-family: var(--font-main);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.edit-toolbar-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-lavender-light);
  padding-right: 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.edit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: var(--transition);
}

.edit-dot.active {
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
}

.btn-edit-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 180, 254, 0.25);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-edit-toggle:hover {
  background: rgba(147, 51, 234, 0.25);
  border-color: var(--color-lavender);
}

.btn-edit-toggle.editing {
  background: linear-gradient(135deg, #9333ea, #7e22ce);
  border-color: var(--color-lavender);
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.5);
}

.btn-edit-save {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  background: linear-gradient(135deg, #10b981, #059669);
  border: 1px solid #34d399;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
  transition: var(--transition);
}

.btn-edit-save:hover {
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

/* Highlight Editable Elements during Edit Mode */
body.vortex-edit-mode [data-editable="true"],
body.vortex-edit-mode [contenteditable="true"] {
  outline: 1px dashed rgba(216, 180, 254, 0.6) !important;
  outline-offset: 2px;
  background: rgba(147, 51, 234, 0.1) !important;
  border-radius: 4px;
  cursor: text !important;
  pointer-events: auto !important;
  transition: outline 0.15s, background 0.15s;
  user-select: text !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #d8b4fe !important;
}

body.vortex-edit-mode [contenteditable="true"]:focus,
body.vortex-edit-mode [data-editable="true"]:focus {
  outline: 2px solid #d8b4fe !important;
  background: rgba(147, 51, 234, 0.22) !important;
  box-shadow: 0 0 16px rgba(216, 180, 254, 0.4) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Ensure gradient text is 100% visible and bright white when editing */
body.vortex-edit-mode .gradient-text,
body.vortex-edit-mode [contenteditable="true"] .gradient-text,
body.vortex-edit-mode [contenteditable="true"] * {
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}

/* Prevent nested dashed box clutter */
body.vortex-edit-mode [contenteditable="true"] [contenteditable="true"] {
  outline: none !important;
  background: transparent !important;
}

body.vortex-edit-mode .store-tab-btn,
body.vortex-edit-mode .tab-btn {
  cursor: text !important;
}

/* Image Click to Replace Indicator */
body.vortex-edit-mode img {
  outline: 2px dashed #a855f7 !important;
  cursor: pointer !important;
  filter: brightness(0.9);
}

body.vortex-edit-mode img:hover {
  filter: brightness(1.1);
  outline: 2px solid #d8b4fe !important;
}

/* ==========================================================================
   11. 1:1 Live Support Chat Floating Widget & Admin Panel Styles (Bottom-Right)
   ========================================================================== */

/* Floating Chat Trigger Button (Bottom Right) */
.vortex-chat-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999995;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  background: linear-gradient(135deg, #9333ea 0%, #7928ca 50%, #581c87 100%);
  border: 1.5px solid rgba(216, 180, 254, 0.5);
  border-radius: var(--radius-full);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.5), 0 0 25px rgba(216, 180, 254, 0.35);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  user-select: none;
}

.vortex-chat-trigger:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(147, 51, 234, 0.7), 0 0 35px rgba(216, 180, 254, 0.5);
  border-color: #fff;
}

.vortex-chat-trigger .chat-trigger-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vortex-chat-trigger .chat-trigger-icon i,
.vortex-chat-trigger .chat-trigger-icon svg {
  width: 20px;
  height: 20px;
}

.chat-unread-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg-dark);
  animation: pulseBadge 1.5s infinite;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); box-shadow: 0 0 10px rgba(239, 68, 68, 0.7); }
  100% { transform: scale(1); }
}

/* 1:1 Live Chat Window Modal */
.vortex-chat-modal {
  position: fixed;
  bottom: 86px;
  right: 26px;
  width: 380px;
  max-width: calc(100vw - 36px);
  height: 540px;
  max-height: calc(100vh - 110px);
  background: rgba(12, 10, 18, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(216, 180, 254, 0.22);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 35px rgba(147, 51, 234, 0.2);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vortex-chat-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.vortex-chat-header {
  padding: 1rem 1.2rem;
  background: rgba(22, 18, 34, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.vortex-chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.vortex-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9333ea, #581c87);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(216, 180, 254, 0.3);
}

.vortex-chat-header-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.15rem;
}

.vortex-chat-status-sub {
  font-size: 0.72rem;
  color: var(--color-lavender);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
}

.vortex-chat-status-sub .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  transition: var(--transition);
}

.vortex-chat-status-sub .pulse-dot.closed {
  background: #f43f5e !important;
  box-shadow: 0 0 8px rgba(244, 63, 94, 0.7) !important;
  animation: none !important;
}

.chat-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.12rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.chat-status-pill.open {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.chat-status-pill.closed {
  background: rgba(244, 63, 94, 0.2);
  color: #fda4af;
  border: 1px solid rgba(244, 63, 94, 0.45);
}

.chat-consultation-closed-card {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.15) 0%, rgba(20, 22, 32, 0.95) 100%);
  border: 1px solid rgba(244, 63, 94, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.6rem;
  animation: chatFadeIn 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.chat-consultation-closed-card .closed-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.chat-consultation-closed-card .closed-banner-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.vortex-chat-header-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.chat-header-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Chat Body (Message Feed) */
.vortex-chat-body {
  flex: 1;
  padding: 1.1rem 1.1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: radial-gradient(circle at top right, rgba(147, 51, 234, 0.05), transparent 60%);
}

.vortex-chat-notice-card {
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.9rem;
  font-size: 0.76rem;
  color: var(--color-lavender-light);
  line-height: 1.45;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.chat-bubble-row {
  display: flex;
  flex-direction: column;
  max-width: 82%;
  animation: chatFadeIn 0.25s ease;
}

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

@keyframes spinOnce {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin-once {
  animation: spinOnce 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.chat-bubble-row.user {
  align-self: flex-end;
  align-items: flex-end;
}

.chat-bubble-row.admin {
  align-self: flex-start;
  align-items: flex-start;
}

.chat-bubble-sender {
  font-size: 0.68rem;
  color: var(--color-lavender);
  font-weight: 600;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.chat-bubble-content {
  padding: 0.65rem 0.95rem;
  border-radius: 14px;
  font-size: 0.83rem;
  line-height: 1.45;
  word-break: break-word;
  position: relative;
}

.chat-bubble-row.user .chat-bubble-content {
  background: linear-gradient(135deg, #9333ea, #7e22ce);
  color: #fff;
  border-bottom-right-radius: 3px;
  border: 1px solid rgba(216, 180, 254, 0.3);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.chat-bubble-row.admin .chat-bubble-content {
  background: rgba(255, 255, 255, 0.055);
  color: #f1f5f9;
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-bottom-left-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chat-bubble-time {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-top: 0.25rem;
}

/* Chat Input Bar */
.vortex-chat-footer {
  padding: 0.85rem 1rem;
  background: rgba(22, 18, 34, 0.9);
  border-top: 1px solid var(--border-subtle);
}

.chat-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(8, 7, 12, 0.9);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.4rem 0.3rem 0.9rem;
  transition: var(--transition);
}

.chat-input-wrapper:focus-within {
  border-color: var(--color-lavender);
  box-shadow: 0 0 12px rgba(216, 180, 254, 0.25);
}

.chat-text-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.84rem;
  outline: none;
}

.chat-text-input::placeholder {
  color: var(--text-dim);
}

.chat-send-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9333ea, #6b21a8);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.6);
}

/* ==========================================================================
   Admin CMS 1:1 Live Chat Interface Specifics
   ========================================================================== */
.admin-chat-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
  min-height: 580px;
  height: calc(100vh - 200px);
}

.admin-threads-sidebar {
  background: rgba(18, 15, 26, 0.6);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.admin-threads-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-threads-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.admin-thread-item {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-thread-item:hover {
  background: rgba(147, 51, 234, 0.08);
}

.admin-thread-item.active {
  background: rgba(147, 51, 234, 0.18);
  border-left: 3px solid var(--color-lavender);
}

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

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

.admin-thread-time {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.admin-thread-preview {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-thread-tags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

.admin-active-chat-pane {
  background: rgba(18, 15, 26, 0.6);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.admin-chat-pane-header {
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-chat-pane-messages {
  flex: 1;
  padding: 1.4rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-chat-pane-footer {
  padding: 1rem 1.4rem;
  border-top: 1px solid var(--border-subtle);
  background: rgba(10, 8, 15, 0.8);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.admin-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.admin-quick-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: var(--radius-sm);
  color: var(--color-lavender);
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
  cursor: pointer;
  transition: var(--transition);
}

.admin-quick-btn:hover {
  background: rgba(147, 51, 234, 0.2);
  border-color: var(--color-lavender);
}

/* ==========================================================================
   12. Top-Right Navbar Ticket History & Discord Login Integration Styles
   ========================================================================== */

#nav-ticket-button-wrap,
#nav-discord-account-wrap {
  display: inline-flex !important;
  align-items: center;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

/* Top-Right Navbar Button: 내 문의 내역 */
.btn-nav-tickets {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.68rem;
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(216, 180, 254, 0.35);
  border-radius: var(--radius-full);
  color: var(--color-lavender-light);
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  line-height: 1.2;
}

.btn-nav-tickets span {
  white-space: nowrap !important;
}

.btn-nav-tickets:hover {
  background: rgba(147, 51, 234, 0.35);
  border-color: var(--color-lavender);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.btn-nav-tickets .ticket-badge-count {
  background: #10b981;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.1rem 0.35rem;
  border-radius: 9999px;
  line-height: 1;
  white-space: nowrap !important;
  flex-shrink: 0;
}

/* Discord Nav Chip / Profile */
.discord-nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.6rem 0.28rem 0.35rem;
  background: rgba(88, 101, 242, 0.18);
  border: 1px solid rgba(88, 101, 242, 0.45);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  line-height: 1.2;
}

.discord-nav-chip span {
  white-space: nowrap !important;
}

.discord-nav-chip:hover {
  background: rgba(88, 101, 242, 0.32);
  border-color: #818cf8;
}

.discord-avatar-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #5865F2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.discord-logout-icon {
  opacity: 0.6;
  transition: var(--transition);
  margin-left: 0.2rem;
  flex-shrink: 0;
  cursor: pointer;
}

.discord-logout-icon:hover {
  opacity: 1;
  color: #ef4444;
}

/* Modal Overlay Base */
.vortex-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 3, 7, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 1.5rem;
}

.vortex-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Top-Right Ticket History Modal Container */
.ticket-history-modal-box {
  width: 580px;
  max-width: 100%;
  max-height: 85vh;
  background: rgba(14, 11, 22, 0.96);
  border: 1px solid rgba(216, 180, 254, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 40px rgba(147, 51, 234, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95) translateY(15px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.vortex-drawer-overlay.active .ticket-history-modal-box {
  transform: scale(1) translateY(0);
}

.ticket-history-modal-box::-webkit-scrollbar {
  width: 6px;
}
.ticket-history-modal-box::-webkit-scrollbar-track {
  background: rgba(14, 11, 22, 0.4);
}
.ticket-history-modal-box::-webkit-scrollbar-thumb {
  background: rgba(216, 180, 254, 0.3);
  border-radius: 4px;
}
.ticket-history-modal-box::-webkit-scrollbar-thumb:hover {
  background: rgba(192, 132, 252, 0.65);
}

/* Modal Header */
.ticket-modal-header {
  padding: 1.3rem 1.6rem;
  background: rgba(24, 19, 38, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-modal-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ticket-modal-header h3 i {
  color: var(--color-lavender);
}

/* Discord Account Status Banner */
.discord-account-bar {
  padding: 0.85rem 1.6rem;
  background: rgba(88, 101, 242, 0.1);
  border-bottom: 1px solid rgba(88, 101, 242, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* Ticket Filter Tabs */
.ticket-filter-tabs {
  display: flex;
  padding: 0.8rem 1.6rem;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.015);
}

.ticket-tab-btn {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.ticket-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.ticket-tab-btn.active {
  background: rgba(147, 51, 234, 0.25);
  border-color: rgba(216, 180, 254, 0.4);
  color: #fff;
}

/* Ticket Feed Area */
.ticket-modal-feed {
  flex: 1;
  padding: 1.2rem 1.6rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Active Highlight Card */
.ticket-active-card {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(16, 185, 129, 0.08));
  border: 1.5px solid rgba(52, 211, 153, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.12);
  position: relative;
}

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

.ticket-card-topic {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ticket-card-time {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.ticket-card-preview {
  font-size: 0.82rem;
  color: var(--color-lavender-light);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticket-item-normal {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.ticket-item-normal:hover {
  background: rgba(147, 51, 234, 0.12);
  border-color: rgba(216, 180, 254, 0.35);
  transform: translateY(-2px);
}

/* Modal Footer */
.ticket-modal-footer {
  padding: 1.1rem 1.6rem;
  background: rgba(24, 19, 38, 0.85);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ==========================================================================
   13. Chat & Ticket Image Upload & Lightbox Styles
   ========================================================================== */

.chat-bubble-image-wrap {
  margin-top: 0.45rem;
  border-radius: 8px;
  overflow: hidden;
  max-width: 260px;
  max-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.chat-bubble-image-wrap:hover {
  border-color: var(--color-lavender);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.chat-bubble-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chat-attach-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.chat-attach-btn:hover {
  color: var(--color-lavender);
  background: rgba(216, 180, 254, 0.15);
}

.chat-pending-image-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.75rem;
  background: rgba(147, 51, 234, 0.18);
  border: 1px solid rgba(216, 180, 254, 0.35);
  border-radius: 8px;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  color: #fff;
}

.chat-pending-thumb {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-pending-remove {
  background: transparent;
  border: none;
  color: #f87171;
  cursor: pointer;
  margin-left: auto;
  padding: 0.2rem;
  display: flex;
  align-items: center;
}

/* Downloadable File Attachment Card */
.chat-file-card {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(135deg, rgba(26, 18, 42, 0.85), rgba(15, 11, 25, 0.95));
  border: 1px solid rgba(216, 180, 254, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  max-width: 320px;
  transition: var(--transition);
  text-decoration: none;
}

.chat-file-card:hover {
  border-color: var(--color-lavender);
  background: linear-gradient(135deg, rgba(40, 25, 65, 0.9), rgba(20, 15, 35, 0.98));
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.25);
  transform: translateY(-1px);
}

.chat-file-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(147, 51, 234, 0.22);
  border: 1px solid rgba(216, 180, 254, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lavender);
  flex-shrink: 0;
}

.chat-file-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.chat-file-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.chat-file-size {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.chat-file-dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-lavender);
  flex-shrink: 0;
  transition: var(--transition);
  text-decoration: none;
}

.chat-file-dl-btn:hover {
  background: var(--color-lavender);
  color: #000;
  border-color: var(--color-lavender);
}

/* Image Lightbox Modal */
.image-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 2rem;
}

.image-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.image-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(147, 51, 234, 0.3);
  border: 1px solid rgba(216, 180, 254, 0.3);
}

.image-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.image-lightbox-close:hover {
  background: #ef4444;
  border-color: #ef4444;
}

/* ==========================================================================
   14. Visual Editor Dynamic Add / Delete Box Styles
   ========================================================================== */

.btn-add-section-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1.2rem;
  background: rgba(147, 51, 234, 0.08);
  border: 2px dashed rgba(216, 180, 254, 0.45);
  border-radius: var(--radius-lg);
  color: var(--color-lavender-light);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1.5rem;
}

.btn-add-section-card:hover {
  background: rgba(147, 51, 234, 0.2);
  border-color: var(--color-lavender);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.25);
}

body.vortex-edit-mode .store-card,
body.vortex-edit-mode .compact-product-card {
  overflow: visible !important;
}

.card-delete-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(220, 38, 38, 0.95);
  border: 1px solid rgba(254, 202, 202, 0.7);
  color: #fff;
  padding: 0.32rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  gap: 0.35rem;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 12px rgba(239, 68, 68, 0.5);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.card-delete-badge:hover {
  background: #ef4444;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.7);
}

.card-cat-badge {
  position: absolute;
  top: 10px;
  left: 12px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(168, 85, 247, 0.7);
  color: #fff;
  padding: 0.28rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 12px rgba(168, 85, 247, 0.4);
  backdrop-filter: blur(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-cat-badge select {
  background: rgba(30, 27, 75, 0.95);
  color: #d8b4fe;
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  cursor: pointer;
  outline: none;
  transition: 0.2s;
}

.card-cat-badge select:hover,
.card-cat-badge select:focus {
  border-color: #d8b4fe;
  background: rgba(49, 46, 129, 0.95);
}


/* Stat Card Edit Specifics in Admin Panel */
.admin-stat-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin-bottom: 1.4rem;
  position: relative;
}

.admin-stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-stat-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-lavender-light);
}

/* ==========================================================================
   15. In-App Custom Toast & Prompt Modal System
   ========================================================================== */

/* Preset topic buttons */
.ticket-preset-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.ticket-preset-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  align-items: center;
}

.preset-topic-chip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.preset-topic-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 180, 254, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-lavender);
  font-size: 0.76rem;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  outline: none;
}

.preset-topic-btn:hover,
.preset-topic-btn.active {
  background: rgba(147, 51, 234, 0.25);
  border-color: var(--color-lavender);
  color: #fff;
  transform: translateY(-1px);
}

.preset-topic-btn[contenteditable="true"] {
  cursor: text;
  background: rgba(147, 51, 234, 0.3);
  border: 1px dashed var(--color-lavender);
  color: #fff;
}

.chip-del-btn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  border: none;
  font-size: 10px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 0.2rem;
  transition: 0.15s;
}

.chip-del-btn:hover {
  background: #dc2626;
  transform: scale(1.15);
}

.btn-chip-action {
  background: rgba(147, 51, 234, 0.15);
  border: 1px dashed rgba(216, 180, 254, 0.35);
  color: var(--color-lavender);
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-chip-action:hover {
  background: rgba(147, 51, 234, 0.35);
  border-color: var(--color-lavender);
  color: #fff;
}

/* Custom In-App Notification Toast */
.vortex-app-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
}

.vortex-app-toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 420px;
  background: rgba(18, 14, 28, 0.95);
  border: 1px solid rgba(216, 180, 254, 0.35);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(147, 51, 234, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #fff;
}

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

.vortex-app-toast.hide {
  animation: toastSlideOut 0.25s forwards;
}

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

.vortex-app-toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(147, 51, 234, 0.25);
  border: 1px solid rgba(216, 180, 254, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lavender-light);
  flex-shrink: 0;
}

.vortex-app-toast-icon.success {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10b981;
  color: #34d399;
}

.vortex-app-toast-icon.error {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #f87171;
}

.vortex-app-toast-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.vortex-app-toast-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
}

.vortex-app-toast-msg {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   16. Discord OAuth2 Gate & Automatic Ticket Bot System
   ========================================================================== */

/* Zero-Flicker Gate Concealment System */
html.gate-locked body > header,
html.gate-locked body > main,
html.gate-locked body > footer {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  user-select: none !important;
}

html.gate-locked {
  background: #08040f !important;
  overflow: hidden !important;
}

/* Fullscreen Auth Gate Overlay (Inactive = completely inert and hidden) */
.discord-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999 !important;
  background: #08060f !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.discord-gate-overlay.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

/* ==========================================================================
   ABSOLUTE HIT-TEST HARDENING: Any inactive backdrop/overlay is 100% inert
   ========================================================================== */
.modal-overlay:not(.open),
.vortex-drawer-overlay:not(.active),
.image-lightbox-overlay:not(.active),
.discord-gate-overlay:not(.active),
.flower-drawer-overlay:not(.active),
.vortex-chat-modal:not(.active) {
  pointer-events: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  user-select: none !important;
}

.discord-gate-card {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(135deg, rgba(20, 15, 35, 0.95), rgba(12, 10, 22, 0.98));
  border: 1px solid rgba(88, 101, 242, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(88, 101, 242, 0.2);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.discord-gate-overlay.active .discord-gate-card {
  transform: translateY(0) scale(1);
}

.discord-gate-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 160px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.discord-gate-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, #5865F2, #4752C4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.45);
  position: relative;
}

.discord-gate-icon-wrap svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.discord-gate-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.discord-gate-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.6rem;
}

.discord-gate-benefits {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  text-align: left;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.discord-gate-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--color-lavender-light);
}

.discord-gate-benefit-item svg {
  color: #5865F2;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.btn-discord-login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #5865F2;
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 18px rgba(88, 101, 242, 0.4);
}

.btn-discord-login:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.55);
  color: #fff;
}

.btn-discord-login:disabled {
  opacity: 0.75;
  cursor: wait !important;
  transform: none !important;
  box-shadow: none !important;
}

@keyframes flowerSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn-discord-join-server {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
  margin-bottom: 0.75rem;
}

.btn-discord-join-server:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
  color: #fff;
}

/* User Profile Widget in Top Navbar */
.nav-discord-user {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(88, 101, 242, 0.3);
  padding: 0.3rem 0.6rem 0.3rem 0.35rem;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-discord-user:hover {
  background: rgba(88, 101, 242, 0.12);
  border-color: #5865F2;
}

.nav-discord-avatar-wrap {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
}

.nav-discord-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #5865F2;
}

.nav-discord-status-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 9px;
  height: 9px;
  background: #10b981;
  border: 1.5px solid #0f0c1b;
  border-radius: 50%;
}

.nav-discord-name-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.nav-discord-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-discord-badge {
  font-size: 0.62rem;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-discord-badge.role-badge-master {
  color: #c084fc !important;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(192, 132, 252, 0.5);
}

.nav-discord-badge.role-badge-admin {
  color: #60a5fa !important;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
}

.nav-discord-badge.role-badge-supporter {
  color: #34d399 !important;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

/* Staff Panel Quick Access Button in Top Navbar */
.btn-staff-panel {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  animation: fadeIn 0.3s ease;
}

.btn-staff-panel svg, .btn-staff-panel i {
  width: 14px;
  height: 14px;
}

.btn-staff-panel.master {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(126, 34, 206, 0.35));
  border: 1px solid rgba(216, 180, 254, 0.55);
  color: #f3e8ff;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}
.btn-staff-panel.master:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(147, 51, 234, 0.5));
  border-color: #d8b4fe;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.55);
  transform: translateY(-1px);
}

.btn-staff-panel.admin {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(29, 78, 216, 0.35));
  border: 1px solid rgba(147, 197, 253, 0.55);
  color: #eff6ff;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}
.btn-staff-panel.admin:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(37, 99, 235, 0.5));
  border-color: #93c5fd;
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.55);
  transform: translateY(-1px);
}

.btn-staff-panel.supporter {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(5, 150, 105, 0.35));
  border: 1px solid rgba(110, 231, 183, 0.55);
  color: #ecfdf5;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}
.btn-staff-panel.supporter:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(16, 185, 129, 0.5));
  border-color: #6ee7b7;
  box-shadow: 0 0 22px rgba(16, 185, 129, 0.55);
  transform: translateY(-1px);
}

.btn-nav-logout {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}

.btn-nav-logout:hover {
  color: #ef4444;
}

/* Purchase Ticket Modal */
.ticket-buy-modal-card {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, rgba(22, 17, 38, 0.98), rgba(13, 10, 24, 0.99));
  border: 1px solid rgba(216, 180, 254, 0.35);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(147, 51, 234, 0.25);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  text-align: center;
}

.ticket-buy-product-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  margin: 1.2rem 0 1.4rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ticket-buy-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}

.ticket-buy-summary-row .label {
  color: var(--text-dim);
}

.ticket-buy-summary-row .value {
  color: #fff;
  font-weight: 700;
}

.ticket-buy-summary-row .value.price-highlight {
  color: var(--color-lavender-light);
  font-size: 1.05rem;
  font-weight: 800;
}

.btn-ticket-create-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #9333ea, #7e22ce);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.btn-ticket-create-submit:hover {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.55);
}

.ticket-created-success-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin: 1.2rem 0;
  text-align: center;
}

.btn-open-discord-channel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #5865F2;
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 6px 25px rgba(88, 101, 242, 0.45);
}

.btn-open-discord-channel:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.6);
  color: #fff;
}

/* =========================================
   CLEAN STANDALONE FLOWER LOGO (NO BACKGROUND / NO CARDS)
   ========================================= */
.hero-logo-only-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 380px;
}

.hero-standalone-flower-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.55)) drop-shadow(0 0 80px rgba(147, 51, 234, 0.3));
  transition: transform 0.4s ease, filter 0.4s ease;
  user-select: none;
  pointer-events: auto;
}

.hero-standalone-flower-logo:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 0 55px rgba(216, 180, 254, 0.75)) drop-shadow(0 0 100px rgba(168, 85, 247, 0.45));
}

@media (max-width: 992px) {
  .hero-logo-only-wrap {
    min-height: 280px;
    margin-top: 1.5rem;
  }
  .hero-standalone-flower-logo {
    max-width: 260px;
  }
}

/* =========================================
   LIVE VISUAL EDITOR: IMAGE HOVER & CLICK HIGHLIGHTS
   ========================================= */
body.vortex-edit-mode img:not(.no-edit),
body.vortex-edit-mode .store-card-media,
body.vortex-edit-mode .media-frame,
body.vortex-edit-mode .bento-img-wrap,
body.vortex-edit-mode .hero-standalone-flower-logo,
body.vortex-edit-mode .brand-logo-img,
body.vortex-edit-mode .navbar-logo-img {
  cursor: pointer !important;
  position: relative;
  outline: 2px dashed rgba(216, 180, 254, 0.7) !important;
  outline-offset: 3px !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.vortex-edit-mode img:not(.no-edit):hover,
body.vortex-edit-mode .store-card-media:hover,
body.vortex-edit-mode .media-frame:hover,
body.vortex-edit-mode .bento-img-wrap:hover,
body.vortex-edit-mode .hero-standalone-flower-logo:hover {
  outline: 2px solid #c084fc !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.5) !important;
  transform: scale(1.015);
}

body.vortex-edit-mode [contenteditable="true"] {
  outline: 1px dashed rgba(216, 180, 254, 0.45);
  outline-offset: 2px;
  border-radius: 3px;
  cursor: text;
  transition: outline 0.15s ease, background 0.15s ease;
}

/* Duration Pill Delete Button in Edit Mode */
body.vortex-edit-mode .duration-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.pill-delete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  background: rgba(239, 68, 68, 0.9);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.pill-delete-btn:hover {
  background: #dc2626;
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

/* ==========================================================================
   13. 1:1 Live Chat File Upload & Attachment Cards (.chat-file-card)
   ========================================================================== */
.chat-bubble-image-wrap {
  margin-top: 0.45rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 280px;
  cursor: pointer;
  border: 1px solid rgba(216, 180, 254, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: rgba(0, 0, 0, 0.4);
}

.chat-bubble-image-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
  border-color: var(--color-lavender);
}

.chat-bubble-img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.chat-file-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: rgba(22, 17, 36, 0.85);
  border: 1px solid rgba(216, 180, 254, 0.25);
  border-radius: var(--radius-md);
  margin-top: 0.4rem;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
  max-width: 320px;
}

.chat-file-card:hover {
  background: rgba(147, 51, 234, 0.22);
  border-color: var(--color-lavender);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.35);
}

.chat-file-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(107, 33, 168, 0.4));
  border: 1px solid rgba(216, 180, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lavender-light);
  flex-shrink: 0;
}

.chat-file-meta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
}

.chat-file-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.chat-file-size {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-top: 0.15rem;
}

.chat-file-dl-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lavender);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.chat-file-card:hover .chat-file-dl-btn {
  background: #9333ea;
  color: #fff;
  transform: scale(1.1);
}

.chat-pending-image-bar {
  background: rgba(26, 20, 42, 0.95);
  border: 1px solid rgba(216, 180, 254, 0.3);
  border-radius: var(--radius-md);
  padding: 0.45rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.chat-pending-thumb {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid rgba(216, 180, 254, 0.3);
}

.chat-pending-remove {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-pending-remove:hover {
  background: rgba(239, 68, 68, 0.4);
  color: #fff;
  transform: scale(1.1);
}

/* ==========================================================================
   14. 3-Tier Product Status & Admin Role Badges (UNDETECTED / 업데이트중 / 사용불가)
   ========================================================================== */
.store-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.store-status-pill svg, .store-status-pill i {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Status 1: UNDETECTED (초록색 🟢) */
.green-text,
.store-status-pill.green-text,
.store-status-pill.status-undetected,
.status-pill-green {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.45) !important;
  color: #34d399 !important;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.25);
}

/* Status 2: 업데이트중 (주황색 🟠) */
.orange-text,
.store-status-pill.orange-text,
.store-status-pill.status-updating,
.status-pill-orange {
  background: rgba(245, 158, 11, 0.18) !important;
  border: 1px solid rgba(245, 158, 11, 0.5) !important;
  color: #fbbf24 !important;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.3);
}

/* Status 3: 사용불가 (빨간색 🔴) */
.red-text,
.store-status-pill.red-text,
.store-status-pill.status-disabled,
.status-pill-red {
  background: rgba(239, 68, 68, 0.18) !important;
  border: 1px solid rgba(239, 68, 68, 0.5) !important;
  color: #f87171 !important;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.3);
}

/* Admin Role Header & Profile Badges */
.admin-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-subtle);
}

.admin-role-badge.master {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(126, 34, 206, 0.35));
  border: 1px solid rgba(216, 180, 254, 0.6);
  color: #f3e8ff;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.35);
}

.admin-role-badge.owner {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.25), rgba(180, 83, 9, 0.35));
  border: 1px solid rgba(253, 224, 71, 0.6);
  color: #fef9c3;
  box-shadow: 0 0 18px rgba(234, 179, 8, 0.35);
}

.admin-role-badge.admin {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(29, 78, 216, 0.35));
  border: 1px solid rgba(147, 197, 253, 0.6);
  color: #eff6ff;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.35);
}

.admin-role-badge.manager {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(3, 105, 161, 0.35));
  border: 1px solid rgba(125, 211, 252, 0.6);
  color: #f0f9ff;
  box-shadow: 0 0 18px rgba(14, 165, 233, 0.35);
}

.admin-role-badge.supporter {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(4, 120, 87, 0.35));
  border: 1px solid rgba(110, 231, 183, 0.6);
  color: #ecfdf5;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.35);
}

.admin-role-badge.user {
  background: rgba(100, 116, 139, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #cbd5e1;
}

.nav-discord-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

.nav-discord-badge.role-badge-master {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.28), rgba(126, 34, 206, 0.4));
  border: 1px solid rgba(216, 180, 254, 0.6);
  color: #f3e8ff;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.35);
}

.nav-discord-badge.role-badge-owner {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.28), rgba(180, 83, 9, 0.4));
  border: 1px solid rgba(253, 224, 71, 0.6);
  color: #fef9c3;
  box-shadow: 0 0 12px rgba(234, 179, 8, 0.35);
}

.nav-discord-badge.role-badge-admin {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.28), rgba(29, 78, 216, 0.4));
  border: 1px solid rgba(147, 197, 253, 0.6);
  color: #eff6ff;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.35);
}

.nav-discord-badge.role-badge-manager {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.28), rgba(3, 105, 161, 0.4));
  border: 1px solid rgba(125, 211, 252, 0.6);
  color: #f0f9ff;
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.35);
}

.nav-discord-badge.role-badge-supporter {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.28), rgba(4, 120, 87, 0.4));
  border: 1px solid rgba(110, 231, 183, 0.6);
  color: #ecfdf5;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
}

.nav-discord-badge.role-badge-buyer,
.nav-discord-badge.role-badge-vip {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.25), rgba(245, 158, 11, 0.35));
  border: 1px solid rgba(253, 224, 71, 0.7);
  color: #fef08a;
  box-shadow: 0 0 12px rgba(234, 179, 8, 0.3);
}

/* 1-Click Status Quick Selector Control in Admin */
.status-quick-btn-group {
  display: flex;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 3px;
}

.status-quick-btn {
  flex: 1;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.status-quick-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.status-quick-btn.active.undetected {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
  color: #34d399;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.status-quick-btn.active.updating {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.5);
  color: #fbbf24;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.status-quick-btn.active.disabled {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  color: #f87171;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* Grouped Admin Sidebar Navigation Categories */
.admin-nav-group-title {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--color-lavender);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.8rem 0.75rem 0.3rem;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
}

.admin-nav-group-title:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0.2rem;
}

/* Floating Save Action Bar (Always Accessible & Responsive) */
.save-sticky-bar {
  position: fixed;
  bottom: 1.5rem;
  right: 2rem;
  left: auto;
  background: rgba(10, 8, 16, 0.95);
  border: 1px solid rgba(216, 180, 254, 0.4);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.85), 0 0 30px rgba(147, 51, 234, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.save-sticky-bar:hover {
  border-color: rgba(216, 180, 254, 0.75);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.95), 0 0 45px rgba(147, 51, 234, 0.55);
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .save-sticky-bar {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    justify-content: space-between;
  }
}

/* Save button spinner and states */
.btn-save-loading {
  opacity: 0.75;
  pointer-events: none;
  cursor: wait !important;
}

.btn-save-success {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  border-color: #34d399 !important;
  color: #fff !important;
  box-shadow: 0 0 22px rgba(16, 185, 129, 0.6) !important;
}

/* =========================================
   STATUS PAGE LIVE PRODUCTS SECURITY HUB
   ========================================= */
.status-products-section {
  margin-top: 4.5rem;
  margin-bottom: 5rem;
}

.status-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

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

.status-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.status-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 180, 254, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(147, 51, 234, 0.25);
}

.status-product-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.status-product-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(216, 180, 254, 0.25);
  background: #000;
  flex-shrink: 0;
}

.status-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.status-product-card:hover .status-product-thumb img {
  transform: scale(1.06);
}

.status-product-info {
  flex: 1;
  min-width: 0;
}

.status-product-title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}

.status-product-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.status-product-tag {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.5rem;
}

.status-product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.status-product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
  gap: 0.8rem;
}

.status-product-prices-pills {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.status-price-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.55rem;
  font-size: 0.75rem;
  color: var(--color-lavender-light);
  font-family: var(--font-mono);
}

.status-price-chip.vip {
  background: rgba(147, 51, 234, 0.18);
  border-color: rgba(216, 180, 254, 0.4);
  color: #fef08a;
  font-weight: 700;
}

.status-product-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-status-buy {
  background: linear-gradient(135deg, #9333ea, #6b21a8);
  color: #fff;
  border: 1px solid rgba(216, 180, 254, 0.3);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ==========================================================================
   15. Reseller & Panel Dual View Category System
   ========================================================================== */
.reseller-category-nav-wrap {
  display: flex;
  justify-content: center;
  margin: 1rem auto 2.8rem;
  max-width: 760px;
  width: calc(100% - 2rem);
  padding: 0;
  box-sizing: border-box;
}

.reseller-category-nav {
  display: flex;
  gap: 0.6rem;
  background: rgba(14, 11, 24, 0.9);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  padding: 0.45rem;
  width: 100%;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.reseller-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  user-select: none;
}

.reseller-tab-btn span,
.reseller-tab-btn i,
.reseller-tab-btn svg {
  pointer-events: none;
}

.reseller-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.reseller-tab-btn.active {
  background: linear-gradient(135deg, #9333ea, #6b21a8);
  border-color: rgba(216, 180, 254, 0.45);
  color: #fff;
  box-shadow: 0 4px 25px rgba(147, 51, 234, 0.5);
}

@media (max-width: 680px) {
  .reseller-category-nav {
    flex-direction: column;
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    gap: 0.4rem;
  }
  .reseller-tab-btn {
    border-radius: var(--radius-lg);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }
}

.reseller-condition-box {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.08), rgba(147, 51, 234, 0.12));
  border: 1.5px solid rgba(250, 204, 21, 0.45);
  border-radius: var(--radius-xl);
  padding: 1.8rem 2.2rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(234, 179, 8, 0.15);
}

.reseller-condition-content {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  flex: 1;
  min-width: 280px;
}

.reseller-condition-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.25), rgba(168, 85, 247, 0.35));
  border: 1.5px solid rgba(250, 204, 21, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fef08a;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.35);
}

.reseller-condition-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}

.reseller-condition-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

.reseller-condition-desc strong {
  color: #fef08a;
  font-weight: 700;
}

.reseller-section-view {
  display: none;
  animation: fadeIn 0.3s ease;
}

.reseller-section-view.active {
  display: block;
}

.tier-price-inquiry {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 800;
  color: #fef08a;
  text-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.tier-price-inquiry span {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
  font-family: var(--font-main);
  text-shadow: none;
}

/* ==========================================================================
   16. Real-time Product-Bound Loaders & Hub System
   ========================================================================== */
.loader-product-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.4rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: var(--radius-lg);
}

.loader-product-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.loader-product-filter-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.loader-product-filter-btn.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.35), rgba(107, 33, 168, 0.4));
  border-color: rgba(216, 180, 254, 0.45);
  box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
}

.filter-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.filter-status-dot.dot-undetected {
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
}

.filter-status-dot.dot-updating {
  background: #fbbf24;
  box-shadow: 0 0 6px #fbbf24;
}

.filter-status-dot.dot-maintenance {
  background: #f87171;
  box-shadow: 0 0 6px #f87171;
}

.loader-item-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(216, 180, 254, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.loader-item-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 180, 254, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(147, 51, 234, 0.15);
}

.loader-item-card.is-updating {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.loader-item-card.is-maintenance {
  border-color: rgba(239, 68, 68, 0.35);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.loader-bind-prod-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: rgba(147, 51, 234, 0.2);
  border: 1px solid rgba(216, 180, 254, 0.35);
  color: var(--color-lavender-light);
}

.loader-auto-upload-box {
  background: rgba(147, 51, 234, 0.08);
  border: 1px dashed rgba(216, 180, 254, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.loader-auto-upload-box:hover {
  background: rgba(147, 51, 234, 0.15);
  border-color: var(--color-lavender);
}

/* =========================================================================
   FLOWER 3-BAR HAMBURGER MENU BUTTON & SLIDE-OUT DRAWER PANEL
   ========================================================================= */
.btn-hamburger-menu {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5.5px;
  width: 44px;
  height: 44px;
  background: rgba(147, 51, 234, 0.16);
  border: 1.5px solid rgba(216, 180, 254, 0.28);
  border-radius: 12px;
  cursor: pointer;
  pointer-events: auto !important;
  user-select: none;
  touch-action: manipulation;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.btn-hamburger-menu:hover {
  background: rgba(147, 51, 234, 0.28);
  border-color: var(--color-lavender);
  box-shadow: 0 0 16px rgba(147, 51, 234, 0.45);
  transform: scale(1.05);
}

.btn-hamburger-menu:active {
  transform: scale(0.96);
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  pointer-events: none !important;
  transition: all 0.3s ease;
}

.btn-hamburger-menu.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.btn-hamburger-menu.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.btn-hamburger-menu.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger-notify-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  pointer-events: none !important;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
}

/* Drawer Backdrop Overlay */
.flower-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
}

.flower-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}

/* Slide-out Drawer Panel (Right to Left GPU Accelerated) */
.flower-hamburger-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  background: linear-gradient(180deg, #130a24 0%, #0a0514 100%);
  border-left: 1.5px solid rgba(216, 180, 254, 0.28);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.85), 0 0 30px rgba(147, 51, 234, 0.18);
  z-index: 99999;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.15rem;
  box-sizing: border-box;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch;
  gap: 0.65rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 85, 247, 0.45) rgba(10, 5, 20, 0.8);
}

.flower-hamburger-drawer::-webkit-scrollbar {
  width: 5px;
}
.flower-hamburger-drawer::-webkit-scrollbar-track {
  background: rgba(10, 5, 20, 0.8);
}
.flower-hamburger-drawer::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.35);
  border-radius: 4px;
}
.flower-hamburger-drawer::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 85, 247, 0.65);
}

.flower-hamburger-drawer.active {
  transform: translate3d(0, 0, 0);
}

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

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  color: #fff;
}

.drawer-section-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-lavender);
  text-transform: uppercase;
  margin: 0.4rem 0 0.1rem;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
}

.drawer-item:hover {
  background: rgba(147, 51, 234, 0.18);
  border-color: rgba(216, 180, 254, 0.35);
  transform: translateX(4px);
  color: #fff;
}

.btn-drawer-vip {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.18), rgba(202, 138, 4, 0.1));
  border-color: rgba(250, 204, 21, 0.4);
  color: #fef08a !important;
  font-weight: 800;
  justify-content: space-between;
  box-shadow: 0 0 15px rgba(234, 179, 8, 0.12);
}

.btn-drawer-vip:hover {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.28), rgba(202, 138, 4, 0.2));
  border-color: #facc15;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
}

.btn-drawer-store {
  background: linear-gradient(135deg, #c084fc 0%, #9333ea 100%);
  color: #fff !important;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.35);
  justify-content: center;
}

.btn-drawer-store:hover {
  background: linear-gradient(135deg, #d8b4fe 0%, #a855f7 100%);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.5);
  transform: translateY(-2px);
}

.btn-drawer-tickets {
  background: rgba(147, 51, 234, 0.12);
  border-color: rgba(216, 180, 254, 0.25);
  color: var(--color-lavender) !important;
  font-weight: 700;
  justify-content: space-between;
  font-family: inherit;
}

.btn-drawer-tickets:hover {
  background: rgba(147, 51, 234, 0.25);
  border-color: var(--color-lavender);
}

.btn-drawer-login {
  background: #5865F2;
  color: #fff !important;
  border: none;
  font-weight: 700;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.35);
}

.btn-drawer-login:hover {
  background: #4752C4;
  box-shadow: 0 6px 18px rgba(88, 101, 242, 0.5);
}

.drawer-user-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(147, 51, 234, 0.12);
  border: 1px solid rgba(216, 180, 254, 0.3);
  box-sizing: border-box;
  width: 100%;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.drawer-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(3px);
}

/* =========================================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE SYSTEM (320px ~ 992px)
   ========================================================================= */

/* Prevent horizontal overflow globally */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* Base Mobile Overrides (<= 992px) */
@media (max-width: 992px) {
  html {
    font-size: 16px;
  }
  .page-container,
  .section-container {
    width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .nav-links {
    display: none !important;
  }
  .hero-split-container {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .features-grid,
  .store-products-grid,
  .pricing-grid,
  .status-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Tablet & Large Mobile (<= 768px) */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  /* Floating Navbar */
  .navbar {
    top: 0.4rem !important;
    padding: 0 0.6rem !important;
  }
  .navbar.scrolled {
    top: 0.25rem !important;
  }
  .navbar + main,
  .navbar ~ main {
    padding-top: 4.4rem !important;
  }
  .nav-container {
    padding: 0.45rem 0.85rem !important;
    gap: 0.5rem !important;
  }
  .navbar.scrolled .nav-container {
    padding: 0.38rem 0.75rem !important;
  }
  .brand-icon {
    width: 34px !important;
    height: 34px !important;
    padding: 4px !important;
  }
  .brand-name {
    font-size: 1.05rem !important;
  }
  .brand-sub {
    display: none !important;
  }
  .nav-actions {
    gap: 0.35rem !important;
  }
  .status-badge {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.68rem !important;
  }
  .btn-hamburger-menu {
    width: 38px !important;
    height: 38px !important;
  }

  /* Global Notice Hub */
  .global-notices-top-hub {
    margin: 1.2rem auto 0 !important;
    padding: 0 0.8rem !important;
    width: 100% !important;
  }
  .global-notice-card {
    padding: 0.75rem 1rem !important;
    border-radius: 14px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.6rem !important;
  }

  /* Hero Section */
  .hero-split-section {
    margin: 1.5rem auto 3.5rem !important;
    padding: 0 0.8rem !important;
    width: 100% !important;
  }
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
    word-break: keep-all !important;
  }
  .hero-desc {
    font-size: 1rem !important;
    line-height: 1.65 !important;
    margin-bottom: 1.8rem !important;
  }
  .hero-badge {
    margin-bottom: 1.2rem !important;
    padding: 0.4rem 0.95rem !important;
    font-size: 0.82rem !important;
  }
  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
    margin-bottom: 2rem !important;
  }
  .btn-hero-shop,
  .btn-hero-discord {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.9rem 1.4rem !important;
    font-size: 1.02rem !important;
    border-radius: 12px !important;
  }
  .hero-feature-pills {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }
  .hero-feature-pill {
    font-size: 0.8rem !important;
  }
  .pill-icon-box {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
  }

  /* Store Products Grid */
  .store-products-grid {
    grid-template-columns: 1fr !important;
    gap: 1.4rem !important;
    padding: 0 0.8rem !important;
  }
  .store-item-card {
    padding: 1.2rem !important;
    border-radius: 18px !important;
  }

  /* VIP Buyer Portal */
  .vip-hero-wrap {
    padding: 1.8rem 1.1rem !important;
    border-radius: 18px !important;
    margin-bottom: 1.5rem !important;
  }
  .vip-hero-wrap h1 {
    font-size: 1.65rem !important;
  }
  .buyer-tabs-nav {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0.35rem !important;
    border-radius: 16px !important;
    margin-bottom: 1.6rem !important;
    justify-content: flex-start !important;
    scrollbar-width: none !important;
  }
  .buyer-tabs-nav::-webkit-scrollbar {
    display: none;
  }
  .buyer-tab-btn {
    flex: 0 0 auto !important;
    padding: 0.65rem 0.95rem !important;
    font-size: 0.82rem !important;
  }
  .guides-layout {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .guides-menu-card {
    position: static !important;
    padding: 0.9rem !important;
    border-radius: 16px !important;
    width: 100% !important;
  }
  .guide-detail-pane {
    padding: 1.2rem !important;
    border-radius: 16px !important;
  }
  .guide-step-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.6rem !important;
    padding: 1rem !important;
  }
  .guide-step-num {
    margin-bottom: 0.2rem !important;
  }
  .loader-download-card {
    padding: 1.3rem !important;
    border-radius: 18px !important;
  }
  .loaders-grid,
  #buyer-loaders-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .loader-product-filter-btn {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.76rem !important;
  }

  /* Status Page & Stats Grid */
  .status-hero-grid,
  .status-stats-grid,
  .status-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .stat-card,
  .status-card {
    padding: 1.2rem !important;
    border-radius: 16px !important;
  }

  /* Pricing Cards */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 1.4rem !important;
  }
  .pricing-card {
    padding: 1.5rem !important;
    border-radius: 20px !important;
  }

  /* Tables Mobile Scroll */
  .table-responsive,
  .features-comparison-wrap {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 14px !important;
  }

  /* Modals Full Mobile Compatibility */
  .flower-modal,
  .vortex-modal-wrap,
  .modal-dialog {
    width: 94vw !important;
    max-width: 94vw !important;
    padding: 1.3rem !important;
    border-radius: 18px !important;
    margin: 1rem auto !important;
  }
  .modal-dark-input,
  .modal-dark-textarea,
  .modal-dark-select {
    font-size: 16px !important; /* Prevents auto-zoom on iOS */
  }
}

/* Small SmartPhones (<= 480px) */
@media (max-width: 480px) {
  html {
    font-size: 14.5px;
  }
  .hero-title {
    font-size: 2.15rem !important;
  }
  .hero-feature-pills {
    grid-template-columns: 1fr !important;
  }
  .btn-hero-shop,
  .btn-hero-discord {
    padding: 0.85rem 1.2rem !important;
    font-size: 0.96rem !important;
  }
  .brand-name {
    font-size: 0.98rem !important;
  }
  .brand-name .highlight {
    display: none !important;
  }
  .navbar {
    top: 0.3rem !important;
    padding: 0 0.35rem !important;
  }
  .navbar.scrolled {
    top: 0.2rem !important;
  }
  .navbar + main,
  .navbar ~ main {
    padding-top: 4.1rem !important;
  }
  .nav-container {
    padding: 0.4rem 0.65rem !important;
  }
  .flower-hamburger-drawer {
    width: 290px !important;
  }
}


















/* ============================================================= */
/* FLOWER LANGUAGE SWITCHER & PRECISION NAVBAR SYSTEM (NO PROTRUSION) */
/* ============================================================= */
#flower-lang-switch-wrap,
.flower-lang-switch-wrap {
  display: none !important; /* Eliminate any duplicate wrapper */
}

/* Single Sleek Language Switcher Button (38px pill) */
.btn-flower-lang {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem !important;
  height: 38px !important;
  padding: 0 0.72rem !important;
  background: rgba(30, 16, 46, 0.85) !important;
  border: 1.5px solid rgba(192, 132, 252, 0.4) !important;
  border-radius: 9999px !important;
  color: #fff !important;
  font-family: var(--font-main, sans-serif) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 10px rgba(168, 85, 247, 0.2) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  margin: 0 !important;
  white-space: nowrap !important;
  user-select: none !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
}

.btn-flower-lang:hover {
  background: rgba(147, 51, 234, 0.25) !important;
  border-color: rgba(216, 180, 254, 0.75) !important;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.45) !important;
  transform: translateY(-1px) !important;
}

.btn-flower-lang .lang-globe,
.btn-flower-lang .lang-icon {
  font-size: 0.88rem !important;
  line-height: 1 !important;
  margin-right: 0.05rem !important;
  filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.6)) !important;
}

.btn-flower-lang .lang-pill-opt {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  padding: 0.16rem 0.4rem !important;
  border-radius: 6px !important;
  transition: all 0.18s ease !important;
}

.btn-flower-lang .lang-pill-opt.active {
  color: #fff !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(147, 51, 234, 0.35)) !important;
  border: 1px solid rgba(216, 180, 254, 0.5) !important;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.5) !important;
}

.btn-flower-lang .lang-pill-sep {
  color: rgba(255, 255, 255, 0.25) !important;
  font-size: 0.7rem !important;
}

/* Matching symmetrical 38px height for hamburger */
.btn-hamburger-menu {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

/* Precision Nav Pill Container & Flex Align */
.nav-container {
  pointer-events: auto !important;
  width: 96% !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 0.5rem 1.3rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(0.4rem, 1vw, 1rem) !important;
  box-sizing: border-box !important;
}

.brand {
  flex-shrink: 0 !important;
  gap: 0.65rem !important;
}

.brand-icon {
  width: 38px !important;
  height: 38px !important;
}

.brand-name {
  font-size: 1.16rem !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(0.18rem, 0.4vw, 0.4rem) !important;
  flex-shrink: 1 !important;
  min-width: 0 !important;
}

.nav-link {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.4rem clamp(0.42rem, 0.6vw, 0.78rem) !important;
  font-size: clamp(0.78rem, 0.85vw, 0.88rem) !important;
  gap: 0.32rem !important;
  white-space: nowrap !important;
}

.nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  margin: 0 !important;
  margin-left: auto !important;
}

/* Korean Mode Optimizations (Prevents Wide Hangul Nav Overflow) */
html[lang="ko"] .nav-link:not(.nav-link-vip) svg,
html[lang="ko"] .nav-link:not(.nav-link-vip) i {
  display: none !important;
}

html[lang="ko"] .nav-links {
  gap: clamp(0.12rem, 0.28vw, 0.28rem) !important;
}

html[lang="ko"] .nav-link {
  font-size: clamp(0.76rem, 0.82vw, 0.84rem) !important;
  padding: 0.38rem clamp(0.38rem, 0.52vw, 0.62rem) !important;
  letter-spacing: -0.025em !important;
  gap: 0.25rem !important;
}

/* Responsive Navbar Screen Queries */
@media (max-width: 1480px) {
  .nav-link:not(.nav-link-vip) svg,
  .nav-link:not(.nav-link-vip) i {
    display: none !important;
  }
  .nav-link {
    padding: 0.38rem 0.6rem !important;
    font-size: 0.84rem !important;
  }
  .nav-links {
    gap: 0.25rem !important;
  }
}

@media (max-width: 1220px) {
  .nav-link {
    padding: 0.36rem 0.48rem !important;
    font-size: 0.8rem !important;
  }
  .nav-links {
    gap: 0.16rem !important;
  }
}

@media (max-width: 1080px) {
  .nav-links {
    display: none !important;
  }
  .nav-actions {
    margin-left: auto !important;
  }
}

/* Drawer Language Selector */
.drawer-lang-selector {
  display: flex;
  gap: 0.45rem;
  padding: 0.3rem 0.2rem 0.8rem;
}

.drawer-lang-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md, 8px);
  padding: 0.55rem 0.6rem;
  color: var(--text-dim, #94a3b8);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.drawer-lang-btn:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
  color: #fff;
}

.drawer-lang-btn.active {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.35), rgba(59, 130, 246, 0.25));
  border-color: rgba(192, 132, 252, 0.6);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.25);
}

/* ==========================================================================
   FLOWER CHEAT - BUYER PORTAL & STRICT ROLE GATE STYLES (v4080)
   ========================================================================== */

/* Buyer Section Isolation: Strict !important to prevent multiple active sections */
.buyer-section-view {
  display: none !important;
}
.buyer-section-view.active {
  display: block !important;
  animation: fadeIn 0.25s ease-out;
}

/* Global Button Dark Reset (prevents white buttonface fallback) */
button.btn-add-guide-category,
.btn-add-guide-category {
  all: unset;
  box-sizing: border-box !important;
  background: rgba(147, 51, 234, 0.12) !important;
  border: 1.5px dashed rgba(216, 180, 254, 0.35) !important;
  color: var(--color-lavender-light, #d8b4fe) !important;
  padding: 0.75rem 1rem !important;
  border-radius: var(--radius-md, 10px) !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  transition: all 0.2s ease !important;
  width: 100% !important;
  margin-top: 0.6rem !important;
}
button.btn-add-guide-category:hover,
.btn-add-guide-category:hover {
  background: rgba(147, 51, 234, 0.25) !important;
  border-color: rgba(216, 180, 254, 0.7) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3) !important;
}

/* Guide Menu Button Reset */
.guide-menu-btn {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: var(--text-body, #cbd5e1) !important;
}
.guide-menu-btn:hover {
  background: rgba(147, 51, 234, 0.15) !important;
  border-color: rgba(216, 180, 254, 0.3) !important;
  color: #fff !important;
}
.guide-menu-btn.active {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(107, 33, 168, 0.4)) !important;
  border-color: rgba(216, 180, 254, 0.6) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3) !important;
}

/* Lock Buyer Portal layout width strictly to 1160px regardless of navigation method */
.buyer-page-main,
body:has(#buyer-main-portal-wrap) main,
body:has(#sec-loader) main {
  max-width: 1160px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

/* Responsive Grid for Loaders: Clean symmetric 2 columns on desktop, 1 column on mobile */
#buyer-loaders-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.5rem !important;
  max-width: 1160px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

@media (max-width: 860px) {
  #buyer-loaders-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Layout for Guides */
.guides-layout {
  display: grid !important;
  grid-template-columns: 440px 1fr !important;
  gap: 1.6rem !important;
  align-items: start !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
}
@media (max-width: 900px) {
  .guides-layout {
    grid-template-columns: 1fr !important;
  }
}

/* Gate Screen Styling */
.buyer-gate-container {
  max-width: 680px;
  margin: 4rem auto;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, rgba(22, 17, 36, 0.95), rgba(12, 10, 22, 0.98));
  border: 1.5px solid rgba(216, 180, 254, 0.35);
  border-radius: var(--radius-xl, 20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(147, 51, 234, 0.25);
  text-align: center;
  backdrop-filter: blur(25px);
  animation: fadeIn 0.3s ease;
}

.buyer-gate-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(234, 179, 8, 0.2));
  border: 2px solid rgba(234, 179, 8, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 25px rgba(234, 179, 8, 0.3);
}

/* Hide master guide controls if user is not Master Admin */
body:not(.is-master-admin) .master-guide-control {
  display: none !important;
}

/* ==========================================================================
   BULLETPROOF ZERO-TRUST BUYER PORTAL LOCK (v4080)
   Unless body.is-verified-buyer is explicitly granted, ALL buyer components
   are completely hidden at the CSS & DOM rendering engine level.
   ========================================================================== */
.buyer-portal-locked,
body:not(.is-verified-buyer) .buyer-portal-locked,
body:not(.is-verified-buyer) #sec-loader,
body:not(.is-verified-buyer) #sec-guide,
body:not(.is-verified-buyer) #sec-board,
body:not(.is-verified-buyer) .buyer-tabs-nav,
body:not(.has-buyer-role) .nav-link-vip,
body:not(.has-buyer-role) .btn-drawer-vip,
body:not(.is-verified-buyer) .vip-hero-wrap,
body:not(.is-verified-buyer) .loader-download-card,
body:not(.is-verified-buyer) #buyer-loaders-grid,
body:not(.is-verified-buyer) .guides-layout,
body:not(.is-verified-buyer) #board-posts-container {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

body.is-verified-buyer .buyer-portal-locked {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  height: auto !important;
  overflow: visible !important;
}

body.is-verified-buyer .vip-hero-wrap {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.is-verified-buyer .buyer-tabs-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  gap: 0.6rem !important;
  background: rgba(14, 11, 24, 0.9) !important;
  border: 1px solid var(--border-card) !important;
  border-radius: var(--radius-full) !important;
  padding: 0.45rem !important;
  margin: 0 auto 2.5rem !important;
  width: fit-content !important;
  max-width: min(940px, 96vw) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5) !important;
  box-sizing: border-box !important;
}

body.is-verified-buyer .buyer-tab-btn {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.55rem !important;
  padding: 0.75rem 1.35rem !important;
  border-radius: var(--radius-full) !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  color: var(--text-muted) !important;
  font-family: var(--font-main) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  white-space: nowrap !important;
}

body.is-verified-buyer .buyer-tab-btn:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

body.is-verified-buyer .buyer-tab-btn.active {
  background: linear-gradient(135deg, #9333ea, #6b21a8) !important;
  border-color: rgba(216, 180, 254, 0.45) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.5) !important;
}

body.is-verified-buyer #sec-loader.active,
body.is-verified-buyer #sec-guide.active,
body.is-verified-buyer #sec-board.active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  height: auto !important;
}

/* Opaque Solid Gate Overlay - Prevents any background bleed */
.discord-gate-overlay {
  background: #08060f !important;
  z-index: 999999 !important;
}




/* === DEDICATED BUYER PORTAL GLOBAL STYLES === */
/* Buyer Portal Layout & Element Styles */
    .vip-hero-wrap {
      text-align: center;
      margin: 1rem auto 2.5rem;
      max-width: 800px;
    }

    .vip-badge-glow {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.4rem 1rem;
      border-radius: var(--radius-full);
      background: linear-gradient(135deg, rgba(234, 179, 8, 0.22), rgba(168, 85, 247, 0.28));
      border: 1.5px solid rgba(250, 204, 21, 0.55);
      color: #fef08a;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      box-shadow: 0 0 20px rgba(234, 179, 8, 0.35);
      margin-bottom: 1.1rem;
    }

    .buyer-tabs-nav {
      display: flex;
      gap: 0.6rem;
      background: rgba(14, 11, 24, 0.9);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-full);
      padding: 0.45rem;
      margin: 0 auto 2.5rem;
      width: fit-content;
      max-width: min(940px, 96vw);
      backdrop-filter: blur(20px);
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
      box-sizing: border-box;
    }

    .buyer-tab-btn {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      padding: 0.75rem 1.25rem;
      border-radius: var(--radius-full);
      background: transparent;
      border: 1px solid transparent;
      color: var(--text-muted);
      font-family: var(--font-main);
      font-size: 0.88rem;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }

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

    .buyer-tab-btn.active {
      background: linear-gradient(135deg, #9333ea, #6b21a8);
      border-color: rgba(216, 180, 254, 0.45);
      color: #fff;
      box-shadow: 0 4px 20px rgba(147, 51, 234, 0.5);
    }

    .buyer-section-view {
      display: none;
      animation: fadeIn 0.3s ease;
    }

    .buyer-section-view.active {
      display: block;
    }

    /* Loader Card Specifics */
    .loader-download-card {
      background: linear-gradient(135deg, rgba(22, 17, 36, 0.95), rgba(12, 10, 22, 0.98));
      border: 1.5px solid rgba(216, 180, 254, 0.35);
      border-radius: var(--radius-xl);
      padding: 2.2rem 2.4rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(147, 51, 234, 0.2);
      position: relative;
      overflow: hidden;
    }

    .hash-box {
      background: rgba(8, 6, 14, 0.9);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 0.7rem 1rem;
      font-family: var(--font-mono);
      font-size: 0.78rem;
      color: var(--color-lavender-light);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      word-break: break-all;
    }

    /* Guides Dynamic Layout */
    .guides-layout {
      display: grid !important;
      grid-template-columns: 440px 1fr !important;
      gap: 1.6rem !important;
      align-items: start !important;
    }

    .guides-menu-card {
      background: rgba(18, 14, 30, 0.85);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-xl);
      padding: 1.1rem 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      backdrop-filter: blur(20px);
      position: sticky;
      top: 90px;
    }

    .guide-menu-btn {
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 0.35rem !important;
      padding: 0.6rem 0.68rem !important;
      border-radius: var(--radius-md) !important;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--text-body);
      font-family: var(--font-main) !important;
      font-size: 0.83rem !important;
      font-weight: 700 !important;
      cursor: pointer !important;
      text-align: left !important;
      transition: var(--transition) !important;
      flex: 1 1 auto !important;
      min-width: 0 !important;
      overflow: hidden !important;
    }

    .guide-menu-btn:hover {
      background: rgba(147, 51, 234, 0.15);
      border-color: rgba(216, 180, 254, 0.3);
      color: #fff;
    }

    .guide-menu-btn.active {
      background: linear-gradient(135deg, rgba(147, 51, 234, 0.35), rgba(107, 33, 168, 0.45));
      border-color: var(--color-lavender);
      color: #fff;
      box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
    }

    .guide-detail-card {
      background: rgba(18, 14, 30, 0.85);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-xl);
      padding: 2rem 2.2rem;
      backdrop-filter: blur(20px);
    }

    .guide-step-card {
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-lg);
      padding: 1.2rem 1.4rem;
      margin-bottom: 1rem;
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
      position: relative;
      transition: var(--transition);
    }

    .guide-step-card:hover {
      background: rgba(147, 51, 234, 0.08);
      border-color: rgba(216, 180, 254, 0.25);
    }

    .guide-step-num {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: linear-gradient(135deg, #9333ea, #6b21a8);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 800;
      font-size: 0.95rem;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
    }

    .btn-add-guide-category {
      background: rgba(147, 51, 234, 0.12);
      border: 1.5px dashed rgba(216, 180, 254, 0.35);
      color: var(--color-lavender-light);
      padding: 0.65rem 0.85rem;
      border-radius: var(--radius-md);
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      width: 100%;
      margin-top: 0.6rem;
      transition: var(--transition);
    }

    .btn-add-guide-category:hover {
      background: rgba(147, 51, 234, 0.25);
      border-color: var(--color-lavender);
      color: #fff;
      box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
    }

    .btn-add-guide-step {
      background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(107, 33, 168, 0.25));
      border: 1.5px dashed rgba(216, 180, 254, 0.4);
      color: #fff;
      padding: 0.85rem 1.4rem;
      border-radius: var(--radius-lg);
      font-size: 0.88rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      width: 100%;
      margin-top: 0.8rem;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-add-guide-step:hover {
      background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(107, 33, 168, 0.45));
      border-color: var(--color-lavender);
      box-shadow: 0 0 20px rgba(147, 51, 234, 0.35);
      transform: translateY(-1px);
    }

    .btn-delete-guide-step {
      background: rgba(239, 68, 68, 0.12);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: #fca5a5;
      padding: 0.25rem 0.55rem;
      border-radius: var(--radius-sm);
      font-size: 0.72rem;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      transition: var(--transition);
      position: absolute;
      top: 12px;
      right: 12px;
    }

    .btn-delete-guide-step:hover {
      background: rgba(239, 68, 68, 0.3);
      color: #fff;
      border-color: #ef4444;
    }

    .guide-menu-btn-wrap {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      position: relative;
      width: 100%;
    }

    .guide-menu-title-span {
      display: block !important;
      flex: 1 1 auto !important;
      min-width: 0 !important;
      text-align: left !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
      white-space: nowrap !important;
      pointer-events: none !important;
      user-select: none !important;
      letter-spacing: -0.01em !important;
      line-height: 1.3 !important;
    }

    .guide-menu-btn-actions {
      display: flex !important;
      align-items: center !important;
      gap: 0.16rem !important;
      flex-shrink: 0 !important;
    }

    .btn-order-guide-menu {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(216, 180, 254, 0.18);
      color: var(--color-lavender-light);
      width: 24px !important;
      height: 24px !important;
      min-width: 24px !important;
      border-radius: var(--radius-sm);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      padding: 0;
    }

    .btn-order-guide-menu:hover:not(:disabled) {
      background: rgba(147, 51, 234, 0.35);
      border-color: var(--color-lavender);
      color: #fff;
    }

    .btn-order-guide-menu:disabled {
      opacity: 0.22;
      cursor: not-allowed;
      border-color: rgba(255, 255, 255, 0.06);
    }

    .btn-delete-guide-menu {
      background: rgba(239, 68, 68, 0.15);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: #fca5a5;
      width: 24px !important;
      height: 24px !important;
      min-width: 24px !important;
      border-radius: var(--radius-sm);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      padding: 0;
    }

    .btn-rename-guide-menu {
      background: rgba(147, 51, 234, 0.15);
      border: 1px solid rgba(216, 180, 254, 0.28);
      color: var(--color-lavender-light);
      width: 24px !important;
      height: 24px !important;
      min-width: 24px !important;
      border-radius: var(--radius-sm);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      padding: 0;
    }

    .btn-rename-guide-menu:hover {
      background: rgba(147, 51, 234, 0.45);
      border-color: #fff;
      color: #fff;
      transform: scale(1.05);
    }

    .btn-delete-guide-menu:hover {
      background: #dc2626;
      color: #fff;
    }

    .btn-order-guide-menu svg,
    .btn-order-guide-menu i,
    .btn-delete-guide-menu svg,
    .btn-delete-guide-menu i,
    .btn-rename-guide-menu svg,
    .btn-rename-guide-menu i {
      width: 11px !important;
      height: 11px !important;
    }

    /* Board Header & Controls */
    .board-header-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.6rem;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .board-cat-filters {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      flex-wrap: wrap;
    }

    .board-cat-pill {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(216, 180, 254, 0.18);
      border-radius: var(--radius-full);
      padding: 0.45rem 0.95rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition);
    }

    .board-cat-pill:hover {
      background: rgba(147, 51, 234, 0.2);
      border-color: var(--color-lavender);
      color: #fff;
    }

    .board-cat-pill.active {
      background: linear-gradient(135deg, #9333ea, #7e22ce);
      border-color: var(--color-lavender);
      color: #fff;
      box-shadow: 0 0 15px rgba(147, 51, 234, 0.35);
    }

    .board-post-card {
      background: rgba(18, 14, 30, 0.85);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-xl);
      padding: 1.6rem 1.8rem;
      margin-bottom: 1.2rem;
      backdrop-filter: blur(20px);
      transition: var(--transition);
    }

    .board-post-card:hover {
      border-color: rgba(216, 180, 254, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .board-post-tag {
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.2rem 0.55rem;
      border-radius: 4px;
      background: rgba(147, 51, 234, 0.25);
      color: var(--color-lavender-light);
      border: 1px solid rgba(216, 180, 254, 0.35);
    }

    .board-post-tag.notice, .board-post-tag.notice-global {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(185, 28, 28, 0.35));
      color: #fecaca;
      border-color: rgba(248, 113, 113, 0.55);
      box-shadow: 0 0 10px rgba(239, 68, 68, 0.25);
    }

    .board-post-tag.notice-buyer {
      background: linear-gradient(135deg, rgba(234, 179, 8, 0.22), rgba(147, 51, 234, 0.35));
      color: #fef08a;
      border-color: rgba(250, 204, 21, 0.55);
      box-shadow: 0 0 12px rgba(234, 179, 8, 0.3);
    }

    .board-post-actions {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-top: 1.1rem;
      padding-top: 0.9rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .board-action-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: transparent;
      border: none;
      color: var(--text-muted);
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .board-action-btn:hover {
      color: var(--color-lavender-light);
    }

    .board-action-btn.liked {
      color: #f43f5e;
    }

    .board-action-delete-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      background: rgba(239, 68, 68, 0.12);
      border: 1px solid rgba(239, 68, 68, 0.35);
      color: #fca5a5;
      font-size: 0.74rem;
      font-weight: 700;
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: var(--transition);
    }

    .board-action-delete-btn:hover {
      background: rgba(239, 68, 68, 0.3);
      border-color: #ef4444;
      color: #fff;
    }

    .board-comments-section {
      margin-top: 1.1rem;
      padding-top: 1rem;
      border-top: 1px dashed rgba(255, 255, 255, 0.08);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .comment-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: var(--radius-md);
      padding: 0.8rem 1rem;
      font-size: 0.84rem;
    }

    /* Modal Form Custom Styles */
    .modal-dark-input, .modal-dark-textarea, .modal-dark-select {
      width: 100%;
      box-sizing: border-box;
      background: rgba(10, 8, 16, 0.92) !important;
      border: 1px solid rgba(216, 180, 254, 0.28) !important;
      border-radius: var(--radius-md) !important;
      padding: 0.75rem 1rem !important;
      color: #ffffff !important;
      font-family: var(--font-main) !important;
      font-size: 0.88rem !important;
      outline: none !important;
      transition: var(--transition) !important;
    }

    .modal-dark-input:focus, .modal-dark-textarea:focus, .modal-dark-select:focus {
      border-color: var(--color-lavender) !important;
      box-shadow: 0 0 14px rgba(216, 180, 254, 0.3) !important;
    }

    @media (max-width: 860px) {
      .guides-layout {
        grid-template-columns: 1fr;
      }
      .guides-menu-card {
        position: static;
      }
    }

/* ==========================================================================
   Smooth Page Navigation & Window Motion System (FlowerSmoothMotion)
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

main {
  will-change: opacity, transform;
}

/* Page Exit: Buttery fade-out & subtle lift */
.flower-page-exit {
  opacity: 0 !important;
  transform: translateY(-8px) scale(0.996) !important;
  transition: opacity 0.12s cubic-bezier(0.4, 0, 1, 1), transform 0.12s cubic-bezier(0.4, 0, 1, 1) !important;
  pointer-events: none !important;
}

/* Page Entrance: Silky spring glide into position */
.flower-page-enter {
  animation: flowerPageIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

@keyframes flowerPageIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.996);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Smooth Tab & Section Content Transitions */
.tab-pane.active,
.buyer-section-view.active,
.reseller-section-view.active {
  display: block !important;
  animation: flowerTabIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

@keyframes flowerTabIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.995);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Staggered Cascade for Drawer Menu Items */
.flower-hamburger-drawer.active .drawer-item,
.flower-hamburger-drawer.active .drawer-section-title {
  animation: drawerItemSlide 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.flower-hamburger-drawer.active .drawer-item:nth-of-type(1) { animation-delay: 0.03s; }
.flower-hamburger-drawer.active .drawer-item:nth-of-type(2) { animation-delay: 0.06s; }
.flower-hamburger-drawer.active .drawer-item:nth-of-type(3) { animation-delay: 0.09s; }
.flower-hamburger-drawer.active .drawer-item:nth-of-type(4) { animation-delay: 0.12s; }
.flower-hamburger-drawer.active .drawer-item:nth-of-type(5) { animation-delay: 0.15s; }
.flower-hamburger-drawer.active .drawer-item:nth-of-type(6) { animation-delay: 0.18s; }
.flower-hamburger-drawer.active .drawer-item:nth-of-type(7) { animation-delay: 0.21s; }

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


/* ===================================================================
   생성된 유틸리티 클래스 — style-convert.js 산출물, 직접 수정하지 마세요.

   인라인 style="..." 을 옮긴 것입니다. CSP 에서 style-src 의
   'unsafe-inline' 을 제거하기 위한 변환이며, 인라인 스타일이 갖던
   우선순위를 최대한 보존하려고 클래스를 두 번 겹쳐(.fxN.fxN, 0-2-0)
   시트 맨 끝에 둡니다.
   =================================================================== */
.fx1.fx1{display: none !important;}
.fx2.fx2{display: block;}
.fx3.fx3{width: 95%; max-width: 1600px; margin: 3.2rem auto 0; padding: 0 1.5rem; box-sizing: border-box;}
.fx4.fx4{background: linear-gradient(135deg, rgba(30, 18, 52, 0.9), rgba(16, 12, 28, 0.95)); border: 1.5px solid rgba(216, 180, 254, 0.32); border-radius: var(--radius-lg); padding: 0.95rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; box-shadow: 0 10px 30px rgba(0,0,0,0.45); backdrop-filter: blur(20px);}
.fx5.fx5{display: flex; align-items: center; gap: 0.85rem; flex: 1; min-width: 260px;}
.fx6.fx6{display: inline-flex; align-items: center; gap: 0.4rem; background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; font-size: 0.72rem; font-weight: 800; padding: 0.25rem 0.65rem; border-radius: 4px; box-shadow: 0 0 10px rgba(239,68,68,0.4); white-space: nowrap;}
.fx7.fx7{font-size: 0.88rem; font-weight: 700; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.fx8.fx8{display: flex; align-items: center; gap: 0.75rem;}
.fx9.fx9{font-size: 0.75rem; color: var(--text-dim); font-family: var(--font-mono);}
.fx10.fx10{font-size: 0.76rem; padding: 0.4rem 0.85rem; white-space: nowrap; border-color: var(--color-lavender); color: #fff;}
.fx11.fx11{margin-bottom: 5.5rem;}
.fx12.fx12{flex: 1; justify-content: center; font-size: 0.85rem;}
.fx13.fx13{font-size: 0.85rem; padding: 0.55rem 0.9rem;}
.fx14.fx14{margin-bottom: 5rem;}
.fx15.fx15{max-width: 680px; width: 100%; padding: 2.2rem; background: linear-gradient(135deg, rgba(24, 16, 42, 0.98), rgba(12, 9, 24, 0.99)); border: 1.5px solid rgba(216, 180, 254, 0.35); box-shadow: 0 25px 70px rgba(0,0,0,0.8), 0 0 35px rgba(147, 51, 234, 0.25); border-radius: var(--radius-xl);}
.fx16.fx16{margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between;}
.fx17.fx17{font-size: 1.25rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 0.6rem; margin: 0;}
.fx18.fx18{background: rgba(239, 68, 68, 0.2); color: #f87171; padding: 0.2rem 0.5rem; border-radius: 6px; font-size: 0.85rem; font-weight: 800; border: 1px solid rgba(239, 68, 68, 0.4);}
.fx19.fx19{background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer;}
.fx20.fx20{display: flex; flex-direction: column; gap: 1rem; max-height: 520px; overflow-y: auto; padding-right: 0.3rem;}
.fx21.fx21{color: #fef08a; font-weight: 700;}
.fx22.fx22{color: var(--color-lavender); font-weight: 600;}
.fx23.fx23{margin-top: -1rem; margin-bottom: 4.5rem;}
.fx24.fx24{scroll-margin-top: 90px;}
.fx25.fx25{position: fixed; top: -500px; left: -500px; width: 1px; height: 1px; opacity: 0.01; z-index: -9999;}
.fx26.fx26{padding: 3rem 2rem 1.8rem;}
.fx27.fx27{margin-top: 3.5rem;}
.fx28.fx28{margin-bottom: 2.5rem; justify-content: center;}
.fx29.fx29{position: relative; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer;}
.fx30.fx30{min-width: 0; flex: 1;}
.fx31.fx31{display: flex; align-items: center; gap: 0.5rem; flex-wrap: nowrap; margin-bottom: 0.2rem;}
.fx32.fx32{margin: 0; font-size: 1.2rem; font-weight: 800; color: #fff; white-space: nowrap;}
.fx33.fx33{font-size: 0.68rem; padding: 0.12rem 0.45rem; white-space: nowrap; flex-shrink: 0;}
.fx34.fx34{padding: 1.1rem 1.4rem; background: rgba(0,0,0,0.45); border-radius: var(--radius-md); border: 1px solid rgba(216,180,254,0.15); margin-bottom: 0.9rem;}
.fx35.fx35{display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; gap: 0.6rem;}
.fx36.fx36{font-size: 0.84rem; color: var(--text-muted); font-weight: 600; white-space: nowrap;}
.fx37.fx37{font-size: 0.98rem; font-weight: 800; display: flex; align-items: center; gap: 0.4rem; white-space: nowrap; flex-shrink: 0; letter-spacing: 0.02em;}
.fx38.fx38{margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; color: var(--text-dim); font-size: 0.75rem;}
.fx39.fx39{display: flex; align-items: center; gap: 0.35rem;}
.fx40.fx40{display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #34d399;}
.fx41.fx41{display: flex; align-items: center; gap: 0.25rem; color: var(--color-lavender); font-weight: 600; font-size: 0.78rem;}
.fx42.fx42{margin-top: 5rem;}
.fx43.fx43{margin-bottom: 2.5rem;}
.fx44.fx44{padding: 3.5rem 2rem 1.8rem;}
.fx45.fx45{width: 28px; height: 28px;}
.fx46.fx46{opacity: 0.85; font-size: 0.82rem;}
.fx47.fx47{white-space: nowrap; padding: 0.75rem 1.4rem;}
.fx48.fx48{margin-bottom: 4.5rem;}
.fx49.fx49{grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); max-width: 900px; margin: 0 auto;}
.fx50.fx50{background: rgba(147, 51, 234, 0.25); border-color: var(--color-lavender); color: #fef08a;}
.fx51.fx51{font-size: 1.6rem; color: #fff;}
.fx52.fx52{margin-top: -0.5rem; margin-bottom: 3.5rem;}
.fx53.fx53{background: rgba(59, 130, 246, 0.2); border-color: rgba(96, 165, 250, 0.4); color: #93c5fd;}
.fx54.fx54{margin-bottom: 4.5rem; max-width: 860px;}
.fx55.fx55{margin-top: 3rem;}
.fx56.fx56{width: 24px; height: 24px;}
.fx57.fx57{margin-bottom: 4rem;}
.fx58.fx58{margin-bottom: 0.35rem; display: inline-block;}
.fx59.fx59{font-size: 1.35rem; font-weight: 800; color: #fff; margin-bottom: 0.3rem;}
.fx60.fx60{font-size: 0.88rem; color: var(--text-muted); line-height: 1.5;}
.fx61.fx61{max-width: 1160px; margin: 0 auto !important; width: 100%; padding: 6.5rem 1.5rem 5rem; box-sizing: border-box;}
.fx62.fx62{width: 16px; height: 16px; color: #facc15;}
.fx63.fx63{font-size: 2.35rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 0.6rem;}
.fx64.fx64{font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; word-break: keep-all; margin: 0 auto; max-width: 650px;}
.fx65.fx65{width: 18px; height: 18px;}
.fx66.fx66{display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.4rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border-subtle);}
.fx67.fx67{display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.35rem; flex-wrap: wrap;}
.fx68.fx68{font-size: 1.5rem; font-weight: 800; color: #fff;}
.fx69.fx69{background: rgba(147, 51, 234, 0.25); border-color: var(--color-lavender);}
.fx70.fx70{font-size: 0.75rem;}
.fx71.fx71{font-size: 0.85rem; color: var(--text-dim); margin-bottom: 0;}
.fx72.fx72{display: flex; align-items: center; gap: 0.6rem;}
.fx73.fx73{font-size: 0.75rem; color: var(--color-lavender-light); background: rgba(147, 51, 234, 0.15); border: 1px solid rgba(216, 180, 254, 0.25); padding: 0.3rem 0.65rem; border-radius: 6px; display: inline-flex; align-items: center; gap: 0.35rem;}
.fx74.fx74{width: 13px; height: 13px; color: #34d399;}
.fx75.fx75{width: 100%; height: 170px; border-radius: 12px; overflow: hidden; margin-bottom: 1.1rem; position: relative; border: 1px solid rgba(216, 180, 254, 0.25); background: #000;}
.fx76.fx76{width: 100%; height: 100%; object-fit: cover;}
.fx77.fx77{position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(10,5,20,0.88) 100%);}
.fx78.fx78{position: absolute; top: 10px; left: 10px;}
.fx79.fx79{background: rgba(0,0,0,0.75); backdrop-filter: blur(8px); border-color: var(--color-lavender);}
.fx80.fx80{position: absolute; top: 10px; right: 10px;}
.fx81.fx81{font-size: 0.72rem; padding: 0.15rem 0.55rem;}
.fx82.fx82{display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.45rem; flex-wrap: wrap; gap: 0.4rem;}
.fx83.fx83{font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0;}
.fx84.fx84{font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 4px; color: var(--color-lavender); background: rgba(147, 51, 234, 0.15);}
.fx85.fx85{display: flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; color: var(--color-lavender-light); background: rgba(147, 51, 234, 0.14); border: 1px solid rgba(216, 180, 254, 0.22); padding: 0.4rem 0.7rem; border-radius: 6px; margin-bottom: 1.1rem;}
.fx86.fx86{width: 13px; height: 13px; color: #34d399; flex-shrink: 0;}
.fx87.fx87{color: #fff;}
.fx88.fx88{width: 100%; justify-content: center; gap: 0.5rem; padding: 0.75rem 1rem; font-weight: 700;}
.fx89.fx89{width: 16px; height: 16px;}
.fx90.fx90{padding: 0.4rem 0.5rem 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 0.6rem; display: flex; align-items: center; justify-content: space-between;}
.fx91.fx91{font-size: 0.82rem; font-weight: 800; color: var(--color-lavender-light);}
.fx92.fx92{display: none; padding: 0.2rem 0.55rem; font-size: 0.72rem; background: rgba(147, 51, 234, 0.15); border-color: rgba(216, 180, 254, 0.3); color: var(--color-lavender-light);}
.fx93.fx93{display: flex; flex-direction: column; gap: 0.45rem;}
.fx94.fx94{flex: 1; min-width: 0;}
.fx95.fx95{width: 14px; height: 14px; opacity: 0.6; margin-left: auto; flex-shrink: 0;}
.fx96.fx96{width: 13px; height: 13px;}
.fx97.fx97{width: 15px; height: 15px;}
.fx98.fx98{display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; flex-wrap: wrap; gap: 0.6rem;}
.fx99.fx99{background: rgba(147, 51, 234, 0.2); border-color: var(--color-lavender);}
.fx100.fx100{font-size: 1.55rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; letter-spacing: -0.02em;}
.fx101.fx101{font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.8rem; line-height: 1.55; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 1.2rem;}
.fx102.fx102{display: flex; flex-direction: column; gap: 0.8rem;}
.fx103.fx103{flex: 1; padding-right: 2rem;}
.fx104.fx104{font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.35rem;}
.fx105.fx105{font-size: 0.86rem; color: var(--text-body); line-height: 1.6; white-space: pre-line;}
.fx106.fx106{width: 12px; height: 12px;}
.fx107.fx107{font-size: 0.88rem; padding: 0.65rem 1.2rem;}
.fx108.fx108{padding: 4rem 1rem; text-align: center; color: var(--text-dim); font-size: 0.88rem; background: rgba(18, 14, 30, 0.5); border: 1px dashed rgba(216, 180, 254, 0.2); border-radius: var(--radius-xl);}
.fx109.fx109{width: 38px; height: 38px; opacity: 0.35; margin-bottom: 0.8rem;}
.fx110.fx110{font-weight: 600; color: #fff; margin-bottom: 0.2rem;}
.fx111.fx111{font-size: 0.8rem; opacity: 0.7;}
.fx112.fx112{max-width: 520px; width: 100%; padding: 2.2rem; background: linear-gradient(135deg, rgba(22, 16, 38, 0.98), rgba(12, 9, 22, 0.99)); border: 1.5px solid rgba(216, 180, 254, 0.35); box-shadow: 0 25px 70px rgba(0,0,0,0.8), 0 0 35px rgba(147, 51, 234, 0.25); border-radius: var(--radius-xl); max-height: 90vh; overflow-y: auto;}
.fx113.fx113{margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.06);}
.fx114.fx114{font-size: 1.2rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 0.5rem;}
.fx115.fx115{color: var(--color-lavender);}
.fx116.fx116{background: rgba(88, 101, 242, 0.12); border: 1px solid rgba(88, 101, 242, 0.35); border-radius: var(--radius-md); padding: 0.75rem 1rem; margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: space-between;}
.fx117.fx117{width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid #5865F2; object-fit: cover;}
.fx118.fx118{display: flex; flex-direction: column; text-align: left;}
.fx119.fx119{font-size: 0.86rem; font-weight: 700; color: #fff;}
.fx120.fx120{font-size: 0.72rem; color: #34d399; font-weight: 600;}
.fx121.fx121{font-size: 0.72rem; color: var(--text-dim); font-family: var(--font-mono);}
.fx122.fx122{display: flex; flex-direction: column; gap: 1rem;}
.fx123.fx123{text-align: left;}
.fx124.fx124{font-size: 0.82rem; font-weight: 700; color: var(--color-lavender-light); display: block; margin-bottom: 0.4rem;}
.fx125.fx125{display: none;}
.fx126.fx126{display: none; margin-bottom: 0.5rem; align-items: center; gap: 0.65rem;}
.fx127.fx127{display: none; width: 32px; height: 32px; border-radius: 6px; background: rgba(147, 51, 234, 0.25); border: 1px solid rgba(216, 180, 254, 0.35); align-items: center; justify-content: center; color: var(--color-lavender);}
.fx128.fx128{font-size: 0.8rem; color: #fff; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.fx129.fx129{font-size: 0.8rem; padding: 0.5rem 0.9rem;}
.fx130.fx130{width: 14px; height: 14px;}
.fx131.fx131{display: flex; gap: 0.8rem; margin-top: 0.8rem;}
.fx132.fx132{flex: 1; padding: 0.75rem;}
.fx133.fx133{flex: 2; justify-content: center; font-weight: 700; padding: 0.75rem;}
.fx134.fx134{background: none; border: none; overflow: visible;}
.fx135.fx135{width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 8px rgba(168,85,247,0.6));}
.fx136.fx136{display: none; position: static; margin-left: auto;}
.fx137.fx137{margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border-subtle);}
.fx138.fx138{width: 100%; justify-content: center; font-size: 0.82rem;}
.fx139.fx139{flex-wrap: wrap; gap: 1rem;}
.fx140.fx140{display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;}
.fx141.fx141{flex-wrap: wrap; gap: 0.75rem;}
.fx142.fx142{display: none; align-items: center; gap: 0.5rem; background: rgba(0,0,0,0.5); padding: 0.35rem 0.65rem; border-radius: var(--radius-md); border: 1px solid rgba(216,180,254,0.2);}
.fx143.fx143{width: 16px; height: 16px; color: var(--color-lavender);}
.fx144.fx144{font-size: 0.75rem; color: var(--text-dim); white-space: nowrap;}
.fx145.fx145{padding: 0.25rem 0.6rem; font-size: 0.78rem; width: auto; background: rgba(15,12,25,0.9); border-color: rgba(216,180,254,0.3);}
.fx146.fx146{display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.35rem 0.75rem; border-radius: 9999px; background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.3); font-size: 0.78rem; font-weight: 600; color: #10b981; transition: all 0.2s;}
.fx147.fx147{width: 7px; height: 7px; border-radius: 50%; background: #10b981;}
.fx148.fx148{display: none; margin-bottom: 1.5rem; padding: 0.85rem 1.2rem; border-radius: var(--radius-md); font-size: 0.84rem; line-height: 1.45; align-items: center; justify-content: space-between; gap: 1rem;}
.fx149.fx149{display: flex; align-items: center; gap: 0.65rem;}
.fx150.fx150{width: 20px; height: 20px; flex-shrink: 0;}
.fx151.fx151{display: none; flex-shrink: 0; padding: 0.35rem 0.85rem; font-size: 0.78rem; font-weight: 700; background: rgba(168,85,247,0.25); border: 1px solid #a855f7; border-radius: 6px; color: #fff; cursor: pointer; transition: all 0.2s;}
.fx152.fx152{padding: 1.4rem; margin-bottom: 0;}
.fx153.fx153{display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem;}
.fx154.fx154{margin-bottom: 0;}
.fx155.fx155{font-size: 0.8rem;}
.fx156.fx156{font-size: 0.82rem; font-weight: 700; color: var(--color-lavender);}
.fx157.fx157{font-size: 0.75rem; color: var(--text-dim);}
.fx158.fx158{padding: 2rem 1rem; text-align: center; color: var(--text-dim); font-size: 0.82rem;}
.fx159.fx159{display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--text-dim); gap: 0.6rem; padding: 3rem;}
.fx160.fx160{width: 38px; height: 38px; opacity: 0.35;}
.fx161.fx161{font-size: 0.9rem; font-weight: 600;}
.fx162.fx162{font-size: 0.78rem; opacity: 0.7;}
.fx163.fx163{display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; flex-wrap: wrap; gap: 0.8rem;}
.fx164.fx164{font-size: 0.82rem;}
.fx165.fx165{display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.8rem; margin-bottom: 1.5rem;}
.fx166.fx166{background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.35); border-radius: var(--radius-md); padding: 0.85rem 1.1rem; display: flex; align-items: center; justify-content: space-between;}
.fx167.fx167{font-size: 0.78rem; color: #a7f3d0;}
.fx168.fx168{font-size: 0.88rem; font-weight: 800; color: #34d399; font-family: var(--font-mono); background: rgba(16, 185, 129, 0.2); padding: 0.2rem 0.6rem; border-radius: 999px;}
.fx169.fx169{background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.35); border-radius: var(--radius-md); padding: 0.85rem 1.1rem; display: flex; align-items: center; justify-content: space-between;}
.fx170.fx170{font-size: 0.78rem; color: #fde68a;}
.fx171.fx171{font-size: 0.88rem; font-weight: 800; color: #fbbf24; font-family: var(--font-mono); background: rgba(245, 158, 11, 0.2); padding: 0.2rem 0.6rem; border-radius: 999px;}
.fx172.fx172{background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.35); border-radius: var(--radius-md); padding: 0.85rem 1.1rem; display: flex; align-items: center; justify-content: space-between;}
.fx173.fx173{font-size: 0.78rem; color: #fca5a5;}
.fx174.fx174{font-size: 0.88rem; font-weight: 800; color: #f87171; font-family: var(--font-mono); background: rgba(239, 68, 68, 0.2); padding: 0.2rem 0.6rem; border-radius: 999px;}
.fx175.fx175{display: flex; flex-direction: column; gap: 0.75rem;}
.fx176.fx176{flex: 1;}
.fx177.fx177{font-size: 0.78rem; margin-bottom: 0.25rem;}
.fx178.fx178{display: flex; align-items: center; gap: 0.5rem;}
.fx179.fx179{background: rgba(255,255,255,0.04); color: #c4b5fd; font-weight: 600; cursor: default; border: 1px solid rgba(168, 85, 247, 0.25); height: 38px; font-size: 0.84rem;}
.fx180.fx180{font-size: 0.72rem; color: #a78bfa; white-space: nowrap; padding: 0.25rem 0.5rem; background: rgba(168, 85, 247, 0.1); border-radius: 4px; border: 1px solid rgba(168, 85, 247, 0.25);}
.fx181.fx181{flex: 2;}
.fx182.fx182{height: 38px; font-size: 0.84rem;}
.fx183.fx183{min-height: 75px; font-size: 0.84rem; padding: 0.6rem 0.8rem;}
.fx184.fx184{display: flex; gap: 0.6rem; align-items: center;}
.fx185.fx185{flex: 1; height: 36px; font-size: 0.82rem;}
.fx186.fx186{font-size: 0.78rem; height: 36px; padding: 0 0.85rem; white-space: nowrap;}
.fx187.fx187{display: none; font-size: 0.74rem; color: var(--color-lavender); margin-top: 0.25rem;}
.fx188.fx188{display: flex; justify-content: flex-end; margin-top: 0.2rem;}
.fx189.fx189{background: linear-gradient(135deg, #3b82f6, #9333ea); border: none; font-weight: 700; padding: 0.55rem 1.2rem; font-size: 0.84rem;}
.fx190.fx190{font-weight: 700; padding: 0.55rem 1.2rem; font-size: 0.84rem;}
.fx191.fx191{display: flex; gap: 0.75rem; align-items: center;}
.fx192.fx192{font-size: 0.8rem; white-space: nowrap;}
.fx193.fx193{margin-top: 0.6rem; max-width: 280px; height: 120px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-subtle); background: #000;}
.fx194.fx194{display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem;}
.fx195.fx195{display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.1rem;}
.fx196.fx196{display: flex; flex-direction: column; gap: 1.2rem;}
.fx197.fx197{background: rgba(168, 85, 247, 0.08); border: 1px solid rgba(216, 180, 254, 0.3); border-radius: var(--radius-md); padding: 1.2rem;}
.fx198.fx198{display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem;}
.fx199.fx199{font-size: 0.78rem; color: var(--color-lavender);}
.fx200.fx200{background: rgba(234, 179, 8, 0.08); border: 1px solid rgba(253, 224, 71, 0.3); border-radius: var(--radius-md); padding: 1.2rem;}
.fx201.fx201{font-size: 0.78rem; color: #fde047;}
.fx202.fx202{background: rgba(59, 130, 246, 0.08); border: 1px solid rgba(147, 197, 253, 0.3); border-radius: var(--radius-md); padding: 1.2rem;}
.fx203.fx203{font-size: 0.78rem; color: #93c5fd;}
.fx204.fx204{background: rgba(14, 165, 233, 0.08); border: 1px solid rgba(125, 211, 252, 0.3); border-radius: var(--radius-md); padding: 1.2rem;}
.fx205.fx205{font-size: 0.78rem; color: #7dd3fc;}
.fx206.fx206{background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(110, 231, 183, 0.3); border-radius: var(--radius-md); padding: 1.2rem;}
.fx207.fx207{font-size: 0.78rem; color: #6ee7b7;}
.fx208.fx208{background: rgba(234, 179, 8, 0.08); border: 1px solid rgba(250, 204, 21, 0.35); border-radius: var(--radius-md); padding: 1.2rem;}
.fx209.fx209{background: linear-gradient(135deg, rgba(234, 179, 8, 0.25), rgba(168, 85, 247, 0.25)); border: 1.5px solid #facc15; color: #fef08a; font-size: 0.82rem; font-weight: 800; padding: 0.25rem 0.65rem; border-radius: 9999px;}
.fx210.fx210{font-size: 0.78rem; color: #fef08a;}
.fx211.fx211{background: rgba(168, 85, 247, 0.2); border: 1px solid #c084fc; color: #e9d5ff; font-size: 0.82rem; font-weight: 700; padding: 0.25rem 0.65rem; border-radius: 9999px;}
.fx212.fx212{background: rgba(234, 179, 8, 0.2); border: 1px solid #facc15; color: #fef08a; font-size: 0.82rem; font-weight: 700; padding: 0.25rem 0.65rem; border-radius: 9999px;}
.fx213.fx213{background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.35); border-radius: var(--radius-md); padding: 1.2rem;}
.fx214.fx214{background: rgba(16, 185, 129, 0.2); border: 1px solid #34d399; color: #a7f3d0; font-size: 0.82rem; font-weight: 700; padding: 0.25rem 0.65rem; border-radius: 9999px;}
.fx215.fx215{display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0.85rem;}
.fx216.fx216{background: rgba(0,0,0,0.4); border: 1px solid rgba(216,180,254,0.18); border-radius: var(--radius-md); padding: 0.85rem 1rem;}
.fx217.fx217{color: #d8b4fe; font-weight: 700; font-size: 0.85rem;}
.fx218.fx218{font-size: 0.78rem; color: var(--text-dim); margin-top: 0.3rem;}
.fx219.fx219{color: #93c5fd; font-weight: 700; font-size: 0.85rem;}
.fx220.fx220{color: #6ee7b7; font-weight: 700; font-size: 0.85rem;}
.fx221.fx221{background: rgba(0,0,0,0.4); border: 1px solid rgba(250,204,21,0.25); border-radius: var(--radius-md); padding: 0.85rem 1rem;}
.fx222.fx222{color: #fef08a; font-weight: 700; font-size: 0.85rem;}
.fx223.fx223{color: #fca5a5; font-weight: 700; font-size: 0.85rem;}
.fx224.fx224{color: #a78bfa; font-weight: 700; font-size: 0.85rem;}
.fx225.fx225{color: #34d399; font-weight: 700; font-size: 0.85rem;}
.fx226.fx226{color: #e2e8f0; font-weight: 700; font-size: 0.85rem;}
.fx227.fx227{background: rgba(88, 101, 242, 0.08); border: 1px solid rgba(88, 101, 242, 0.25); border-radius: var(--radius-md); padding: 1rem 1.2rem; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: space-between;}
.fx228.fx228{display: flex; align-items: center; gap: 0.8rem;}
.fx229.fx229{width: 10px; height: 10px; border-radius: 50%; background: #10b981; box-shadow: 0 0 10px #10b981;}
.fx230.fx230{color: #fff; font-size: 0.9rem;}
.fx231.fx231{font-size: 0.78rem; color: var(--text-dim); margin-top: 0.15rem;}
.fx232.fx232{display: flex; gap: 0.6rem;}
.fx233.fx233{font-size: 0.78rem; padding: 0.4rem 0.8rem;}
.fx234.fx234{display: flex; align-items: center; gap: 0.5rem; cursor: pointer;}
.fx235.fx235{width: 16px; height: 16px; accent-color: #9333ea;}
.fx236.fx236{display: flex; align-items: center; gap: 0.6rem; color: var(--color-lavender); font-size: 0.85rem;}
.fx237.fx237{max-width: 400px; text-align: center; padding: 2rem 1.6rem; border-color: rgba(216, 180, 254, 0.4);}
.fx238.fx238{width: 50px; height: 50px; border-radius: 50%; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; color: #f87171;}
.fx239.fx239{font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.45rem;}
.fx240.fx240{font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1.6rem;}
.fx241.fx241{display: flex; gap: 0.8rem; justify-content: center;}
.fx242.fx242{flex: 1; padding: 0.6rem 1rem;}
.fx243.fx243{flex: 1; padding: 0.6rem 1rem; background: #dc2626; color: #fff; border: 1px solid #ef4444; font-weight: 700;}
.fx244.fx244{max-width: 460px; padding: 1.8rem;}
.fx245.fx245{display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 0.8rem;}
.fx246.fx246{width: 32px; height: 32px; border-radius: 8px; background: rgba(147, 51, 234, 0.2); border: 1px solid rgba(216,180,254,0.4); display: flex; align-items: center; justify-content: center; color: var(--color-lavender);}
.fx247.fx247{font-size: 1.1rem; font-weight: 700; color: #fff;}
.fx248.fx248{font-size: 0.75rem; color: var(--text-dim); margin-top: 2px;}
.fx249.fx249{background: none; border: none; color: var(--text-dim); cursor: pointer; padding: 4px;}
.fx250.fx250{margin-bottom: 1rem;}
.fx251.fx251{display: block; font-size: 0.75rem; font-weight: 600; color: var(--color-lavender); margin-bottom: 0.4rem;}
.fx252.fx252{display: block; font-size: 0.8rem; font-weight: 600; color: #e2e8f0; margin-bottom: 0.35rem;}
.fx253.fx253{color: #f87171;}
.fx254.fx254{width: 100%; border-radius: var(--radius-md); padding: 0.65rem 0.9rem;}
.fx255.fx255{margin-bottom: 1.4rem;}
.fx256.fx256{display: flex; gap: 0.8rem; justify-content: flex-end;}
.fx257.fx257{padding: 0.6rem 1.2rem;}
.fx258.fx258{padding: 0.6rem 1.4rem;}
.fx259.fx259{max-width: 440px; padding: 1.6rem;}
.fx260.fx260{display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 0.7rem;}
.fx261.fx261{width: 30px; height: 30px; border-radius: 6px; background: rgba(147, 51, 234, 0.2); border: 1px solid rgba(216,180,254,0.4); display: flex; align-items: center; justify-content: center; color: var(--color-lavender);}
.fx262.fx262{font-size: 1.05rem; font-weight: 700; color: #fff;}
.fx263.fx263{margin-bottom: 0.9rem;}
.fx264.fx264{display: block; font-size: 0.75rem; font-weight: 600; color: var(--color-lavender); margin-bottom: 0.35rem;}
.fx265.fx265{display: flex; gap: 0.35rem; flex-wrap: wrap;}
.fx266.fx266{background: rgba(255,255,255,0.05); border: 1px solid rgba(216,180,254,0.25); border-radius: 4px; color: #fff; padding: 0.3rem 0.5rem; font-size: 0.9rem; cursor: pointer; transition: 0.2s;}
.fx267.fx267{margin-bottom: 1.2rem;}
.fx268.fx268{display: flex; gap: 0.7rem; justify-content: flex-end;}
.fx269.fx269{padding: 0.55rem 1.1rem;}
.fx270.fx270{padding: 0.55rem 1.3rem;}
.fx271.fx271{max-width: 540px; padding: 1.8rem;}
.fx272.fx272{width: 34px; height: 34px; border-radius: 8px; background: rgba(147, 51, 234, 0.2); border: 1px solid rgba(216,180,254,0.4); display: flex; align-items: center; justify-content: center; color: var(--color-lavender);}
.fx273.fx273{font-size: 1.15rem; font-weight: 700; color: #fff;}
.fx274.fx274{margin-bottom: 1.1rem;}
.fx275.fx275{font-size: 0.78rem; font-weight: 700; color: var(--color-lavender); margin: 0;}
.fx276.fx276{display: flex; gap: 0.4rem;}
.fx277.fx277{width: 100%; border-radius: var(--radius-md); padding: 0.65rem 0.9rem; resize: vertical;}
.fx278.fx278{display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-dim); margin-bottom: 0.35rem;}
.fx279.fx279{display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.85rem; background: rgba(255,255,255,0.03); border: 1px dashed rgba(216,180,254,0.3); border-radius: var(--radius-md); cursor: pointer; font-size: 0.76rem; color: var(--color-lavender);}
.fx280.fx280{display: none; margin-top: 0.5rem; position: relative; width: fit-content; max-width: 100%;}
.fx281.fx281{max-height: 80px; border-radius: 6px; border: 1px solid rgba(216,180,254,0.4); display: none;}
.fx282.fx282{display: none; margin-top: 0;}
.fx283.fx283{position: absolute; top: -6px; right: -6px; width: 18px; height: 18px; border-radius: 50%; background: #ef4444; color: #fff; border: none; font-size: 11px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10;}
.fx284.fx284{grid-column: 1 / -1; padding: 3rem 1rem; text-align: center; color: var(--text-dim); font-size: 0.88rem; border: 1px dashed rgba(216,180,254,0.2); border-radius: var(--radius-xl);}
.fx285.fx285{display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap;}
.fx286.fx286{margin-top: 0.18rem;}
.fx287.fx287{width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;}
.fx288.fx288{width: 28px; height: 28px; display: none;}
.fx289.fx289{max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.78rem;}
.fx290.fx290{margin-right:2px;}
.fx291.fx291{font-weight: 800; font-size: 0.9rem; color: #fff;}
.fx292.fx292{font-size: 0.68rem; margin-left: auto;}
.fx293.fx293{font-size: 0.78rem; color: rgba(255, 255, 255, 0.8); margin: 0.45rem 0 0.8rem 0; line-height: 1.5;}
.fx294.fx294{width: 100%; justify-content: center; font-size: 0.82rem; padding: 0.55rem 1rem; border-radius: 8px; gap: 0.4rem;}
.fx295.fx295{width: 16px; height: 16px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(216,180,254,0.4);}
.fx296.fx296{width: 14px; height: 14px; color: var(--color-lavender);}
.fx297.fx297{display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700; color: #d8b4fe;}
.fx298.fx298{width: 16px; height: 16px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(216,180,254,0.3);}
.fx299.fx299{width: 13px; height: 13px; color: #e9d5ff;}
.fx300.fx300{display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700; color: #e9d5ff; align-self: flex-end; margin-bottom: 0.2rem;}
.fx301.fx301{font-size: 0.72rem; padding: 0.2rem 0.6rem; text-decoration: none;}
.fx302.fx302{color: #34d399;}
.fx303.fx303{padding: 3rem 1rem; text-align: center; color: var(--text-dim); font-size: 0.85rem;}
.fx304.fx304{font-size: 0.78rem; color: var(--text-muted);}
.fx305.fx305{font-size: 0.82rem; padding: 0.55rem 1rem;}
.fx306.fx306{color: var(--color-lavender); text-decoration: underline;}
.fx307.fx307{padding: 3rem 1rem; text-align: center; color: var(--text-dim); font-size: 0.85rem; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;}
.fx308.fx308{opacity: 0.4;}
.fx309.fx309{font-weight: 700; color: #fff;}
.fx310.fx310{font-size: 0.68rem; padding: 2px 6px; border-radius: 4px; background: rgba(88,101,242,0.25); color: #a5b4fc; border: 1px solid rgba(88,101,242,0.4); font-weight: 700;}
.fx311.fx311{font-size: 0.72rem; color: #34d399; font-family: var(--font-mono);}
.fx312.fx312{display: flex; align-items: center; justify-content: space-between; margin-top: 0.45rem;}
.fx313.fx313{font-size: 0.75rem; padding: 0.35rem 0.85rem; text-decoration: none; gap: 0.35rem; display: inline-flex; align-items: center;}
.fx314.fx314{font-size: 0.75rem; padding: 0.35rem 0.8rem;}
.fx315.fx315{color: var(--text-dim);}
.fx316.fx316{font-size: 0.68rem; padding: 2px 6px; border-radius: 4px; background: rgba(255,255,255,0.05); color: var(--text-dim); font-weight: 600;}
.fx317.fx317{font-size: 0.7rem; color: var(--text-dim);}
.fx318.fx318{max-width: 480px; padding: 1.8rem 1.8rem 1.5rem;}
.fx319.fx319{margin-bottom: 1.2rem; padding-bottom: 0.8rem;}
.fx320.fx320{font-size: 1.15rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 0.5rem;}
.fx321.fx321{margin-bottom: 1.1rem; text-align: left;}
.fx322.fx322{font-size: 0.8rem; font-weight: 700; color: var(--color-lavender-light); display: block; margin-bottom: 0.4rem;}
.fx323.fx323{display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.5rem;}
.fx324.fx324{width: 100%; font-size: 0.84rem;}
.fx325.fx325{width: 100%; font-size: 0.85rem; line-height: 1.5; resize: vertical;}
.fx326.fx326{margin-bottom: 1.3rem; text-align: left;}
.fx327.fx327{display: none; margin-bottom: 0.5rem; align-items: center; gap: 0.75rem;}
.fx328.fx328{display: none; width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(147, 51, 234, 0.25); border: 1px solid rgba(216, 180, 254, 0.35); align-items: center; justify-content: center; color: var(--color-lavender);}
.fx329.fx329{display: flex; flex-direction: column; overflow: hidden; flex: 1;}
.fx330.fx330{font-size: 0.8rem; font-weight: 600; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.fx331.fx331{font-size: 0.72rem; color: var(--text-dim);}
.fx332.fx332{width: 100%; font-size: 0.82rem; justify-content: center; gap: 0.5rem; padding: 0.6rem;}
.fx333.fx333{display: flex; gap: 0.75rem;}
.fx334.fx334{flex: 2; padding: 0.75rem; justify-content: center; font-weight: 700;}
.fx335.fx335{border-color: rgba(239, 68, 68, 0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 35px rgba(239, 68, 68, 0.2);}
.fx336.fx336{position: relative; width: 72px; height: 72px; margin: 0 auto 1.2rem;}
.fx337.fx337{width: 100%; height: 100%; border-radius: 50%; border: 2px solid #ef4444; object-fit: cover;}
.fx338.fx338{position: absolute; bottom: 0; right: 0; background: #ef4444; color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; border: 2px solid #140f23;}
.fx339.fx339{color: #fca5a5;}
.fx340.fx340{background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); margin-bottom: 0.6rem;}
.fx341.fx341{background: none; border: none; color: var(--text-dim); font-size: 0.8rem; cursor: pointer; text-decoration: underline; padding: 4px;}
.fx342.fx342{display:inline-block; width:14px; height:14px; border:2px solid currentColor; border-right-color:transparent; border-radius:50%; animation:flowerSpin 0.7s linear infinite; margin-right:6px; vertical-align:middle;}
.fx343.fx343{border-color: rgba(168, 85, 247, 0.45); box-shadow: 0 20px 60px rgba(0,0,0,0.85), 0 0 35px rgba(168, 85, 247, 0.25);}
.fx344.fx344{width: 100%; height: 100%; border-radius: 50%; border: 2px solid #a855f7; object-fit: cover;}
.fx345.fx345{position: absolute; bottom: 0; right: 0; background: linear-gradient(135deg, #a855f7, #7c3aed); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; border: 2px solid #140f23; box-shadow: 0 0 8px rgba(168,85,247,0.6);}
.fx346.fx346{color: #e9d5ff;}
.fx347.fx347{background: linear-gradient(135deg, #7c3aed, #9333ea); box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4); margin-bottom: 0.8rem;}
.fx348.fx348{background: rgba(168, 85, 247, 0.15); border: 1px solid rgba(168, 85, 247, 0.4); color: #e9d5ff; margin-bottom: 0.6rem;}
.fx349.fx349{border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 35px rgba(245, 158, 11, 0.2);}
.fx350.fx350{width: 100%; height: 100%; border-radius: 50%; border: 2px solid #f59e0b; object-fit: cover;}
.fx351.fx351{position: absolute; bottom: 0; right: 0; background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; border: 2px solid #140f23; box-shadow: 0 0 8px rgba(245,158,11,0.6);}
.fx352.fx352{color: #fcd34d;}
.fx353.fx353{display: block; color: #fbbf24; font-weight: 700; margin-bottom: 0.4rem;}
.fx354.fx354{display: flex; flex-direction: column; gap: 0.6rem; width: 100%; margin: 1.2rem 0;}
.fx355.fx355{justify-content: center; padding: 0.85rem 1.2rem; font-weight: 700; background: linear-gradient(135deg, #9333ea, #7928ca); box-shadow: 0 4px 15px rgba(147,51,234,0.35); text-decoration: none;}
.fx356.fx356{justify-content: center; padding: 0.8rem 1.2rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); cursor: pointer;}
.fx357.fx357{background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.4); color: #fcd34d; margin: 0; justify-content: center; padding: 0.75rem 1.2rem;}
.fx358.fx358{display: flex; justify-content: space-between; align-items: center; width: 100%; margin-top: 0.4rem; padding-top: 0.8rem; border-top: 1px solid rgba(255,255,255,0.08);}
.fx359.fx359{color: var(--text-dim); font-size: 0.82rem; text-decoration: none; display: flex; align-items: center; gap: 0.3rem;}
.fx360.fx360{background: none; border: none; color: var(--text-dim); font-size: 0.82rem; cursor: pointer; text-decoration: underline; padding: 4px;}
.fx361.fx361{width: 28px; height: 28px; filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));}
.fx362.fx362{font-family: var(--font-title); font-weight: 800; font-size: 1.05rem; color: #fff;}
.fx363.fx363{width: 100%;}
.fx364.fx364{justify-content: space-between;}
.fx365.fx365{font-size: 0.72rem; color: #34d399; font-weight: 700;}
.fx366.fx366{display: flex; align-items: center; gap: 0.65rem; min-width: 0; flex: 1;}
.fx367.fx367{position: relative; width: 34px; height: 34px; flex-shrink: 0;}
.fx368.fx368{width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--color-lavender);}
.fx369.fx369{position: absolute; bottom: 0; right: 0; width: 8px; height: 8px; border-radius: 50%; background: #34d399; border: 1.5px solid #100a1c;}
.fx370.fx370{display: flex; flex-direction: column; min-width: 0; gap: 0.15rem;}
.fx371.fx371{font-size: 0.84rem; font-weight: 800; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.fx372.fx372{transform: scale(0.92); transform-origin: left center;}
.fx373.fx373{padding: 6px; border-radius: 6px;}
.fx374.fx374{font-size: 1.05rem;}
.fx375.fx375{font-size: 0.65rem; font-weight: 800; background: #facc15; color: #000; padding: 0.15rem 0.4rem; border-radius: 4px;}
.fx376.fx376{width: 36px; height: 36px; border-radius: 10px; background: rgba(147, 51, 234, 0.2); border: 1px solid rgba(216, 180, 254, 0.4); display: flex; align-items: center; justify-content: center; color: var(--color-lavender);}
.fx377.fx377{font-size: 1.15rem; font-weight: 800; color: #fff;}
.fx378.fx378{font-size: 0.76rem; color: var(--text-dim);}
.fx379.fx379{color: #a855f7;}
.fx380.fx380{display: flex; flex-direction: column; gap: 0.65rem;}
.fx381.fx381{padding: 0.75rem 1rem; justify-content: center; font-size: 0.9rem;}
.fx382.fx382{padding: 0.75rem 1rem; justify-content: center; font-size: 0.88rem; text-decoration: none;}
.fx383.fx383{padding: 0.65rem 1rem; justify-content: center; font-size: 0.82rem; text-decoration: none;}
.fx384.fx384{width: 36px; height: 36px; border-radius: 10px; background: rgba(88, 101, 242, 0.2); border: 1px solid rgba(88, 101, 242, 0.4); display: flex; align-items: center; justify-content: center; color: #5865F2;}
.fx385.fx385{padding-top: 0.4rem; border-top: 1px dashed rgba(255,255,255,0.08);}
.fx386.fx386{width: 18px; height: 18px; border-radius: 50%;}
.fx387.fx387{text-align: left; margin-bottom: 1.2rem;}
.fx388.fx388{font-size: 0.78rem; font-weight: 700; color: var(--color-lavender-light); display: block; margin-bottom: 0.4rem;}
.fx389.fx389{width: 100%; border-radius: var(--radius-md); padding: 0.65rem 0.85rem; resize: none;}
.fx390.fx390{margin-top: 0.8rem; text-align: center;}
.fx391.fx391{background: none; border: none; color: var(--text-dim); font-size: 0.78rem; cursor: pointer; text-decoration: underline;}
.fx392.fx392{font-size: 2.4rem; margin-bottom: 0.4rem;}
.fx393.fx393{font-size: 1.15rem; font-weight: 800; color: #34d399; margin-bottom: 0.3rem;}
.fx394.fx394{font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; margin-bottom: 1rem;}
.fx395.fx395{grid-column: 1 / -1; padding: 3.5rem 1rem; text-align: center; color: var(--text-dim); font-size: 0.9rem; border: 1px dashed rgba(216,180,254,0.2); border-radius: var(--radius-xl); background: rgba(0,0,0,0.3);}
.fx396.fx396{color: var(--text-dim); text-align: center; padding: 2rem;}
.fx397.fx397{background: rgba(255,255,255,0.03); border: 1px solid rgba(216,180,254,0.2); border-radius: var(--radius-lg); padding: 1.4rem;}
.fx398.fx398{display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; flex-wrap: wrap; gap: 0.5rem;}
.fx399.fx399{font-size: 0.72rem; font-weight: 800; background: rgba(239, 68, 68, 0.2); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.4); padding: 0.15rem 0.55rem; border-radius: 4px;}
.fx400.fx400{font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem;}
.fx401.fx401{font-size: 0.88rem; color: var(--text-body); line-height: 1.65; white-space: pre-line;}
.fx402.fx402{padding: 2.5rem 1rem; text-align: center; color: var(--text-dim); font-size: 0.85rem; border: 1px dashed rgba(216,180,254,0.18); border-radius: var(--radius-lg);}
.fx403.fx403{display: flex; align-items: center; gap: 1rem; min-width: 260px;}
.fx404.fx404{width: 58px; height: 58px; border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid rgba(216,180,254,0.3); background: #000; flex-shrink: 0;}
.fx405.fx405{display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.2rem;}
.fx406.fx406{font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0;}
.fx407.fx407{font-size: 0.68rem; padding: 0.15rem 0.45rem;}
.fx408.fx408{font-size: 0.78rem; color: var(--text-dim);}
.fx409.fx409{display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;}
.fx410.fx410{text-align: right;}
.fx411.fx411{font-size: 0.72rem; color: var(--text-dim); display: block; margin-bottom: 0.2rem;}
.fx412.fx412{flex: 1; padding: 0.5rem 0.85rem; font-size: 0.85rem;}
.fx413.fx413{padding: 0.5rem 0.7rem;}
.fx414.fx414{width: 120px;}
.fx415.fx415{display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem;}
.fx416.fx416{font-size: 0.75rem; padding: 0.25rem 0.6rem;}
.fx417.fx417{display: flex; flex-direction: column; gap: 0.5rem;}
.fx418.fx418{flex: 1; padding: 0.45rem 0.8rem; font-size: 0.82rem;}
.fx419.fx419{display: flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; color: var(--color-lavender); cursor: pointer; white-space: nowrap;}
.fx420.fx420{padding: 0.45rem 0.6rem;}
.fx421.fx421{background: rgba(0,0,0,0.3); padding: 0.85rem 1rem; border-radius: var(--radius-md); border: 1px solid rgba(216,180,254,0.18); margin-bottom: 1.1rem;}
.fx422.fx422{color: var(--color-lavender); font-weight: 700; margin-bottom: 0.35rem;}
.fx423.fx423{display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem;}
.fx424.fx424{margin-bottom: 0; color: var(--color-lavender); font-weight: 700;}
.fx425.fx425{font-size: 0.75rem; padding: 0.3rem 0.75rem;}
.fx426.fx426{background: rgba(0, 0, 0, 0.45); border: 1px solid rgba(216, 180, 254, 0.22); border-radius: var(--radius-md); padding: 0.95rem; display: flex; flex-direction: column; gap: 0.5rem;}
.fx427.fx427{display: flex; align-items: center; justify-content: space-between;}
.fx428.fx428{font-size: 0.78rem; font-weight: 800; color: var(--color-lavender);}
.fx429.fx429{padding: 0.2rem 0.5rem; font-size: 0.7rem;}
.fx430.fx430{font-size: 0.82rem; padding: 0.45rem 0.75rem;}
.fx431.fx431{min-height: 60px; font-size: 0.82rem; padding: 0.45rem 0.75rem;}
.fx432.fx432{display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;}
.fx433.fx433{font-size: 0.74rem; color: var(--text-dim); margin-top: 0.35rem;}
.fx434.fx434{display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.35rem;}
.fx435.fx435{font-size: 0.72rem; padding: 0.2rem 0.55rem;}
.fx436.fx436{background: rgba(147, 51, 234, 0.08); border: 1px dashed rgba(216, 180, 254, 0.4); border-radius: var(--radius-md); padding: 1.1rem; margin-top: 0.5rem;}
.fx437.fx437{color: var(--color-lavender-light); font-weight: 700; margin-bottom: 0;}
.fx438.fx438{display: flex; gap: 0.65rem; align-items: center;}
.fx439.fx439{font-size: 0.8rem; white-space: nowrap; box-shadow: 0 0 15px rgba(147, 51, 234, 0.4);}
.fx440.fx440{display: flex; align-items: center; justify-content: space-between; margin-top: 0.6rem; flex-wrap: wrap; gap: 0.5rem;}
.fx441.fx441{display: flex; align-items: center; gap: 0.4rem;}
.fx442.fx442{display: inline-block; width: auto; min-width: 260px; padding: 0.3rem 0.6rem; font-size: 0.78rem;}
.fx443.fx443{font-size: 0.75rem; color: var(--color-lavender-light);}
.fx444.fx444{color: #60a5fa; font-weight: 600;}
.fx445.fx445{color: #fbbf24;}
.fx446.fx446{color: #34d399; font-weight: 700;}
.fx447.fx447{color: #f87171; font-weight: 700;}
.fx448.fx448{background: rgba(0,0,0,0.4); border: 1px solid rgba(96,165,250,0.22); border-radius: var(--radius-lg); padding: 1.1rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;}
.fx449.fx449{flex: 1; min-width: 250px;}
.fx450.fx450{display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; flex-wrap: wrap;}
.fx451.fx451{font-size: 0.72rem; padding: 0.15rem 0.55rem; background: rgba(59,130,246,0.18); border: 1px solid rgba(96,165,250,0.45); color: #93c5fd; font-weight: 800; border-radius: 4px;}
.fx452.fx452{color: #fff; font-size: 0.98rem;}
.fx453.fx453{font-size: 0.78rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;}
.fx454.fx454{color: #93c5fd;}
.fx455.fx455{font-size: 0.82rem; color: #94a3b8; margin-top: 0.45rem; line-height: 1.5; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
.fx456.fx456{background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.4); color: #fca5a5; padding: 0.5rem 0.85rem; border-radius: var(--radius-md); font-size: 0.82rem; font-weight: 600; white-space: nowrap; display: inline-flex; align-items: center; gap: 0.4rem; cursor: pointer;}
.fx457.fx457{display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap;}
.fx458.fx458{margin: 0; font-size: 1.05rem;}
.fx459.fx459{background: rgba(0,0,0,0.35); padding: 0.9rem 1.1rem; border-radius: var(--radius-md); border: 1px solid rgba(216,180,254,0.15); margin-bottom: 1.2rem;}
.fx460.fx460{display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; flex-wrap: wrap; gap: 0.4rem;}
.fx461.fx461{display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap;}
.fx462.fx462{flex: 1; min-width: 280px;}
.fx463.fx463{width: auto; min-width: 170px;}
.fx464.fx464{margin-top: 0.5rem; max-width: 200px; height: 90px; border-radius: 6px; overflow: hidden; border: 1px solid var(--border-subtle); background: #000;}
.fx465.fx465{width: 7px; height: 7px; border-radius: 50%; background: #f59e0b; display: inline-block;}
.fx466.fx466{width: 7px; height: 7px; border-radius: 50%; background: #10b981; display: inline-block;}
.fx467.fx467{width: 7px; height: 7px; border-radius: 50%; background: #ef4444; display: inline-block;}
.fx468.fx468{animation: spin 0.8s linear infinite;}
.fx469.fx469{padding: 2.5rem 1rem; text-align: center; color: var(--text-dim); font-size: 0.82rem;}
.fx470.fx470{background: rgba(88,101,242,0.25); color: #c7d2fe; font-size: 0.65rem; padding: 0.1rem 0.35rem; border-radius: 4px; font-weight: 700;}
.fx471.fx471{font-size: 0.76rem; color: var(--color-lavender); font-weight: 600;}
.fx472.fx472{display: flex; align-items: center; gap: 0.4rem; margin-top: 0.35rem; flex-wrap: wrap;}
.fx473.fx473{font-size: 0.65rem; padding: 0.1rem 0.4rem; background: rgba(255,255,255,0.05); border-radius: 4px;}
.fx474.fx474{background: rgba(147, 51, 234, 0.25); color: #d8b4fe; border: 1px solid rgba(168, 85, 247, 0.35); font-size: 0.65rem; font-weight: 700; padding: 0.1rem 0.45rem; border-radius: 4px; display: inline-flex; align-items: center; gap: 0.25rem;}
.fx475.fx475{width: 10px; height: 10px;}
.fx476.fx476{background: rgba(255,255,255,0.05); color: var(--text-dim); font-size: 0.65rem; padding: 0.1rem 0.4rem; border-radius: 4px;}
.fx477.fx477{background: #ef4444; color: #fff; font-size: 0.62rem; font-weight: 800; padding: 0.1rem 0.4rem; border-radius: 9999px;}
.fx478.fx478{margin-top: 0.4rem; text-decoration: none;}
.fx479.fx479{width: 13px; height: 13px; color: var(--color-lavender);}
.fx480.fx480{max-width: 75%;}
.fx481.fx481{width: 16px; height: 16px; border-radius: 50%; object-fit: cover;}
.fx482.fx482{display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700;}
.fx483.fx483{background: rgba(88,101,242,0.3); color: #c7d2fe; font-size: 0.72rem; padding: 0.15rem 0.5rem; border-radius: 9999px; font-weight: 600;}
.fx484.fx484{font-size: 0.72rem;}
.fx485.fx485{font-size: 0.78rem; color: var(--color-lavender); font-weight: 600; margin-top: 0.15rem;}
.fx486.fx486{display: flex; align-items: center; gap: 0.5rem; margin-top: 0.25rem; flex-wrap: wrap;}
.fx487.fx487{font-size: 0.72rem; color: #d8b4fe; background: rgba(147, 51, 234, 0.18); border: 1px solid rgba(168, 85, 247, 0.3); border-radius: 9999px; padding: 0.15rem 0.65rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.35rem;}
.fx488.fx488{font-size: 0.7rem; padding: 0.15rem 0.55rem;}
.fx489.fx489{font-size: 0.72rem; color: var(--text-dim); font-family: var(--font-mono); margin-top: 0.2rem; display: block;}
.fx490.fx490{display: flex; gap: 0.5rem;}
.fx491.fx491{font-size: 0.76rem; padding: 0.35rem 0.7rem;}
.fx492.fx492{display: flex; flex-direction: column; overflow: hidden;}
.fx493.fx493{max-width: 250px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.8rem; font-weight: 600; color: #fff;}
.fx494.fx494{margin-left: auto;}
.fx495.fx495{font-size: 0.7rem; color: var(--text-dim); align-self: center;}
.fx496.fx496{padding: 0.65rem 0.85rem;}
.fx497.fx497{flex: 1; font-size: 0.85rem;}
.fx498.fx498{padding: 0.65rem 1.2rem; font-size: 0.85rem; white-space: nowrap;}
.fx499.fx499{font-size: 0.72rem; padding: 0.15rem 0.5rem;}
.fx500.fx500{background: rgba(0,0,0,0.4); border: 1px solid rgba(216,180,254,0.15); border-radius: var(--radius-lg); padding: 1.1rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;}
.fx501.fx501{color: #fff; font-size: 0.95rem;}
.fx502.fx502{color: #f43f5e;}
.fx503.fx503{padding: 0.45rem 0.8rem; font-size: 0.78rem; white-space: nowrap;}
.fx504.fx504{grid-column: 1 / -1; padding: 3rem; text-align: center; color: var(--text-dim);}
.fx505.fx505{width: 36px; height: 36px; margin: 0 auto 0.8rem; opacity: 0.4;}
.fx506.fx506{margin: 0; font-size: 0.9rem;}
.fx507.fx507{display: flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.7rem; background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.3); border-radius: 6px; font-size: 0.74rem; color: #fde68a; margin-bottom: 0.8rem;}
.fx508.fx508{width: 14px; height: 14px; color: #fbbf24; flex-shrink: 0;}
.fx509.fx509{width: 100%; justify-content: center; gap: 0.5rem; padding: 0.75rem 1rem; font-weight: 700; opacity: 0.5; cursor: not-allowed;}
.fx510.fx510{max-width: 340px; margin-top: 0.8rem;}
.fx511.fx511{margin-top: 0.8rem; text-decoration: none;}
.fx512.fx512{display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; flex-wrap: wrap; gap: 0.5rem;}
.fx513.fx513{display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.85rem;}
.fx514.fx514{width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid #5865F2; object-fit: cover;}
.fx515.fx515{font-size: 0.8rem; font-weight: 700; color: #fff;}
.fx516.fx516{background: rgba(88, 101, 242, 0.2); color: #a5b4fc; font-size: 0.65rem; padding: 1px 6px; border-radius: 4px; font-weight: 700;}
.fx517.fx517{font-size: 0.88rem; color: var(--text-body); line-height: 1.6; white-space: pre-line;}
.fx518.fx518{display: flex; flex-direction: column; gap: 0.55rem;}
.fx519.fx519{display: flex; align-items: center; gap: 0.45rem;}
.fx520.fx520{width: 20px; height: 20px; border-radius: 50%; object-fit: cover; border: 1.5px solid #5865F2;}
.fx521.fx521{color: #fff; font-size: 0.8rem; font-weight: 700;}
.fx522.fx522{background: rgba(88, 101, 242, 0.2); color: #a5b4fc; font-size: 0.62rem; padding: 1px 5px; border-radius: 3px; font-weight: 600;}
.fx523.fx523{font-size: 0.7rem; color: var(--text-dim); font-family: var(--font-mono);}
.fx524.fx524{padding: 1px 5px; font-size: 0.65rem;}
.fx525.fx525{color: var(--text-body); font-size: 0.85rem; line-height: 1.5; padding-left: 1.6rem; white-space: pre-wrap;}
.fx526.fx526{padding: 1.1rem; text-align: center; color: var(--text-dim); font-size: 0.82rem; background: rgba(255, 255, 255, 0.02); border-radius: 8px; border: 1px dashed rgba(255, 255, 255, 0.08);}
.fx527.fx527{width: 18px; height: 18px; opacity: 0.5; vertical-align: middle; margin-right: 0.35rem;}
.fx528.fx528{display: flex; gap: 0.55rem; align-items: center; margin-top: 0.35rem;}
.fx529.fx529{flex: 1; font-size: 0.84rem; padding: 0.65rem 1rem; border-radius: 8px; background: rgba(15, 12, 24, 0.85); border: 1px solid rgba(216, 180, 254, 0.25); color: #fff;}
.fx530.fx530{padding: 0.65rem 1.25rem; font-size: 0.84rem; font-weight: 700; white-space: nowrap; border-radius: 8px; display: inline-flex; align-items: center; gap: 0.35rem; cursor: pointer;}

/* 조건부 인라인 스타일을 대체하는 클래스 (style-convert 동적 분기) */
.fx-staff-panel.fx-staff-panel{font-weight:800;justify-content:center}
.fx-panel-supporter.fx-panel-supporter{background:rgba(16,185,129,.2);border-color:rgba(110,231,183,.4);color:#a7f3d0}
.fx-panel-master.fx-panel-master{background:linear-gradient(135deg,rgba(239,68,68,.22),rgba(147,51,234,.22));border-color:rgba(248,113,113,.5);color:#fca5a5}
.fx-panel-owner.fx-panel-owner{background:linear-gradient(135deg,rgba(234,179,8,.22),rgba(180,83,9,.22));border-color:rgba(253,224,71,.5);color:#fef08a}
.fx-panel-admin.fx-panel-admin{background:rgba(59,130,246,.22);border-color:rgba(147,197,253,.5);color:#bfdbfe}
.fx-panel-manager.fx-panel-manager{background:rgba(14,165,233,.22);border-color:rgba(125,211,252,.5);color:#bae6fd}
.fx-dot.fx-dot{display:inline-block;width:6px;height:6px;border-radius:50%}
.fx-dot-ok.fx-dot-ok{background:#34d399}
.fx-dot-warn.fx-dot-warn{background:#fbbf24}
.fx-ico13.fx-ico13{width:13px;height:13px;flex-shrink:0}
.fx-ico-ok.fx-ico-ok{color:#34d399}
.fx-ico-warn.fx-ico-warn{color:#fbbf24}
.fx-flex1.fx-flex1{flex:1}
.fx-pr-2.fx-pr-2{padding-right:2rem}
.fx-pr-05.fx-pr-05{padding-right:.5rem}
.fx-ico15.fx-ico15{width:15px;height:15px}
.fx-filled.fx-filled{fill:currentColor}
.fx-comments.fx-comments{flex-direction:column;gap:.75rem;margin-top:1rem;padding-top:1rem;border-top:1px dashed rgba(255,255,255,.1)}
.fx-show.fx-show{display:flex}
.fx-hide.fx-hide{display:none}

/* Hide Admin CMS footer link from non-staff and guests */
footer a[href*="admin.html"],
.footer-links a[href*="admin.html"],
a.fx22[href*="admin.html"] {
  display: none !important;
}
body.is-staff footer a[href*="admin.html"],
body.is-staff .footer-links a[href*="admin.html"],
body.is-staff a.fx22[href*="admin.html"] {
  display: inline !important;
}
