@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --red:         #e8302a;
  --red-bright:  #ff3d36;
  --red-glow:    rgba(232, 48, 42, 0.35);
  --red-subtle:  rgba(232, 48, 42, 0.08);

  --bg-base:     #090b0f;
  --bg-deep:     #060809;
  --bg-surface:  #0e1218;
  --bg-card:     #111620;
  --bg-card2:    #141a26;
  --bg-glass:    rgba(14, 18, 24, 0.75);

  --border:      rgba(255,255,255,0.06);
  --border-red:  rgba(232, 48, 42, 0.3);

  --text-primary:   #f0f2f5;
  --text-secondary: #8a9ab5;
  --text-muted:     #4a5568;
  --text-accent:    #e8302a;

  --font-display: 'Rajdhani', sans-serif;
  --font-body:    'Exo 2', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-red:  0 0 30px rgba(232,48,42,0.2), 0 0 60px rgba(232,48,42,0.08);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);

  --transition:      0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

::selection { background: var(--red); color: #fff; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary { background: var(--red); color: #fff; box-shadow: 0 0 20px var(--red-glow); }
.btn-primary:hover { background: var(--red-bright); box-shadow: 0 0 35px rgba(255,61,54,0.5); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text-primary); border: 1px solid var(--border); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,48,42,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.card:hover { border-color: var(--border-red); transform: translateY(-4px); box-shadow: var(--shadow-red), var(--shadow-card); }
.card:hover::before { opacity: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.badge-green { background: rgba(16,185,129,0.12); color: #10b981; border: 1px solid rgba(16,185,129,0.2); }
.badge-red   { background: rgba(232,48,42,0.12);  color: var(--red); border: 1px solid var(--border-red); }
.badge-blue  { background: rgba(59,130,246,0.12); color: #3b82f6; border: 1px solid rgba(59,130,246,0.2); }
.badge-gold  { background: rgba(245,158,11,0.12); color: #f59e0b; border: 1px solid rgba(245,158,11,0.2); }

.badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 60px 0;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(9, 11, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 10;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px var(--red-glow);
  flex-shrink: 0;
}

.logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.logo-text span { color: var(--red); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 9, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-slow);
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-nav.open a { transform: translateY(0); opacity: 1; }
.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.30s; }
.mobile-nav.open a:nth-child(7) { transition-delay: 0.35s; }
.mobile-nav a:hover { color: var(--red); }

.mobile-nav-divider {
  width: 60px; height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center bottom, rgba(232,48,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; max-width: 260px; }

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; fill: var(--text-secondary); transition: var(--transition); }
.social-link:hover { background: var(--red-subtle); border-color: var(--border-red); }
.social-link:hover svg { fill: var(--red); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-secondary); font-size: 0.9rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--text-primary); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.footer-bottom a { color: var(--text-secondary); transition: var(--transition); }
.footer-bottom a:hover { color: var(--red); }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 12s ease-out;
}

.hero-bg-image.loaded {
  transform: scale(1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(6,8,9,0.92) 0%, rgba(6,8,9,0.6) 55%, rgba(6,8,9,0.25) 100%),
    linear-gradient(to top, rgba(6,8,9,0.85) 0%, transparent 40%);
}

.hero-grid-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse at 35% 50%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.1) 55%, transparent 80%);
  mask-image: radial-gradient(ellipse at 35% 50%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.1) 55%, transparent 80%);
}

.hero-grid-lines {
  position: absolute;
  inset: -60%;
  background-image:
    linear-gradient(rgba(232,48,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,48,42,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  animation: grid-drift 25s linear infinite;
}

@keyframes grid-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(52px, 52px); }
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -10%; left: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(232,48,42,0.1) 0%, rgba(232,48,42,0.03) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: glow-drift-a 9s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%; right: 30%;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,48,42,0.06) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(60px);
  animation: glow-drift-b 13s ease-in-out infinite alternate-reverse;
}

.hero-glow-center {
  position: absolute;
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(232,48,42,0.04) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glow-pulse 7s ease-in-out infinite alternate;
}

@keyframes glow-drift-a {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, 15px) scale(1.06); }
}

@keyframes glow-drift-b {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-15px, -20px) scale(1.04); }
}

@keyframes glow-pulse {
  from { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
  to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(6,8,9,0.5) 0%, transparent 15%, transparent 75%, rgba(6,8,9,0.9) 100%);
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow .badge { font-size: 0.72rem; }

.hero-eyebrow-sep {
  width: 1px; height: 16px;
  background: var(--border);
}

.hero-eyebrow > span:last-child {
  font-family: var(--font-mono);
  font-size: 0.75rem;
 
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(11, 59, 43, 0.315); color: #18946b; border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

h1.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 20px;
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.ht-line { display: block; }
.ht-line span { color: var(--red); }

.ht-accent {
  color: var(--red);
  text-shadow: 0 0 40px rgba(232,48,42,0.4);
  position: relative;
}

.ht-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), transparent 80%);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 28px;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child { border-right: none; }
.hero-stat-sep { display: none; }

.hero-stat strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.server-status-card {
  background: rgba(14, 18, 24, 0.82);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.server-status-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.server-status-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(ellipse, rgba(232,48,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ssc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.ssc-header h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.ssc-players { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }

.ssc-players strong {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

.ssc-players span { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.08em; }

.player-bar-wrap {
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}

.player-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  border-radius: 100px;
  box-shadow: 0 0 10px var(--red-glow);
  transition: width 1s ease;
  width: 0%;
}

.ssc-ip { display: flex; flex-direction: column; gap: 8px; }

.ssc-ip label {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ip-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.ip-box code {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-primary);
  flex: 1;
  letter-spacing: 0.05em;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.copy-btn:hover { color: var(--red); background: var(--red-subtle); }
.copy-btn svg { width: 16px; height: 16px; }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  z-index: 5;
  animation: bob 2.5s ease-in-out infinite;
}

.scroll-indicator svg { width: 20px; height: 20px; }

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

.why-us { background: var(--bg-deep); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.why-card:hover { border-color: var(--border-red); transform: translateY(-6px); box-shadow: var(--shadow-red), var(--shadow-card); }
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 1.8; }

.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-card p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

.games-section { background: var(--bg-base); }

.games-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  cursor: default;
}

.game-card:hover {
  border-color: var(--border-red);
  box-shadow: var(--shadow-red), var(--shadow-card);
  transform: translateY(-5px);
}

.game-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-card2);
  flex-shrink: 0;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.06);
}

.game-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card2);
}

.game-card-img-placeholder[data-game="SW"]  { background: linear-gradient(135deg, #0d1a2e 0%, #0a0f1a 100%); }
.game-card-img-placeholder[data-game="UHC"] { background: linear-gradient(135deg, #1a0a0a 0%, #0f0808 100%); }
.game-card-img-placeholder[data-game="KB"]  { background: linear-gradient(135deg, #0a1225 0%, #080e1d 100%); }
.game-card-img-placeholder[data-game="FFA"] { background: linear-gradient(135deg, #1a1200 0%, #110d00 100%); }
.game-card-img-placeholder svg { width: 100px; height: 100px; opacity: 0.9; }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,22,32,0.92) 0%, rgba(17,22,32,0.45) 45%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.game-card:hover .game-card-overlay {
  background: linear-gradient(to top, rgba(17,22,32,0.96) 0%, rgba(17,22,32,0.5) 50%, rgba(232,48,42,0.05) 100%);
}

.game-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(232,48,42,0.88);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
}

.game-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.game-card-meta { display: flex; gap: 6px; margin-bottom: 2px; }

.game-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  transition: var(--transition);
}

.game-card:hover .game-tag { color: var(--red); border-color: var(--border-red); background: var(--red-subtle); }

.game-card-body h3 { font-size: 1.4rem; color: var(--text-primary); line-height: 1; margin: 0; }
.game-card-body p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; margin: 0; }

.discord-section { background: var(--bg-deep); }

.discord-banner {
  background: var(--bg-card2);
  border: 1px solid rgba(88,101,242,0.3);
  border-radius: var(--radius-xl);
  padding: 60px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.discord-banner::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(88,101,242,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.discord-glow {
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse at top right, rgba(88,101,242,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.discord-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7289da;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.discord-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: #7289da;
  border-radius: 1px;
}

.discord-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.discord-banner p  { color: var(--text-secondary); font-size: 1rem; margin-bottom: 28px; max-width: 460px; line-height: 1.7; }

.discord-meta { display: flex; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.discord-meta-item { display: flex; flex-direction: column; gap: 2px; }
.discord-meta-item strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.discord-meta-item span   { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.08em; }

.discord-visual { flex-shrink: 0; }

.discord-mockup {
  width: 260px;
  background: #1e2124;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.dm-header {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dm-header svg { width: 18px; height: 18px; fill: #7289da; }

.dm-msg { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }

.dm-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}

.dm-content strong { font-size: 0.8rem; color: #fff; display: block; margin-bottom: 2px; }
.dm-content p      { font-size: 0.78rem; color: #8a8f98; line-height: 1.5; }

.dm-input {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: #4f5660;
  margin-top: 8px;
}

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

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 12px; }
.page-hero p  { color: var(--text-secondary); font-size: 1.05rem; }

.rules-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
}

.tab-btn {
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.tab-btn.active { background: var(--red); color: #fff; }

.tab-content { display: none; }
.tab-content.active { display: block; }

.rules-section-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.rules-section-title::before {
  content: '';
  display: inline-block;
  width: 4px; height: 24px;
  background: var(--red);
  border-radius: 2px;
}

.rule-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

.rule-item {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: var(--transition);
}
.rule-item:hover { border-color: var(--border-red); }

.rule-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--red);
  padding-top: 2px;
  flex-shrink: 0;
  min-width: 24px;
}

.rule-item p { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.65; }
.rule-item strong { color: var(--text-primary); }

.punish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.punish-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
}
.punish-card:hover { border-color: var(--border-red); }
.punish-card h4 { font-size: 1rem; margin-bottom: 8px; }
.punish-card .severity { font-family: var(--font-mono); font-size: 0.72rem; display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.punish-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

.shop-redirect {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.shop-redirect-card {
  max-width: 480px; width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shop-redirect-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.shop-loader { width: 72px; height: 72px; margin: 0 auto 28px; position: relative; }
.shop-loader svg { width: 100%; height: 100%; fill: var(--red); animation: spin 2s linear infinite; filter: drop-shadow(0 0 12px var(--red-glow)); }

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

.shop-loader-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: ring-spin 1.2s linear infinite;
}

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

.shop-redirect-card h1 { font-size: 2rem; margin-bottom: 12px; }
.shop-redirect-card p  { color: var(--text-secondary); margin-bottom: 32px; font-size: 0.95rem; }

.redirect-progress { background: rgba(255,255,255,0.04); border-radius: 100px; height: 4px; overflow: hidden; margin-bottom: 28px; }
.redirect-bar { height: 100%; background: linear-gradient(90deg, var(--red), var(--red-bright)); border-radius: 100px; box-shadow: 0 0 8px var(--red-glow); width: 0%; transition: width 5s linear; }

.category-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }

.cat-btn {
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: var(--transition);
}
.cat-btn:hover { border-color: var(--border-red); color: var(--text-primary); }
.cat-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

.team-group { margin-bottom: 52px; }

.team-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  transition: var(--transition);
  cursor: default;
}

.team-group-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: letter-spacing 0.3s ease;
}

.team-group-header:hover h3 { letter-spacing: 0.08em; }

.team-group[data-category="majitel"] .team-group-header { border-bottom-color: var(--red); }
.team-group[data-category="helpers"]   .team-group-header { border-bottom-color: #3b82f6; }
.team-group[data-category="builders"]  .team-group-header { border-bottom-color: #10b981; }
.team-group[data-category="devteam"]    .team-group-header { border-bottom-color: #a8811e; }
.team-group[data-category="spravce"]    .team-group-header { border-bottom-color: #5cf65c; }
.team-group[data-category="techteam"] .team-group-header { border-bottom-color: #18bdb4; }

.team-group[data-category="majitel"] .team-group-header h3 { color: var(--red); }
.team-group[data-category="devteam"]    .team-group-header h3 { color: #a8811e; }
.team-group[data-category="helpers"]   .team-group-header h3 { color: #3b82f6; }
.team-group[data-category="builders"]  .team-group-header h3 { color: #10b981; }
.team-group[data-category="spravce"]    .team-group-header h3 { color: #5cf65c; }
.team-group[data-category="techteam"] .team-group-header h3 { color: #18bdb4; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
}

.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
  animation: member-float 4s ease-in-out infinite;
}

.team-grid .member-card:nth-child(1) { animation-delay: 0.0s; }
.team-grid .member-card:nth-child(2) { animation-delay: 0.4s; }
.team-grid .member-card:nth-child(3) { animation-delay: 0.8s; }
.team-grid .member-card:nth-child(4) { animation-delay: 1.2s; }
.team-grid .member-card:nth-child(5) { animation-delay: 1.6s; }
.team-grid .member-card:nth-child(6) { animation-delay: 2.0s; }
.team-grid .member-card:nth-child(7) { animation-delay: 2.4s; }
.team-grid .member-card:nth-child(8) { animation-delay: 2.8s; }



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

.member-card:hover::before { right: 100%; }

.team-group[data-category="majitel"] .member-card:hover { 
  border-color: var(--red); 
  box-shadow: 0 10px 30px rgba(232,48,42,0.2); 
  transform: translateY(-10px) scale(1.02); 
  animation-play-state: paused; 
}
.team-group[data-category="devteam"] .member-card:hover { 
  border-color: #a8811e; 
  box-shadow: 0 10px 30px rgba(168,129,30,0.2); 
  transform: translateY(-10px) scale(1.02); 
  animation-play-state: paused; 
}
.team-group[data-category="helpers"] .member-card:hover { 
  border-color: #3b82f6; 
  box-shadow: 0 10px 30px rgba(59,130,246,0.2); 
  transform: translateY(-10px) scale(1.02); 
  animation-play-state: paused; 
}
.team-group[data-category="builders"] .member-card:hover { 
  border-color: #10b981; 
  box-shadow: 0 10px 30px rgba(16,185,129,0.2); 
  transform: translateY(-10px) scale(1.02); 
  animation-play-state: paused; 
}
.team-group[data-category="spravce"] .member-card:hover { 
  border-color: #5cf65c; 
  box-shadow: 0 10px 30px rgba(92,246,92,0.2); 
  transform: translateY(-10px) scale(1.02); 
  animation-play-state: paused; 
}
.team-group[data-category="techteam"] .member-card:hover { 
  border-color: #18bdb4; 
  box-shadow: 0 10px 30px rgba(24,189,180,0.2); 
  transform: translateY(-10px) scale(1.02); 
  animation-play-state: paused; 
}
.member-avatar {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  image-rendering: pixelated;
}

.member-card:hover .member-avatar img { transform: scale(1.1) rotate(-3deg); }

.team-group[data-category="majitel"] .member-card:hover .member-avatar { 
  border-color: var(--red); 
}
.team-group[data-category="devteam"] .member-card:hover .member-avatar { 
  border-color: #a8811e; 
}
.team-group[data-category="helpers"] .member-card:hover .member-avatar { 
  border-color: #3b82f6; 
}
.team-group[data-category="builders"] .member-card:hover .member-avatar { 
  border-color: #10b981; 
}
.team-group[data-category="spravce"] .member-card:hover .member-avatar { 
  border-color: #5cf65c; 
}
.team-group[data-category="techteam"] .member-card:hover .member-avatar { 
  border-color: #18bdb4; 
}
.member-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.member-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
  position: relative;
}

.member-card:hover h4 { transform: translateY(-2px); }

.member-role {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  animation: role-pulse 3s ease-in-out infinite;
  transition: letter-spacing 0.3s ease;
}

.member-card:hover .member-role { letter-spacing: 0.1em; animation-play-state: paused; }

@keyframes role-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

.team-group[data-category="majitel"]   .member-role { color: var(--red); }
.team-group[data-category="devteam"]   .member-role { color: #a8811e; }
.team-group[data-category="helpers"]   .member-role { color: #3b82f6; }
.team-group[data-category="builders"]  .member-role { color: #10b981; }
.team-group[data-category="spravce"]   .member-role { color: #5cf65c; }
.team-group[data-category="techteam"] .member-role { color: #18bdb4; }
.member-status { display: none; }

.nabory-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }

.nabory-anchor {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nabory-anchor:hover { border-color: var(--border-red); color: var(--text-primary); }

.role-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.role-section::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--red); }
.role-section:hover { border-color: var(--border-red); }

.role-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.role-title-wrap h2 { font-size: 2rem; margin-bottom: 8px; }
.role-title-wrap p  { color: var(--text-secondary); font-size: 0.95rem; }

.role-status { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 100px; font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0; }
.role-status.open   { background: rgba(16,185,129,0.1); color: #10b981; border: 1px solid rgba(16,185,129,0.25); }
.role-status.closed { background: rgba(239,68,68,0.1);  color: #ef4444; border: 1px solid rgba(239,68,68,0.25); }
.role-status .dot   { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: pulse-dot 2s infinite; }

.role-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.role-col h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.role-col ul { display: flex; flex-direction: column; gap: 8px; }
.role-col ul li { font-size: 0.88rem; color: var(--text-secondary); display: flex; gap: 8px; align-items: flex-start; }
.role-col ul li::before { content: '▸'; color: var(--red); flex-shrink: 0; margin-top: 1px; }

.connect-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 60px; }

.step-card {
  display: flex;
  gap: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
}
.step-card:hover { border-color: var(--border-red); transform: translateX(6px); }
.step-card:not(:last-child)::after { content: ''; position: absolute; bottom: -16px; left: 60px; width: 2px; height: 16px; background: var(--border); }

.step-num {
  width: 48px; height: 48px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

.step-content h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step-content p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 12px; }

.ip-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  width: fit-content;
}
.ip-highlight code { font-family: var(--font-mono); font-size: 1.2rem; color: var(--red); letter-spacing: 0.05em; }

.faq-section { margin-top: 80px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--border-red); }

.faq-question { width: 100%; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--text-primary); text-align: left; transition: var(--transition); }
.faq-question:hover { color: var(--red); }
.faq-question svg { width: 18px; height: 18px; stroke: var(--text-muted); fill: none; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(180deg); stroke: var(--red); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

.text-center { text-align: center; }
.text-red    { color: var(--red); }
.highlight   { color: var(--red); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--bg-card2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.88rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9998;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg  { width: 16px; height: 16px; fill: #10b981; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .server-status-card { max-width: 500px; }
  .discord-banner { grid-template-columns: 1fr; gap: 32px; }
  .discord-mockup { display: none; }
  .discord-banner { padding: 48px; }
  .role-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  section { padding: 70px 0; }

  .site-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .header-right .btn { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .why-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }

  .hero-inner { padding: 60px 24px 40px; }
  h1.hero-title { font-size: 2.8rem; }

  .hero-stats { width: 100%; }
  .hero-stat { padding: 14px 20px; }

  .hero-bg-overlay {
    background:
      linear-gradient(to bottom, rgba(6,8,9,0.7) 0%, rgba(6,8,9,0.55) 50%, rgba(6,8,9,0.9) 100%);
  }

  .game-card-image { height: 160px; }

  .role-section { padding: 28px 24px; }
  .role-cols { grid-template-columns: 1fr; }
  .role-header { flex-direction: column; }

  .discord-banner { padding: 36px 28px; }

  .step-card { flex-direction: column; gap: 16px; }
  .step-card:hover { transform: none; }

  .rules-tabs { gap: 4px; }
  .tab-btn { padding: 8px 12px; font-size: 0.78rem; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .nabory-nav { gap: 8px; }
  .shop-redirect-card { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; width: auto; }
  .hero-stat  { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .game-card-image { height: 150px; }
}