:root {
  --gold:        #cc2200;
  --gold-light:  #e83020;
  --gold-dark:   #8a1a0a;
  --red:         #cc2200;
  --red-light:   #e83020;
  --red-metal:   #8a1a0a;
  --red-shine:   linear-gradient(135deg, #cc2200 0%, #ff4422 40%, #aa1800 60%, #dd3311 80%, #cc2200 100%);
  --red-glow:    rgba(204,34,0,0.25);
  --accent:      #cc2200;
  --bg:          #ffffff;
  --bg2:         #f5f5f5;
  --bg3:         #ececec;
  --surface:     #f9f9f9;
  --surface2:    #f0f0f0;
  --border:      rgba(0,0,0,0.08);
  --border2:     rgba(204,34,0,0.4);
  --border-red:  rgba(204,34,0,0.2);
  --text:        #111111;
  --text-dim:    #444444;
  --text-muted:  #888888;
  --silver:      #7a8a9a;
  --diamond:     #0090cc;
  --dark-panel:  #111418;
  --dark-surface:#1a2028;
  --font: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--bg2);
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }

.cursor, .cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--red);
  top: -4px; left: -4px;
  transition: transform 0.05s, width 0.2s, height 0.2s;
}
.cursor-follower {
  width: 28px; height: 28px;
  border: 1px solid rgba(204,34,0,0.4);
  top: -14px; left: -14px;
  transition: transform 0.15s ease-out;
}
.cursor.active { transform: scale(2.5); background: var(--red); }
.cursor-follower.active { transform: scale(0.5); border-color: var(--red); }
@media (pointer: coarse) { .cursor, .cursor-follower { display: none; } }

.loader {
  position: fixed; inset: 0;
  background: var(--dark-panel);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo img { width: 120px; margin: 0 auto 24px; }
.loader-text-fallback {
  font-family: var(--font);
  font-size: 80px;
  font-weight: 900;
  color: var(--red);
  display: none;
  margin-bottom: 24px;
  letter-spacing: 6px;
}
.loader-bar-wrap {
  width: 240px; height: 3px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 16px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red-metal), var(--red), var(--red-light));
  transition: width 0.05s linear;
  box-shadow: 0 0 12px var(--red);
}
.loader-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; gap: 32px;
  padding: 0 40px;
  height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  border-bottom-color: rgba(204,34,0,0.4);
}
.nav-logo img { height: 52px; }
.nav-logo-text {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 4px;
}
.nav-links {
  display: flex; gap: 4px;
  list-style: none;
  margin: 0 auto;
}
.nav-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 8px 16px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--red); border-bottom-color: var(--red); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--red);
  color: #fff;
  padding: 9px 22px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-light); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--red); transition: transform 0.3s, opacity 0.3s; }

.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  border-bottom: 2px solid var(--red);
  z-index: 999;
  display: flex; flex-direction: column;
  padding: 16px 32px;
  gap: 8px;
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-discord { color: var(--red) !important; border: none !important; font-weight: 800 !important; }

.section { padding: 100px 40px; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-desc { color: var(--text-muted); font-size: 16px; font-weight: 400; max-width: 500px; margin: 0 auto; }
.accent { color: var(--red); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow);
}
.btn-icon { font-size: 12px; }
.btn-secondary {
  display: inline-flex; align-items: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--red);
  background: #fff;
  border: 2px solid #fff;
  padding: 12px 32px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: transparent; color: #fff; border-color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  border: 1px solid rgba(0,0,0,0.2);
  padding: 12px 28px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline:hover { color: var(--red); border-color: var(--red); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 64px;
  background: var(--dark-panel);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,14,18,0.5) 0%,
    rgba(10,14,18,0.2) 40%,
    rgba(10,14,18,0.75) 80%,
    rgba(10,14,18,1) 100%
  );
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(204,34,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,34,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove { 0% { transform: translateY(0); } 100% { transform: translateY(60px); } }
.hero-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 24px;
  animation: heroIn 1s ease 1.8s both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 20px;
  margin-bottom: 32px;
  background: rgba(204,34,0,0.3);
  backdrop-filter: blur(4px);
}
.hero-logo-wrap { margin-bottom: 16px; }
.hero-logo {
  height: 140px;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(204,34,0,0.5)) drop-shadow(0 0 80px rgba(204,34,0,0.2));
}
.hero-logo-text {
  font-size: 120px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -4px;
}
.hero-subtitle {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 6px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.stat { padding: 20px 40px; text-align: center; }
.stat-num {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  display: block;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(180deg, rgba(204,34,0,0.6), transparent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.news-section {
  max-width: 100%;
  padding: 100px 40px;
  background: var(--bg);
  border-top: 4px solid transparent;
  border-image: var(--red-shine) 1;
}
.news-section > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
.news-section .section-header { max-width: 1400px; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto 48px;
}
.news-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.news-card:hover {
  border-color: rgba(204,34,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(204,34,0,0.08);
}
.news-card-img { position: relative; overflow: hidden; min-height: 180px; }
.news-card--featured .news-card-img { min-height: 280px; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-placeholder-img {
  width: 100%; height: 100%; min-height: inherit;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
}
.news-icon { font-size: 48px; }
.news-card-body { padding: 28px; }
.news-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}
.news-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.25;
  color: var(--text);
}
.news-card--featured .news-title { font-size: 28px; }
.news-excerpt { color: var(--text-dim); font-size: 14px; line-height: 1.65; margin-bottom: 20px; font-weight: 400; }
.news-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.news-date { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.news-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  background: rgba(204,34,0,0.07);
  color: var(--red);
  border: 1px solid rgba(204,34,0,0.15);
  padding: 2px 10px;
}
.news-footer { text-align: center; max-width: 1400px; margin: 0 auto; }

.vehicles-section { background: var(--bg2); padding: 100px 40px; }

.vehicle-filters { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 8px 20px;
  background: var(--bg);
  transition: all 0.2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.filter-btn:hover, .filter-btn.active {
  color: var(--red);
  border-color: var(--red);
  background: rgba(204,34,0,0.05);
}

.garage-viewer {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  min-height: 520px;
  overflow: hidden;
  background: var(--bg);
}
.garage-list {
  background: var(--bg);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  max-height: 520px;
}
.garage-list::-webkit-scrollbar { width: 2px; }
.garage-list::-webkit-scrollbar-thumb { background: var(--red); }
.vehicle-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.vehicle-item:hover, .vehicle-item.selected { background: rgba(204,34,0,0.04); }
.vehicle-item.selected { border-left: 3px solid var(--red); }
.vehicle-thumb {
  width: 60px; height: 40px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}
.vehicle-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-item-info { flex: 1; min-width: 0; }
.vehicle-item-name { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vehicle-item-cat { font-size: 10px; font-weight: 500; letter-spacing: 2px; color: var(--text-muted); }
.vehicle-vip-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  letter-spacing: 1px;
  border-radius: 2px;
  flex-shrink: 0;
}
.badge-silver { background: rgba(122,138,154,0.1); color: var(--silver); border: 1px solid rgba(122,138,154,0.3); }
.badge-gold { background: rgba(204,34,0,0.12); color: var(--red); border: 1px solid rgba(204,34,0,0.3); }
.badge-diamond { background: rgba(0,144,204,0.1); color: var(--diamond); border: 1px solid rgba(0,144,204,0.3); }
.badge-free { background: rgba(0,160,80,0.08); color: #008040; border: 1px solid rgba(0,160,80,0.25); }

.garage-spotlight {
  position: relative;
  background: var(--dark-panel);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px;
  overflow: hidden;
  min-height: 520px;
}
.spotlight-bg { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; }
.spotlight-ring { position: absolute; border-radius: 50%; border: 1px solid; bottom: -20px; }
.spotlight-ring--1 { width: 600px; height: 200px; border-color: rgba(204,34,0,0.06); }
.spotlight-ring--2 { width: 400px; height: 140px; border-color: rgba(204,34,0,0.09); }
.spotlight-ring--3 { width: 220px; height: 80px; border-color: rgba(204,34,0,0.12); }
.spotlight-floor {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,34,0,0.4), rgba(204,34,0,0.3), transparent);
}
.spotlight-car {
  position: relative; z-index: 1;
  width: 100%; max-width: 500px;
  text-align: center; margin-bottom: 32px;
}
.spotlight-car img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(204,34,0,0.3)) drop-shadow(0 0 40px rgba(204,34,0,0.1));
  animation: carFloat 4s ease-in-out infinite;
  transition: opacity 0.3s;
}
@keyframes carFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.car-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; color: rgba(255,255,255,0.3); }
.car-placeholder-icon { font-size: 64px; opacity: 0.3; }
.car-placeholder p { font-size: 14px; font-weight: 500; letter-spacing: 1px; }
.spotlight-info { position: relative; z-index: 1; width: 100%; max-width: 600px; }
.info-empty { text-align: center; color: rgba(255,255,255,0.3); font-size: 13px; font-weight: 500; letter-spacing: 1px; }

.car-info-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  backdrop-filter: blur(10px);
}
.car-info-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.car-info-name { font-size: 28px; font-weight: 900; letter-spacing: -0.5px; color: #fff; line-height: 1; }
.car-info-category { font-size: 11px; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.car-info-price { font-size: 22px; font-weight: 800; color: var(--red); }
.car-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px; }
.car-stat { background: rgba(255,255,255,0.04); padding: 12px; text-align: center; }
.car-stat-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.35); display: block; margin-bottom: 4px; }
.car-stat-val { font-size: 20px; font-weight: 800; color: #fff; }
.car-stat-bar-wrap { height: 3px; background: rgba(255,255,255,0.1); margin-top: 6px; overflow: hidden; }
.car-stat-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red-metal), var(--red), var(--red-light));
  transition: width 0.6s ease;
}

.vip-section {
  position: relative;
  background: var(--dark-panel);
  max-width: 100%;
  padding: 100px 40px;
  overflow: hidden;
}
.vip-section .section-tag { color: var(--red); }
.vip-section .section-title { color: #fff; }
.vip-section .section-desc { color: rgba(255,255,255,0.5); }
.vip-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(204,34,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,34,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.vip-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red-shine);
}
.vip-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 32px;
  align-items: start;
}
.vip-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.vip-card:hover { transform: translateY(-6px); }
.vip-featured {
  border-color: var(--red) !important;
  box-shadow: 0 0 40px rgba(204,34,0,0.2);
  transform: translateY(-8px);
}
.vip-featured:hover { transform: translateY(-14px); }
.vip-silver:hover { border-color: var(--silver); box-shadow: 0 0 30px rgba(122,138,154,0.1); }
.vip-diamond:hover { border-color: var(--diamond); box-shadow: 0 0 30px rgba(0,144,204,0.1); }
.vip-popular-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 16px;
  white-space: nowrap;
}
.vip-card-top { margin-bottom: 28px; }
.vip-badge { font-size: 20px; font-weight: 800; letter-spacing: 3px; color: #fff; margin-bottom: 16px; }
.vip-price { display: flex; align-items: baseline; gap: 4px; }
.price-amount { font-size: 52px; font-weight: 900; line-height: 1; color: #fff; }
.vip-gold .price-amount { color: var(--red-light); }
.vip-diamond .price-amount { color: var(--diamond); }
.price-currency { font-size: 26px; font-weight: 700; vertical-align: super; }
.price-period { color: rgba(255,255,255,0.35); font-size: 14px; margin-left: 4px; }
.vip-perks { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.vip-perks li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75); }
.perk-icon { width: 20px; text-align: center; color: var(--red-light); font-style: normal; flex-shrink: 0; }
.perk-disabled { opacity: 0.3; }
.perk-disabled .perk-icon { color: rgba(255,255,255,0.4); }
.vip-btn {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 14px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.2s;
}
.vip-btn--silver { background: rgba(122,138,154,0.15); color: var(--silver); border: 1px solid var(--silver); }
.vip-btn--silver:hover { background: var(--silver); color: #fff; }
.vip-btn--gold { background: var(--red); color: #fff; }
.vip-btn--gold:hover { background: var(--red-light); }
.vip-btn--diamond { background: rgba(0,144,204,0.1); color: var(--diamond); border: 1px solid var(--diamond); }
.vip-btn--diamond:hover { background: var(--diamond); color: #fff; }
.vip-disclaimer { text-align: center; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.3); max-width: 1100px; margin: 0 auto; letter-spacing: 0.5px; }

.rules-section { background: var(--bg); }
.rules-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
}
.rules-nav {
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 8px 0;
}
.rules-nav-title { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--text-muted); padding: 12px 20px; }
.rule-nav-btn {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  text-align: left;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  transition: all 0.2s;
  background: none;
}
.rule-nav-btn:hover { color: var(--text); background: rgba(204,34,0,0.04); }
.rule-nav-btn.active { color: var(--red); border-left-color: var(--red); background: rgba(204,34,0,0.06); }
.rule-nav-icon { font-size: 16px; }

.rules-content { background: #fff; }
.rule-panel { display: none; padding: 40px; animation: panelIn 0.3s ease; }
.rule-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
.rule-panel-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}
.rule-item {
  display: flex; gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rule-item:hover { box-shadow: 0 4px 16px rgba(204,34,0,0.06); border-color: rgba(204,34,0,0.2); }
.rule-num { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--red); flex-shrink: 0; padding-top: 3px; }
.rule-body strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.rule-body p { color: var(--text-dim); font-size: 14px; line-height: 1.7; font-weight: 400; }

.sanctions-table { border: 1px solid var(--border); margin-bottom: 32px; }
.sanction-row { display: grid; grid-template-columns: 1fr auto; padding: 14px 20px; border-bottom: 1px solid var(--border); align-items: center; font-size: 14px; font-weight: 500; }
.sanction-header { background: var(--bg2); font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--text-muted); }
.sanction-level { font-size: 10px; font-weight: 700; letter-spacing: 2px; padding: 3px 12px; border-radius: 2px; }
.warn { background: rgba(255,200,0,0.1); color: #c08000; border: 1px solid rgba(255,200,0,0.3); }
.kick { background: rgba(255,130,0,0.1); color: #c06000; border: 1px solid rgba(255,130,0,0.3); }
.temp { background: rgba(204,34,0,0.08); color: var(--red); border: 1px solid rgba(204,34,0,0.25); }
.perm { background: rgba(120,0,0,0.1); color: #900; border: 1px solid rgba(120,0,0,0.3); }

.appeal-box { background: var(--surface); border: 1px solid var(--border); padding: 28px; text-align: center; }
.appeal-box h4 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.appeal-box p { color: var(--text-dim); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }

.footer {
  background: var(--dark-panel);
  border-top: 3px solid var(--red);
  padding: 60px 40px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-logo-text { font-size: 36px; font-weight: 900; color: var(--red-light); margin-bottom: 16px; display: block; letter-spacing: 4px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--red); color: var(--red); background: rgba(204,34,0,0.1); }
.footer-links h4 { font-size: 12px; font-weight: 700; letter-spacing: 3px; color: var(--red-light); margin-bottom: 20px; }
.footer-links a { display: block; color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 400; margin-bottom: 12px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-server h4 { font-size: 12px; font-weight: 700; letter-spacing: 3px; color: var(--red-light); margin-bottom: 20px; }
.server-status {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22cc44;
  box-shadow: 0 0 8px #22cc44;
  animation: pulse 2s ease-in-out infinite;
}
.status-dot.offline { background: var(--red); box-shadow: 0 0 8px var(--red); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.server-ip { display: flex; flex-direction: column; gap: 6px; }
.ip-label { font-size: 9px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.3); }
.ip-copy {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  width: 100%;
}
.ip-copy:hover { border-color: var(--red); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.25); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .news-card--featured { grid-template-columns: 1fr; grid-column: 1 / -1; }
  .news-card--featured .news-card-img { min-height: 220px; }
  .vip-cards { grid-template-columns: 1fr; max-width: 440px; }
  .vip-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .garage-viewer { grid-template-columns: 1fr; }
  .garage-list { max-height: 240px; display: grid; grid-template-columns: 1fr 1fr; }
  .rules-layout { grid-template-columns: 1fr; }
  .rules-nav { border-right: none; border-bottom: 1px solid var(--border); display: flex; flex-wrap: wrap; padding: 8px; gap: 4px; }
  .rule-nav-btn { flex: 0 0 auto; border-left: none; border-bottom: 2px solid transparent; padding: 8px 12px; font-size: 12px; }
  .rule-nav-btn.active { border-left: none; border-bottom-color: var(--red); background: rgba(204,34,0,0.04); }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 70px 20px; }
  .news-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .car-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .section-title { font-size: 36px; }
  .hero-logo { height: 90px; }
  .hero-subtitle { font-size: 26px; }
  .garage-list { grid-template-columns: 1fr; }
}
