:root {
  --bg: #0C0A0C;
  --panel: #18121A;
  --panel-2: #241922;
  --line: #33202A;
  --text: #F5F5F5;
  --text-2: #E0E0E0;
  --prose: #D1D1D1;
  --accent: #E8B04B;
  --accent-2: #E0344C;
  --on-accent: #0C0A0C;
  --radius: 4px;
}

html {
  background-color: var(--bg);
  color: var(--text);
}

body {
  background: radial-gradient(circle at 50% 0%, #1a1018 0%, var(--bg) 60%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(232, 176, 75, 0.4);
}

.site-header {
  background: rgba(12, 10, 12, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(224, 52, 76, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, border-color 0.3s ease;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.card .icon {
  background: linear-gradient(135deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  color: var(--accent);
}

.feature .icon {
  box-shadow: inset 0 0 20px rgba(232, 176, 75, 0.1);
}

.btn {
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid var(--accent);
  padding: 1rem 2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 15px rgba(232, 176, 75, 0.3);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--line);
}

.btn.secondary:hover {
  background: var(--panel-2);
  border-color: var(--accent);
}

.badge {
  background: var(--accent-2);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.facts .fact {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
}

.faq-item.active {
  border-color: var(--accent);
}

.tab {
  border-bottom: 2px solid transparent;
  color: var(--text-2);
  padding-bottom: 0.5rem;
}

.tab.active {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border: 1px solid var(--line);
}

th {
  background: var(--panel-2);
  color: var(--accent);
  letter-spacing: 0.05em;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--prose);
}

tr:last-child td {
  border-bottom: none;
}

img {
  border-radius: var(--radius);
  filter: contrast(1.1) saturate(1.1);
}

.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
  padding: 3rem 0;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1, .hero p {
  animation: fade-in-up 0.8s ease-out forwards;
}