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

:root {
  --color-primary: #EFE422;
  --color-primary-rgb: 239, 228, 34;
  --color-primary-light: #F5EE5A;
  --color-primary-dark: #C9BF1A;
  --color-primary-muted: rgba(239, 228, 34, 0.15);
  --color-bg: #08282D;
  --color-bg-rgb: 8, 40, 45;
  --color-bg-light: #0C3A42;
  --color-bg-lighter: #104950;
  --color-bg-card: #0A3238;
  --color-bg-card-hover: #0E3E46;
  --color-bg-surface: #0B2E34;
  --color-bg-elevated: #11454E;
  --color-text: #F0F7F8;
  --color-text-secondary: #8CB8BF;
  --color-text-muted: #5A929A;
  --color-text-dim: #3D7078;
  --color-accent: #22E8A8;
  --color-accent-rgb: 34, 232, 168;
  --color-accent-light: #4AEDB8;
  --color-accent-dark: #18B882;
  --color-danger: #FF4D6A;
  --color-danger-light: #FF7A90;
  --color-warning: #FFAA33;
  --color-info: #33BBFF;
  --color-success: #22E8A8;
  --color-gold: #FFD700;
  --color-silver: #C0C0C0;
  --color-bronze: #CD7F32;
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  --gradient-hero: linear-gradient(160deg, #041A1E 0%, #08282D 30%, #0C3A42 60%, #08282D 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(239, 228, 34, 0.12) 0%, transparent 70%);
  --gradient-card: linear-gradient(180deg, rgba(239, 228, 34, 0.04) 0%, transparent 100%);
  --gradient-cta: linear-gradient(135deg, #EFE422 0%, #22E8A8 50%, #EFE422 100%);
  --gradient-dark: linear-gradient(180deg, var(--color-bg) 0%, #061E22 100%);
  --gradient-surface: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-light) 100%);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fs-5xl: 3.75rem;
  --lh-tight: 1.1;
  --lh-snug: 1.3;
  --lh-normal: 1.7;
  --lh-relaxed: 1.8;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(239, 228, 34, 0.2);
  --shadow-glow-accent: 0 0 30px rgba(34, 232, 168, 0.2);
  --shadow-glow-strong: 0 0 50px rgba(239, 228, 34, 0.35);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  --border-subtle: 1px solid rgba(239, 228, 34, 0.08);
  --border-light: 1px solid rgba(239, 228, 34, 0.15);
  --border-medium: 1px solid rgba(239, 228, 34, 0.25);
  --border-strong: 1px solid rgba(239, 228, 34, 0.4);
  --border-accent: 1px solid rgba(34, 232, 168, 0.2);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-toast: 800;
  --z-max: 999;
  --content-width: 800px;
  --container-width: 1280px;
  --container-narrow: 960px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: var(--lh-normal);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-text);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* ================================================================
   UTILITY CLASSES
   ================================================================ */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================================================
   FOCUS STATES
   ================================================================ */

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ================================================================
   SELECTION
   ================================================================ */

::selection {
  background: rgba(239, 228, 34, 0.3);
  color: var(--color-text);
}

/* ================================================================
   SCROLLBAR
   ================================================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-bg-lighter);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* ================================================================
   SITE HEADER
   ================================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  background: rgba(8, 40, 45, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(239, 228, 34, 0.06);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(8, 40, 45, 0.96);
  border-bottom-color: rgba(239, 228, 34, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: var(--space-md);
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-lg);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: opacity var(--transition-base);
}

.site-header .brand:hover {
  opacity: 0.85;
}

.site-header .brand img {
  height: 38px;
  width: auto;
}

.site-header .nav-links {
  display: none;
  align-items: center;
  gap: var(--space-xs);
}

.site-header .nav-links li a {
  padding: 0.5rem 0.75rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
}

.site-header .nav-links li a:hover,
.site-header .nav-links li a.active {
  color: var(--color-primary);
  background: rgba(239, 228, 34, 0.08);
}

.site-header .nav-links li a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

/* ================================================================
   HAMBURGER
   ================================================================ */

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
  z-index: calc(var(--z-max) + 1);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.hamburger:hover {
  background: rgba(239, 228, 34, 0.08);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--color-primary);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--color-primary);
}

/* ================================================================
   MOBILE MENU
   ================================================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #0A3238, var(--color-bg));
  z-index: var(--z-max);
  padding: 5rem var(--space-lg) var(--space-xl);
  transition: right 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: 1px solid rgba(239, 228, 34, 0.1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem var(--space-md);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  color: var(--color-primary);
  background: rgba(239, 228, 34, 0.08);
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background: transparent;
  border: 1.5px solid rgba(239, 228, 34, 0.4);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
}

.btn-login:hover {
  background: rgba(239, 228, 34, 0.1);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(239, 228, 34, 0.15);
}

.btn-login:active {
  transform: scale(0.97);
}

.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-bg);
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(239, 228, 34, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-register:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(239, 228, 34, 0.4);
}

.btn-register:active {
  transform: translateY(0) scale(0.98);
}

/* ================================================================
   CTA BUTTON (General Purpose)
   ================================================================ */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-bg);
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(239, 228, 34, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(239, 228, 34, 0.45);
}

.cta-button:active {
  transform: translateY(-1px);
}

/* ================================================================
   HERO SECTION
   ================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 6rem var(--space-md) var(--space-2xl);
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 228, 34, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 232, 168, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlowPulse 10s ease-in-out infinite reverse;
}

@keyframes heroGlowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.6; }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hero h1 .highlight,
.hero h1 strong,
.hero h1 em {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* ================================================================
   CTA SECTION
   ================================================================ */

.cta-section {
  position: relative;
  padding: var(--space-4xl) var(--space-md);
  text-align: center;
  overflow: hidden;
  background: var(--color-bg);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(239, 228, 34, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.3;
}

.cta-section h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  font-size: var(--fs-md);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-section .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-bg);
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 6px 32px rgba(239, 228, 34, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-section .btn-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.cta-section .btn-cta:hover::before {
  width: 300px;
  height: 300px;
}

.cta-section .btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 48px rgba(239, 228, 34, 0.5);
}

.cta-section .btn-cta:active {
  transform: translateY(-1px) scale(0.99);
}

/* ================================================================
   ARTICLE CONTENT
   ================================================================ */

article.content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
  color: var(--color-text);
}

article.content h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
  position: relative;
  padding-bottom: var(--space-sm);
}

article.content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

article.content h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

article.content p {
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

article.content ul,
article.content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

article.content ul {
  list-style: none;
  padding-left: 0;
}

article.content ul li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
}

article.content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.7;
}

article.content ol {
  list-style: decimal;
  padding-left: var(--space-xl);
}

article.content ol li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
}

article.content ol li::marker {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

article.content li {
  font-size: var(--fs-base);
}

article.content strong {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}

article.content em {
  color: var(--color-primary-light);
  font-style: italic;
}

article.content a {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  text-decoration: underline;
  text-decoration-color: rgba(239, 228, 34, 0.3);
  text-underline-offset: 3px;
  transition: all var(--transition-base);
}

article.content a:hover {
  color: var(--color-primary-light);
  text-decoration-color: var(--color-primary);
}

/* ================================================================
   ARTICLE TABLES
   ================================================================ */

article.content table {
  width: 100%;
  margin: var(--space-xl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(239, 228, 34, 0.1);
  font-size: var(--fs-sm);
}

article.content thead {
  background: rgba(239, 228, 34, 0.1);
}

article.content tbody {
  background: var(--color-bg-card);
}

article.content th {
  padding: 0.85rem var(--space-md);
  text-align: left;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(239, 228, 34, 0.15);
}

article.content td {
  padding: 0.8rem var(--space-md);
  color: var(--color-text-secondary);
  border-bottom: 1px solid rgba(239, 228, 34, 0.05);
  vertical-align: middle;
}

article.content tbody tr:nth-child(even) {
  background: rgba(239, 228, 34, 0.03);
}

article.content tbody tr:nth-child(odd) {
  background: var(--color-bg-card);
}

article.content tbody tr:hover {
  background: rgba(239, 228, 34, 0.06);
}

article.content tbody tr:last-child td {
  border-bottom: none;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */

.faq-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition-base);
  margin-bottom: var(--space-sm);
}

.faq-item:hover {
  border-color: rgba(239, 228, 34, 0.15);
}

.faq-item.open {
  border-color: rgba(239, 228, 34, 0.2);
  box-shadow: 0 4px 20px rgba(239, 228, 34, 0.06);
}

.faq-question {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  color: var(--color-text);
  gap: var(--space-md);
  transition: all var(--transition-base);
  user-select: none;
  -webkit-user-select: none;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question .icon {
  font-size: var(--fs-xl);
  color: var(--color-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner,
.faq-answer p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
  background: linear-gradient(180deg, var(--color-bg), #041A1E);
  border-top: 1px solid rgba(239, 228, 34, 0.06);
  padding: var(--space-3xl) var(--space-md) var(--space-lg);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 228, 34, 0.3), transparent);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(239, 228, 34, 0.06);
}

.footer-nav a {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-base);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

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

.footer-disclaimer {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
  line-height: var(--lh-relaxed);
  padding: var(--space-md);
  background: rgba(239, 228, 34, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(239, 228, 34, 0.05);
}

.footer-copy {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
}

/* ================================================================
   ADDITIONAL REUSABLE COMPONENTS
   ================================================================ */

/* Cards */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  border-color: rgba(239, 228, 34, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-header {
  padding: var(--space-md) var(--space-lg);
  border-bottom: var(--border-subtle);
  background: rgba(239, 228, 34, 0.03);
}

.card-body {
  padding: var(--space-lg);
}

.card-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: var(--border-subtle);
  background: rgba(0, 0, 0, 0.1);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.7rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.badge-primary {
  background: rgba(239, 228, 34, 0.15);
  color: var(--color-primary);
  border: 1px solid rgba(239, 228, 34, 0.25);
}

.badge-accent {
  background: rgba(34, 232, 168, 0.15);
  color: var(--color-accent);
  border: 1px solid rgba(34, 232, 168, 0.25);
}

.badge-danger {
  background: rgba(255, 77, 106, 0.15);
  color: var(--color-danger);
  border: 1px solid rgba(255, 77, 106, 0.25);
}

.badge-warning {
  background: rgba(255, 170, 51, 0.15);
  color: var(--color-warning);
  border: 1px solid rgba(255, 170, 51, 0.25);
}

.badge-info {
  background: rgba(51, 187, 255, 0.15);
  color: var(--color-info);
  border: 1px solid rgba(51, 187, 255, 0.25);
}

.badge-live {
  background: rgba(255, 77, 106, 0.12);
  color: var(--color-danger);
  border: 1px solid rgba(255, 77, 106, 0.2);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 106, 0.3); }
  50% { box-shadow: 0 0 0 4px rgba(255, 77, 106, 0); }
}

/* Alerts */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.alert-info {
  background: rgba(51, 187, 255, 0.08);
  border: 1px solid rgba(51, 187, 255, 0.2);
  color: var(--color-info);
}

.alert-success {
  background: rgba(34, 232, 168, 0.08);
  border: 1px solid rgba(34, 232, 168, 0.2);
  color: var(--color-accent);
}

.alert-warning {
  background: rgba(255, 170, 51, 0.08);
  border: 1px solid rgba(255, 170, 51, 0.2);
  color: var(--color-warning);
}

.alert-danger {
  background: rgba(255, 77, 106, 0.08);
  border: 1px solid rgba(255, 77, 106, 0.2);
  color: var(--color-danger);
}

/* Forms & Inputs */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem var(--space-md);
  font-size: var(--fs-base);
  color: var(--color-text);
  background: var(--color-bg-card);
  border: 1.5px solid rgba(239, 228, 34, 0.12);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-dim);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(239, 228, 34, 0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(239, 228, 34, 0.12);
  background: var(--color-bg-surface);
}

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

.form-hint {
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
  margin-top: var(--space-xs);
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--color-danger);
  margin-top: var(--space-xs);
}

.form-input.is-error {
  border-color: var(--color-danger);
}

.form-input.is-success {
  border-color: var(--color-accent);
}

/* Checkbox & Radio */
.form-check {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 2px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 3px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab {
  flex: 1;
  padding: 0.6rem var(--space-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  text-align: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  border: none;
  background: none;
}

.tab:hover {
  color: var(--color-text);
  background: rgba(239, 228, 34, 0.05);
}

.tab.active {
  color: var(--color-bg);
  background: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
  padding: var(--space-lg) 0;
}

.tab-content.active {
  display: block;
  animation: tabFadeIn 0.3s ease;
}

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

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--color-bg-card);
  border: 1px solid rgba(239, 228, 34, 0.15);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-slow);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: var(--space-lg);
  border-bottom: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  font-size: var(--fs-lg);
}

.modal-close:hover {
  background: rgba(239, 228, 34, 0.1);
  color: var(--color-primary);
}

.modal-body {
  padding: var(--space-lg);
}

.modal-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: var(--border-subtle);
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
}

/* Tooltip */
.tooltip {
  position: relative;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.4rem 0.75rem;
  background: var(--color-bg-elevated);
  color: var(--color-text);
  font-size: var(--fs-xs);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(239, 228, 34, 0.1);
  z-index: var(--z-tooltip);
}

.tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-lg) 0;
}

.pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  background: var(--color-bg-card);
  border: 1px solid rgba(239, 228, 34, 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.pagination-item:hover {
  color: var(--color-primary);
  border-color: rgba(239, 228, 34, 0.2);
  background: rgba(239, 228, 34, 0.05);
}

.pagination-item.active {
  color: var(--color-bg);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.pagination-item.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-size: var(--fs-sm);
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.breadcrumbs .separator {
  color: var(--color-text-dim);
  font-size: var(--fs-xs);
}

.breadcrumbs .current {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}

/* Stat Blocks */
.stat-block {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  transition: all var(--transition-base);
}

.stat-block:hover {
  border-color: rgba(239, 228, 34, 0.2);
  transform: translateY(-2px);
}

.stat-block-value {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-block-label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Testimonial Block */
.testimonial-block {
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  border: var(--border-subtle);
  position: relative;
}

.testimonial-block::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(239, 228, 34, 0.15);
  line-height: 1;
}

.testimonial-block-text {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  font-style: italic;
  margin-bottom: var(--space-lg);
  padding-top: var(--space-md);
}

.testimonial-block-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-block-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  color: var(--color-bg);
  flex-shrink: 0;
}

.testimonial-block-name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
}

.testimonial-block-role {
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
}

/* Media Container */
.media-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
  border: var(--border-subtle);
}

.media-container img,
.media-container video {
  width: 100%;
  display: block;
}

.media-container-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 40, 45, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .overline {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  padding: 0.3rem 0.8rem;
  background: rgba(239, 228, 34, 0.1);
  border-radius: var(--radius-full);
}

/* Content Divider */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 228, 34, 0.15), transparent);
  margin: var(--space-2xl) 0;
  border: none;
}

.divider-thick {
  height: 3px;
  background: var(--gradient-primary);
  width: 80px;
  margin: var(--space-xl) auto;
  border-radius: var(--radius-full);
}

/* Code Blocks */
.code-block {
  background: #041A1E;
  border: 1px solid rgba(239, 228, 34, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--color-accent);
  overflow-x: auto;
  line-height: 1.6;
  margin: var(--space-md) 0;
}

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  background: rgba(239, 228, 34, 0.08);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: var(--space-4xl) var(--space-md);
  color: var(--color-text-dim);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.empty-state-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.empty-state-text {
  font-size: var(--fs-sm);
  max-width: 400px;
  margin: 0 auto;
  line-height: var(--lh-normal);
}

/* Loading States */
.skeleton {
  background: linear-gradient(90deg, var(--color-bg-card) 25%, var(--color-bg-lighter) 50%, var(--color-bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton-text {
  height: 14px;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-sm);
}

.skeleton-title {
  height: 24px;
  width: 60%;
  margin-bottom: var(--space-md);
}

.skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.skeleton-card {
  height: 200px;
  border-radius: var(--radius-lg);
}

/* Spinner */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(239, 228, 34, 0.15);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Secondary Nav */
.nav-secondary {
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-sm) 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-secondary::-webkit-scrollbar {
  display: none;
}

.nav-secondary a {
  padding: 0.5rem var(--space-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  white-space: nowrap;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.nav-secondary a:hover {
  color: var(--color-text);
  background: rgba(239, 228, 34, 0.06);
}

.nav-secondary a.active {
  color: var(--color-primary);
  background: rgba(239, 228, 34, 0.1);
  border-color: rgba(239, 228, 34, 0.2);
}

/* Data Charts Container */
.chart-container {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  padding: var(--space-lg);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

/* Progress Bar */
.progress {
  height: 8px;
  background: var(--color-bg-card);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tag / Chip */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.65rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary);
  background: var(--color-bg-card);
  border: 1px solid rgba(239, 228, 34, 0.1);
  border-radius: var(--radius-full);
  cursor: default;
  transition: all var(--transition-fast);
}

.tag:hover {
  border-color: rgba(239, 228, 34, 0.2);
  background: rgba(239, 228, 34, 0.05);
}

.tag-removable {
  cursor: pointer;
}

/* Toggle Switch */
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-bg-lighter);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--color-text);
  border-radius: 50%;
  transition: transform var(--transition-base);
}

.toggle input:checked + .toggle-slider {
  background: var(--color-primary);
}

.toggle input:checked + .toggle-slider::after {
  transform: translateX(20px);
  background: var(--color-bg);
}

/* Notification Dot */
.notification-dot {
  position: relative;
}

.notification-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--color-danger);
  border-radius: 50%;
  border: 2px solid var(--color-bg);
}

/* VIP Tier Colors */
.tier-bronze { color: var(--color-bronze); }
.tier-silver { color: var(--color-silver); }
.tier-gold { color: var(--color-gold); }
.tier-vip { color: var(--color-primary); }

/* Jackpot Counter */
.jackpot-display {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  background: linear-gradient(135deg, var(--color-gold), var(--color-primary), var(--color-gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: jackpotShimmer 3s ease infinite;
  text-align: center;
}

@keyframes jackpotShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Odds Display */
.odds {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  background: rgba(239, 228, 34, 0.08);
  border: 1px solid rgba(239, 228, 34, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.odds:hover {
  background: rgba(239, 228, 34, 0.15);
  border-color: rgba(239, 228, 34, 0.3);
  transform: scale(1.05);
}

.odds.selected {
  color: var(--color-bg);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* Game Provider Logo Strip */
.provider-strip {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  overflow-x: auto;
  padding: var(--space-md) 0;
  -webkit-overflow-scrolling: touch;
}

.provider-strip img {
  height: 28px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all var(--transition-base);
}

.provider-strip img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: var(--z-toast);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-elevated);
  border: 1px solid rgba(239, 228, 34, 0.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: var(--fs-sm);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transform: translateY(120%);
  opacity: 0;
  transition: all var(--transition-slow);
  max-width: 360px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Countdown Timer */
.countdown {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.countdown-unit {
  text-align: center;
  min-width: 56px;
  padding: var(--space-sm);
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
}

.countdown-value {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  line-height: 1;
}

.countdown-label {
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ================================================================
   RESPONSIVE: TABLET (768px)
   ================================================================ */

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .site-header .container {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .hero {
    padding: 8rem var(--space-lg) var(--space-3xl);
  }

  .hero h1 {
    font-size: var(--fs-4xl);
  }

  article.content {
    padding: var(--space-4xl) var(--space-lg);
  }

  article.content h2 {
    font-size: var(--fs-2xl);
  }

  article.content h3 {
    font-size: var(--fs-xl);
  }

  .cta-section h2 {
    font-size: var(--fs-3xl);
  }

  .footer-nav {
    gap: var(--space-md);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-blocks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  article.content table {
    font-size: var(--fs-base);
  }

  .modal {
    border-radius: var(--radius-2xl);
  }

  .hamburger {
    display: flex;
  }

  .site-header .nav-links {
    display: none;
  }
}

/* ================================================================
   RESPONSIVE: DESKTOP (1024px)
   ================================================================ */

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .site-header .nav-links {
    display: flex;
  }

  .site-header .brand img {
    height: 42px;
  }

  .hero {
    padding: 10rem var(--space-xl) var(--space-4xl);
    min-height: 90vh;
  }

  .hero h1 {
    font-size: var(--fs-5xl);
  }

  article.content {
    padding: var(--space-5xl) var(--space-xl);
  }

  article.content h2 {
    font-size: var(--fs-2xl);
  }

  article.content h3 {
    font-size: var(--fs-xl);
  }

  article.content p {
    font-size: var(--fs-base);
  }

  .cta-section {
    padding: var(--space-5xl) var(--space-xl);
  }

  .cta-section h2 {
    font-size: var(--fs-4xl);
  }

  .site-footer {
    padding: var(--space-4xl) var(--space-xl) var(--space-xl);
  }

  .footer-nav {
    gap: var(--space-lg);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-blocks-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .faq-question {
    font-size: var(--fs-md);
    padding: var(--space-lg) var(--space-xl);
  }

  .faq-answer-inner,
  .faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
  }
}

/* ================================================================
   RESPONSIVE: LARGE DESKTOP (1280px+)
   ================================================================ */

@media (min-width: 1280px) {
  :root {
    --fs-base: 1.0625rem;
  }

  .site-header .nav-links li a {
    padding: 0.5rem 0.85rem;
  }
}

/* ================================================================
   PRINT STYLES
   ================================================================ */

@media print {
  .site-header,
  .hamburger,
  .mobile-menu,
  .site-footer,
  .cta-section,
  .cta-button,
  .btn-login,
  .btn-register,
  .scroll-top,
  .nav-overlay,
  .toast,
  .modal-overlay,
  nav {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
    font-size: 12pt;
    line-height: 1.5;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: none;
  }

  .hero h1 {
    color: #111;
    font-size: 24pt;
    -webkit-text-fill-color: initial;
    background: none;
  }

  article.content {
    max-width: 100%;
    padding: 1rem 0;
  }

  article.content h2,
  article.content h3 {
    color: #111;
    page-break-after: avoid;
  }

  article.content p,
  article.content li {
    color: #333;
  }

  article.content a {
    color: #111;
    text-decoration: underline;
  }

  article.content a::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #666;
  }

  article.content table {
    border: 1px solid #ccc;
  }

  article.content th,
  article.content td {
    border: 1px solid #ddd;
    color: #111;
    padding: 0.5rem;
  }

  article.content thead {
    background: #f5f5f5;
  }

  article.content tbody tr:nth-child(even) {
    background: #fafafa;
  }

  .faq-answer {
    max-height: none !important;
    overflow: visible !important;
  }

  img {
    max-width: 100% !important;
    break-inside: avoid;
  }
}

/* ================================================================
   ANIMATIONS & KEYFRAMES
   ================================================================ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(239, 228, 34, 0.2); }
  50% { box-shadow: 0 0 40px rgba(239, 228, 34, 0.4); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border-subtle: 1px solid rgba(239, 228, 34, 0.3);
    --border-light: 1px solid rgba(239, 228, 34, 0.5);
  }

  .site-header {
    border-bottom-width: 2px;
  }

  .faq-item {
    border-width: 2px;
  }
}