:root {
  --glow: 0 0 24px rgba(79, 125, 255, 0.4);
  --card-shadow: 0 12px 34px -22px rgba(0, 0, 0, 0.6);
}

body {
  background: linear-gradient(135deg, #0A0F1F 0%, #131A2E 100%);
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(79, 125, 255, 0.15), transparent);
  pointer-events: none;
  z-index: 0;
}

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

.hero {
  background: linear-gradient(180deg, rgba(79, 125, 255, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--line);
}

.hero-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-weight: 500;
}

.btn {
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 4px 14px rgba(79, 125, 255, 0.35);
}

.btn-primary:hover {
  box-shadow: var(--glow), 0 6px 20px rgba(79, 125, 255, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(79, 125, 255, 0.1);
}

.card, .feature, .tile, .faq-item, .offer, .access {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.card:hover, .feature:hover, .tile:hover, .access:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 48px -24px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--accent);
  transform: translateY(-4px);
}

.feature .icon, .access .icon {
  background: linear-gradient(135deg, rgba(79, 125, 255, 0.15), rgba(34, 211, 238, 0.15));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature .icon svg, .access .icon svg {
  stroke: var(--accent);
}

.tile {
  background: var(--panel-2);
  overflow: hidden;
}

.tile img {
  transition: transform 0.4s ease;
}

.tile:hover img {
  transform: scale(1.05);
}

.tile .gp {
  background: rgba(79, 125, 255, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--on-accent);
  border-radius: calc(var(--radius) * 2);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tab {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.25s ease;
}

.tab:hover {
  background: rgba(79, 125, 255, 0.1);
  border-color: var(--accent);
}

.tab.active {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(79, 125, 255, 0.4);
}

.faq-q {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.faq-item:hover {
  background: var(--panel-2);
}

a:not(.btn):not(.tile):not(.tab) {
  color: var(--accent-2);
  font-weight: 500;
  transition: color 0.2s ease;
}

a:not(.btn):not(.tile):not(.tab):hover {
  color: var(--accent);
}

.offer {
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  border-left: 3px solid var(--accent);
}

.offer-badge {
  background: var(--accent);
  color: var(--on-accent);
  border-radius: calc(var(--radius) / 2);
  font-weight: 700;
}

.chip {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 2);
  font-weight: 600;
  transition: all 0.25s ease;
}

.chip:hover {
  border-color: var(--accent-2);
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.25);
}

.article h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  border-bottom: 2px solid var(--line);
}

.table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.table th {
  background: var(--panel-2);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.table tr {
  border-bottom: 1px solid var(--line);
}

.trust {
  border-top: 1px solid var(--line);
}

.trust span {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.t18 {
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
}