/* === BASE STYLES === */:root {
  --accent: #c8102e;
  --accent-hover: #e8152f;
  --accent-glow: rgba(200, 16, 46, 0.4);
  --accent-secondary: #ffd700;
  --accent-secondary-glow: rgba(255, 215, 0, 0.3);
  --bg-base: #0a0a0f;
  --bg-surface: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(200, 16, 46, 0.35);
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a0a10 50%, #0a0a0f 100%);
  --gradient-accent: linear-gradient(135deg, #c8102e, #8b0018);
  --gradient-gold: linear-gradient(135deg, #ffd700, #b8860b);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 4px 20px rgba(200, 16, 46, 0.35);
  --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.25);
  --text-primary: #f0f0f8;
  --text-secondary: #a0a0b8;
  --text-muted: #606078;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

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

a:hover {
  color: var(--accent-secondary);
}

h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

strong {
  color: var(--text-primary);
}

.btn {
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--transition-bounce);
}

.btn--primary {
  background: var(--gradient-accent);
  border: none;
  box-shadow: var(--shadow-accent);
  color: #fff;
}

.btn--primary:hover {
  box-shadow: 0 6px 28px rgba(200, 16, 46, 0.55);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.btn--gold {
  background: var(--gradient-gold);
  border: none;
  box-shadow: var(--shadow-gold);
  color: #0a0a0f;
}

.btn--gold:hover {
  box-shadow: 0 6px 28px rgba(255, 215, 0, 0.45);
  color: #0a0a0f;
  transform: translateY(-2px) scale(1.03);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: all var(--transition-base);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), var(--shadow-accent);
  transform: translateY(-4px);
}

.section-title {
  color: var(--text-primary);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  background: var(--gradient-accent);
  border-radius: 2px;
  bottom: -10px;
  content: '';
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 52px;
}

.section-spacer {
  padding-bottom: 5rem;
  padding-top: 5rem;
}

.table-responsive {
  border-radius: var(--radius-md);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.08), rgba(139, 0, 24, 0.04));
  border: 1px solid var(--border-accent);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  padding: 1.5rem;
}

.highlight-box h4 {
  color: var(--accent-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.highlight-box ul {
  margin-bottom: 0.5rem;
}

.highlight-list {
  list-style: none;
  padding-left: 0;
}

.highlight-list li {
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

.highlight-list li:last-child {
  border-bottom: none;
}

.highlight-list li::before {
  color: var(--accent);
  content: '→ ';
  font-weight: 700;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  color: var(--text-secondary);
  padding: 0.3rem 0;
}

.checklist li::before {
  color: var(--accent-secondary);
  content: '✓ ';
  font-weight: 700;
}

/* === LAYOUT STYLES === */
.site-header {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1000;
}

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

.header-inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  min-height: 68px;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  position: relative;
  width: 100%;
}

.logo {
  flex-shrink: 0;
  margin-right: auto;
  z-index: 10;
}

.logo-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hamburger {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  padding: 8px 10px;
  width: 44px;
  z-index: 10;
}

.hamburger span {
  background: var(--text-primary);
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: all var(--transition-base);
  width: 22px;
}

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

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

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

.main-nav {
  display: flex;
}

.nav-list {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.nav-list li a:hover {
  background: rgba(200, 16, 46, 0.1);
  color: var(--text-primary);
}

.cta-button {
  background: var(--gradient-accent);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-accent);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  max-width: 200px;
  overflow: hidden;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transition: all var(--transition-bounce);
  white-space: nowrap;
}

.cta-button:hover {
  box-shadow: 0 6px 28px rgba(200, 16, 46, 0.55);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  margin-top: 4rem;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}

.footer-inner {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 1.2rem;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.footer-nav-list li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition-base);
}

.footer-nav-list li a:hover {
  color: var(--accent);
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-disclaimer {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    display: block;
    font-size: 1rem;
    padding: 12px 16px;
    text-align: center;
    width: 100%;
  }

  .cta-button {
    display: block;
    max-width: 100%;
    text-align: center;
    width: 100%;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .footer-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-disclaimer {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    display: block;
    font-size: 1rem;
    padding: 12px 16px;
    text-align: center;
    width: 100%;
  }

  .cta-button {
    display: block;
    max-width: 100%;
    text-align: center;
    width: 100%;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}