/* src/styles.scss */
:root,
[data-theme=charcoal-ember] {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #242424;
  --bg-card: #1c1c1c;
  --bg-card-hover: #252525;
  --bg-elevated: #2a2a2a;
  --bg-input: #1f1f1f;
  --bg-overlay: rgba(0, 0, 0, 0.85);
  --accent-primary: #d97706;
  --accent-primary-hover: #b45309;
  --accent-primary-light: #fbbf24;
  --accent-secondary: #92400e;
  --accent-glow: rgba(217, 119, 6, 0.25);
  --accent-gradient:
    linear-gradient(
      135deg,
      #d97706 0%,
      #92400e 100%);
  --accent-gradient-hover:
    linear-gradient(
      135deg,
      #f59e0b 0%,
      #b45309 100%);
  --text-primary: #f5f5f5;
  --text-secondary: #a3a3a3;
  --text-muted: #737373;
  --text-on-accent: #0f0f0f;
  --text-link: #fbbf24;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);
  --border-accent: rgba(217, 119, 6, 0.4);
  --success: #22c55e;
  --success-bg: rgba(34, 197, 94, 0.15);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.15);
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.15);
  --live: #dc2626;
  --live-glow: rgba(220, 38, 38, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-accent: 0 4px 20px rgba(217, 119, 6, 0.3);
  --shadow-glow: 0 0 30px rgba(217, 119, 6, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;
  --gradient-hero:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #0f0f0f 100%);
  --gradient-card:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03) 0%,
      transparent 100%);
  --gradient-cta:
    linear-gradient(
      135deg,
      #d97706 0%,
      #b45309 50%,
      #92400e 100%);
}
[data-theme=midnight-copper] {
  --bg-primary: #09090b;
  --bg-secondary: #18181b;
  --bg-tertiary: #27272a;
  --bg-card: #1c1917;
  --bg-card-hover: #292524;
  --bg-elevated: #2c2926;
  --bg-input: #1a1917;
  --bg-overlay: rgba(0, 0, 0, 0.9);
  --accent-primary: #c2410c;
  --accent-primary-hover: #9a3412;
  --accent-primary-light: #ea580c;
  --accent-secondary: #7c2d12;
  --accent-glow: rgba(194, 65, 12, 0.3);
  --accent-gradient:
    linear-gradient(
      135deg,
      #c2410c 0%,
      #7c2d12 100%);
  --accent-gradient-hover:
    linear-gradient(
      135deg,
      #ea580c 0%,
      #c2410c 100%);
  --text-primary: #fafaf9;
  --text-secondary: #a8a29e;
  --text-muted: #78716c;
  --text-on-accent: #fafaf9;
  --text-link: #fb923c;
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-default: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(194, 65, 12, 0.5);
  --success: #16a34a;
  --success-bg: rgba(22, 163, 74, 0.15);
  --warning: #ea580c;
  --warning-bg: rgba(234, 88, 12, 0.15);
  --error: #dc2626;
  --error-bg: rgba(220, 38, 38, 0.15);
  --live: #b91c1c;
  --live-glow: rgba(185, 28, 28, 0.5);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.7);
  --shadow-accent: 0 4px 20px rgba(194, 65, 12, 0.35);
  --shadow-glow: 0 0 40px rgba(194, 65, 12, 0.25);
  --gradient-hero:
    linear-gradient(
      135deg,
      #1c1917 0%,
      #0c0a09 100%);
  --gradient-card:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.02) 0%,
      transparent 100%);
  --gradient-cta:
    linear-gradient(
      135deg,
      #ea580c 0%,
      #c2410c 50%,
      #9a3412 100%);
}
[data-theme=steel-fire] {
  --bg-primary: #111827;
  --bg-secondary: #1f2937;
  --bg-tertiary: #374151;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  --bg-elevated: #3b4a63;
  --bg-input: #1e293b;
  --bg-overlay: rgba(17, 24, 39, 0.9);
  --accent-primary: #b91c1c;
  --accent-primary-hover: #991b1b;
  --accent-primary-light: #ef4444;
  --accent-secondary: #7f1d1d;
  --accent-glow: rgba(185, 28, 28, 0.35);
  --accent-gradient:
    linear-gradient(
      135deg,
      #dc2626 0%,
      #991b1b 100%);
  --accent-gradient-hover:
    linear-gradient(
      135deg,
      #ef4444 0%,
      #b91c1c 100%);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-on-accent: #ffffff;
  --text-link: #f87171;
  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-default: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(185, 28, 28, 0.5);
  --success: #22c55e;
  --success-bg: rgba(34, 197, 94, 0.12);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.12);
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.15);
  --live: #dc2626;
  --live-glow: rgba(220, 38, 38, 0.5);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.55);
  --shadow-accent: 0 4px 24px rgba(185, 28, 28, 0.4);
  --shadow-glow: 0 0 50px rgba(185, 28, 28, 0.3);
  --gradient-hero:
    linear-gradient(
      135deg,
      #1f2937 0%,
      #111827 100%);
  --gradient-card:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03) 0%,
      transparent 100%);
  --gradient-cta:
    linear-gradient(
      135deg,
      #ef4444 0%,
      #dc2626 50%,
      #b91c1c 100%);
}
[data-theme=aurora-reef] {
  --bg-primary: #0b1416;
  --bg-secondary: #132023;
  --bg-tertiary: #1b2a2e;
  --bg-card: #162327;
  --bg-card-hover: #1d2f34;
  --bg-elevated: #20353b;
  --bg-input: #17242a;
  --bg-overlay: rgba(5, 10, 12, 0.88);
  --accent-primary: #ff6b4a;
  --accent-primary-hover: #e5563a;
  --accent-primary-light: #ff9b7a;
  --accent-secondary: #c94b2f;
  --accent-glow: rgba(255, 107, 74, 0.25);
  --accent-gradient:
    linear-gradient(
      135deg,
      #ff6b4a 0%,
      #d6452b 100%);
  --accent-gradient-hover:
    linear-gradient(
      135deg,
      #ff845f 0%,
      #e5563a 100%);
  --text-primary: #f5fbfb;
  --text-secondary: #9ab3b8;
  --text-muted: #6d868c;
  --text-on-accent: #0b1416;
  --text-link: #ff9b7a;
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-default: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.15);
  --border-accent: rgba(255, 107, 74, 0.45);
  --success: #22c55e;
  --success-bg: rgba(34, 197, 94, 0.15);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.15);
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.15);
  --live: #ef4444;
  --live-glow: rgba(239, 68, 68, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.65);
  --shadow-accent: 0 4px 22px rgba(255, 107, 74, 0.3);
  --shadow-glow: 0 0 36px rgba(255, 107, 74, 0.25);
  --gradient-hero:
    linear-gradient(
      135deg,
      #162327 0%,
      #0b1416 100%);
  --gradient-card:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03) 0%,
      transparent 100%);
  --gradient-cta:
    linear-gradient(
      135deg,
      #ff6b4a 0%,
      #e5563a 50%,
      #c94b2f 100%);
}
[data-theme=saffron-ink] {
  --bg-primary: #0b1020;
  --bg-secondary: #111a2c;
  --bg-tertiary: #17243b;
  --bg-card: #121c2f;
  --bg-card-hover: #1a2944;
  --bg-elevated: #1c2b47;
  --bg-input: #101a2b;
  --bg-overlay: rgba(5, 8, 16, 0.9);
  --accent-primary: #f4b63f;
  --accent-primary-hover: #d99a25;
  --accent-primary-light: #ffd166;
  --accent-secondary: #b7791f;
  --accent-glow: rgba(244, 182, 63, 0.25);
  --accent-gradient:
    linear-gradient(
      135deg,
      #f4b63f 0%,
      #b7791f 100%);
  --accent-gradient-hover:
    linear-gradient(
      135deg,
      #ffd166 0%,
      #d99a25 100%);
  --text-primary: #f7f4ec;
  --text-secondary: #b6c0d8;
  --text-muted: #7b879f;
  --text-on-accent: #141414;
  --text-link: #ffd166;
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-default: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(244, 182, 63, 0.45);
  --success: #22c55e;
  --success-bg: rgba(34, 197, 94, 0.12);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.15);
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.15);
  --live: #ef4444;
  --live-glow: rgba(239, 68, 68, 0.45);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.65);
  --shadow-accent: 0 4px 22px rgba(244, 182, 63, 0.3);
  --shadow-glow: 0 0 40px rgba(244, 182, 63, 0.25);
  --gradient-hero:
    linear-gradient(
      135deg,
      #17243b 0%,
      #0b1020 100%);
  --gradient-card:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03) 0%,
      transparent 100%);
  --gradient-cta:
    linear-gradient(
      135deg,
      #ffd166 0%,
      #f4b63f 50%,
      #b7791f 100%);
}
[data-theme=verdant-onyx] {
  --bg-primary: #0b0f0e;
  --bg-secondary: #131a18;
  --bg-tertiary: #1b2421;
  --bg-card: #141d1b;
  --bg-card-hover: #1c2825;
  --bg-elevated: #22302c;
  --bg-input: #15211e;
  --bg-overlay: rgba(0, 0, 0, 0.88);
  --accent-primary: #10b981;
  --accent-primary-hover: #0f9f74;
  --accent-primary-light: #34d399;
  --accent-secondary: #0f766e;
  --accent-glow: rgba(16, 185, 129, 0.25);
  --accent-gradient:
    linear-gradient(
      135deg,
      #10b981 0%,
      #0f766e 100%);
  --accent-gradient-hover:
    linear-gradient(
      135deg,
      #34d399 0%,
      #10b981 100%);
  --text-primary: #f3f7f5;
  --text-secondary: #9bb0a8;
  --text-muted: #6f857d;
  --text-on-accent: #061611;
  --text-link: #34d399;
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-default: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(16, 185, 129, 0.45);
  --success: #22c55e;
  --success-bg: rgba(34, 197, 94, 0.12);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.12);
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.15);
  --live: #ef4444;
  --live-glow: rgba(239, 68, 68, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.65);
  --shadow-accent: 0 4px 22px rgba(16, 185, 129, 0.3);
  --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.25);
  --gradient-hero:
    linear-gradient(
      135deg,
      #16201d 0%,
      #0b0f0e 100%);
  --gradient-card:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03) 0%,
      transparent 100%);
  --gradient-cta:
    linear-gradient(
      135deg,
      #34d399 0%,
      #10b981 50%,
      #0f766e 100%);
}
@keyframes live-pulse {
  0%, 100% {
    box-shadow: 0 0 20px var(--live-glow);
  }
  50% {
    box-shadow: 0 0 35px var(--live-glow), 0 0 60px var(--live-glow);
  }
}
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: var(--shadow-md);
  }
  50% {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
  }
}
@keyframes dot-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes urgency-flash {
  0%, 100% {
    background: var(--accent-gradient);
  }
  50% {
    background: var(--accent-gradient-hover);
    box-shadow: var(--shadow-accent), 0 0 40px var(--accent-glow);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding-top: 70px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 900px) {
  body {
    padding-top: 64px;
  }
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
.quilaura-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}
.quilaura-section {
  margin-bottom: 48px;
}
.quilaura-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.quilaura-h1 {
  font-size: 42px;
  margin: 0 0 8px 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
}
.quilaura-h2 {
  font-size: 28px;
  margin: 0 0 20px 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.quilaura-h3 {
  font-size: 20px;
  margin: 0 0 12px 0;
  font-weight: 700;
  color: var(--text-primary);
}
.quilaura-sub {
  color: var(--text-secondary);
  margin: 0 0 24px 0;
  font-size: 17px;
}
.quilaura-muted {
  color: var(--text-muted);
  font-size: 14px;
}
.quilaura-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-default);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.quilaura-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.quilaura-header .logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.quilaura-header .logo .accent {
  color: var(--accent-primary);
}
.quilaura-header .logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-accent);
}
.quilaura-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quilaura-header nav a {
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-size: 14px;
}
.quilaura-header nav a:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}
.quilaura-header nav a.active {
  color: var(--accent-primary-light);
  background: var(--accent-glow);
  font-weight: 600;
}
.quilaura-header nav .nav-user {
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  font-size: 13px;
  white-space: nowrap;
}
.quilaura-header .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quilaura-header .mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.quilaura-header .mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: 0.3s;
}
.quilaura-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-default);
  color: var(--text-primary);
  padding: 60px 0 30px;
  margin-top: 80px;
}
.quilaura-footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.quilaura-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.quilaura-footer .footer-brand .logo {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.quilaura-footer .footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.quilaura-footer .footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
  color: var(--text-muted);
}
.quilaura-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quilaura-footer .footer-col li {
  margin-bottom: 12px;
}
.quilaura-footer .footer-col a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
}
.quilaura-footer .footer-col a:hover {
  color: var(--accent-primary-light);
}
.quilaura-footer .footer-bottom {
  border-top: 1px solid var(--border-default);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.quilaura-card {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
.quilaura-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.quilaura-card .thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-tertiary);
  position: relative;
}
.quilaura-card .body {
  padding: 20px;
}
.quilaura-card .title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.quilaura-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-gradient);
  color: var(--text-on-accent);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-accent);
}
.kv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}
.kv:last-child {
  border-bottom: none;
}
.kv .k {
  color: var(--text-muted);
}
.kv .v {
  font-weight: 600;
  color: var(--text-primary);
}
.quilaura-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-gradient);
  color: var(--text-on-accent);
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.quilaura-btn:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.quilaura-btn:active {
  transform: translateY(0);
}
.quilaura-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.quilaura-btn-outline {
  background: transparent;
  border: 2px solid var(--border-default);
  color: var(--text-primary);
  box-shadow: none;
}
.quilaura-btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-glow);
  box-shadow: none;
}
.quilaura-btn-dark {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}
.quilaura-btn-dark:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-strong);
}
.quilaura-btn-sm {
  padding: 10px 16px;
  font-size: 13px;
}
.quilaura-btn-lg {
  padding: 18px 32px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}
.quilaura-hero {
  background: var(--gradient-hero);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 60px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.quilaura-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--accent-glow);
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}
.quilaura-hero .hero-content {
  position: relative;
  z-index: 1;
}
.quilaura-hero .hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: var(--text-primary);
}
.quilaura-hero .hero-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0 0 32px 0;
  line-height: 1.7;
}
.quilaura-hero .hero-content .hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.quilaura-hero .hero-content .hero-stats .stat .number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-primary-light);
}
.quilaura-hero .hero-content .hero-stats .stat .label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quilaura-hero .hero-visual {
  position: relative;
  z-index: 1;
}
.quilaura-hero .hero-visual .hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: all 0.3s ease;
}
.quilaura-hero .hero-visual .hero-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-accent);
}
.quilaura-hero .hero-visual .hero-card .hero-img {
  height: 280px;
  background: var(--bg-tertiary);
  background-size: cover;
  background-position: center;
}
.quilaura-hero .hero-visual .hero-card .hero-card-body {
  padding: 24px;
}
.quilaura-hero .hero-visual .hero-card .hero-card-body .title {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.quilaura-hero .hero-visual .floating-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent-gradient);
  color: var(--text-on-accent);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-accent);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.quilaura-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0 20px 0;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  scroll-snap-type: x mandatory;
}
.quilaura-slider::-webkit-scrollbar {
  height: 6px;
}
.quilaura-slider::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
}
.quilaura-slider::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: var(--radius-full);
}
.quilaura-slide {
  flex: 0 0 340px;
  scroll-snap-align: start;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
.quilaura-slide:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.quilaura-slide .img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-tertiary);
  position: relative;
}
.quilaura-slide .img .status {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-gradient);
  color: var(--text-on-accent);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}
.quilaura-slide .content {
  padding: 20px;
}
.quilaura-slide .title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.quilaura-slide .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-primary-light);
}
.quilaura-gauge {
  margin-top: 16px;
}
.quilaura-gauge .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quilaura-gauge .bar {
  height: 10px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--bg-tertiary);
  display: flex;
}
.quilaura-gauge .seg {
  transition: flex 0.5s ease;
}
.quilaura-gauge .seg.red {
  background: var(--error);
}
.quilaura-gauge .seg.orange {
  background: var(--warning);
}
.quilaura-gauge .seg.green {
  background: var(--success);
}
.quilaura-gauge .info {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.quilaura-live {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.quilaura-stage {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.quilaura-stage .stage-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-elevated);
}
.quilaura-stage .stage-header .live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--live);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 0 20px var(--live-glow);
  animation: live-pulse 2s infinite;
}
.quilaura-stage .stage-header .live-badge .dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: dot-pulse 1s infinite;
}
.quilaura-stage .stage-content {
  padding: 32px;
}
.quilaura-stage .counter-section {
  text-align: center;
  margin-bottom: 32px;
}
.quilaura-stage .counter-section .current-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.quilaura-stage .quilaura-counter {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent-primary-light);
  line-height: 1;
  text-shadow: 0 0 40px var(--accent-glow);
}
.quilaura-stage .quilaura-screen {
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  margin-bottom: 24px;
  border: 1px solid var(--border-default);
}
.quilaura-stage .quilaura-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quilaura-stage .quilaura-screen .product-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.quilaura-stage .quilaura-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  border: 1px solid var(--border-subtle);
}
.quilaura-stage .quilaura-timer .dial {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  box-shadow: 0 0 20px var(--accent-glow);
}
.quilaura-stage .quilaura-timer .timer-info .timer-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quilaura-stage .quilaura-timer .timer-info .timer-status {
  font-weight: 700;
  color: var(--text-primary);
}
.quilaura-bidbtn {
  width: 100%;
  font-size: 18px;
  text-align: center;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: var(--accent-gradient);
  color: var(--text-on-accent);
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-accent);
}
.quilaura-bidbtn:hover {
  background: var(--accent-gradient-hover);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-accent);
}
.quilaura-bidbtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.quilaura-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quilaura-crowd {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.quilaura-crowd .crowd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.quilaura-crowd .crowd-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}
.quilaura-crowd .crowd-header .count {
  background: var(--bg-elevated);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.quilaura-crowd .avatars {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.quilaura-crowd .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--bg-card);
  box-shadow: var(--shadow-sm);
}
.quilaura-crowd .crowd-info {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.quilaura-bids {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.quilaura-bids h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--text-primary);
}
.quilaura-bids .bid-list {
  max-height: 300px;
  overflow-y: auto;
}
.quilaura-bids .bid-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.quilaura-bids .bid-item:last-child {
  border-bottom: none;
}
.quilaura-bids .bid-item .bidder {
  display: flex;
  align-items: center;
  gap: 10px;
}
.quilaura-bids .bid-item .bidder .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-elevated);
}
.quilaura-bids .bid-item .bidder .name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}
.quilaura-bids .bid-item .bidder .time {
  font-size: 12px;
  color: var(--text-muted);
}
.quilaura-bids .bid-item .amount {
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-primary-light);
}
.auction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.auction-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
.auction-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.auction-item .auction-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-tertiary);
  position: relative;
}
.auction-item .auction-img .status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}
.auction-item .auction-img .status-badge.upcoming {
  background: var(--accent-glow);
  color: var(--accent-primary-light);
  border: 1px solid var(--border-accent);
}
.auction-item .auction-img .status-badge.live {
  background: var(--live);
  color: #fff;
  box-shadow: 0 0 15px var(--live-glow);
}
.auction-item .auction-img .status-badge.completed {
  background: var(--success-bg);
  color: var(--success);
}
.auction-item .auction-body {
  padding: 20px;
}
.auction-item .auction-body .title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.auction-item .auction-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-elevated);
}
.auction-item .auction-footer .price-info .label {
  font-size: 12px;
  color: var(--text-muted);
}
.auction-item .auction-footer .price-info .price {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-primary-light);
}
.quilaura-form {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.quilaura-field {
  margin-bottom: 20px;
}
.quilaura-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.quilaura-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  font-size: 15px;
  transition: all 0.2s;
  background: var(--bg-input);
  color: var(--text-primary);
}
.quilaura-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.quilaura-input::placeholder {
  color: var(--text-muted);
}
textarea.quilaura-input {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.table-wrap {
  overflow-x: auto;
}
.quilaura-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 960px;
}
.quilaura-table th,
.quilaura-table td {
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 12px;
  text-align: left;
  font-size: 13px;
  vertical-align: middle;
  color: var(--text-primary);
}
.quilaura-table th {
  font-weight: 900;
  background: var(--bg-elevated);
  color: var(--text-secondary);
}
.quilaura-table .cell-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}
.thumb-sm {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-row .quilaura-btn.active {
  background: var(--accent-gradient);
  color: var(--text-on-accent);
}
.quilaura-error {
  background: var(--error-bg);
  color: var(--error);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid var(--error);
}
.quilaura-success {
  background: var(--success-bg);
  color: var(--success);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid var(--success);
}
.info-hero {
  text-align: center;
  padding: 60px 0;
}
.info-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.info-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}
.info-card .icon {
  width: 64px;
  height: 64px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  box-shadow: var(--shadow-accent);
}
.info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.info-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}
.steps-list {
  counter-reset: step;
  max-width: 700px;
  margin: 48px auto 0;
}
.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.step-item::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-on-accent);
  box-shadow: var(--shadow-accent);
}
.step-item::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 56px;
  width: 2px;
  height: calc(100% - 16px);
  background: var(--border-default);
}
.step-item:last-child::after {
  display: none;
}
.step-item .step-content {
  padding-top: 8px;
}
.step-item .step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.step-item .step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}
.quilaura-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.quilaura-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-default);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.quilaura-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-default);
}
.quilaura-empty .icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.quilaura-empty h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.quilaura-empty p {
  color: var(--text-muted);
}
.theme-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}
.theme-selector .theme-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.theme-selector .theme-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.theme-selector .theme-btn:hover {
  transform: scale(1.1);
}
.theme-selector .theme-btn.active {
  border-color: var(--text-primary);
  box-shadow: 0 0 10px var(--accent-glow);
}
.theme-selector .theme-btn[data-theme=charcoal-ember]::before {
  background:
    linear-gradient(
      135deg,
      #0f0f0f 50%,
      #d97706 50%);
}
.theme-selector .theme-btn[data-theme=midnight-copper]::before {
  background:
    linear-gradient(
      135deg,
      #09090b 50%,
      #c2410c 50%);
}
.theme-selector .theme-btn[data-theme=steel-fire]::before {
  background:
    linear-gradient(
      135deg,
      #111827 50%,
      #b91c1c 50%);
}
@media (max-width: 1024px) {
  .quilaura-live {
    grid-template-columns: 1fr;
  }
  .quilaura-hero {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .quilaura-hero .hero-visual {
    order: -1;
  }
  .quilaura-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .quilaura-header nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-default);
    flex-direction: column;
    padding: 16px;
  }
  .quilaura-header nav.open {
    display: flex;
  }
  .quilaura-header nav a {
    padding: 12px 16px;
  }
  .quilaura-header .mobile-toggle {
    display: block;
  }
  .quilaura-wrap {
    padding: 20px 16px;
  }
  .quilaura-h1 {
    font-size: 32px;
  }
  .quilaura-hero {
    padding: 24px;
  }
  .quilaura-hero .hero-content h1 {
    font-size: 32px;
  }
  .quilaura-hero .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .quilaura-counter {
    font-size: 48px;
  }
  .quilaura-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .quilaura-slide {
    flex: 0 0 280px;
  }
  .quilaura-form {
    padding: 24px;
  }
  .auction-grid {
    grid-template-columns: 1fr;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
