/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-surface: #0f0f0f;
  --bg-card: #161616;
  --bg-hover: #1f1f1f;
  --gold: #ffd700;
  --gold-light: #fff4b0;
  --gold-dark: #c8a600;
  --orange: #ff8c00;
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.82);
  --text-muted: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.15);
  --green: #22c55e;
  --red: #ef4444;
  --blue: #3b82f6;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --section-gap: 112px;
  --max-width: 1200px;
  --header-h: 72px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ========== TYPOGRAPHY ========== */
.text-hero {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.text-section {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.text-headline {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.text-subhead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

.text-body { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }
.text-muted { font-size: 0.875rem; color: var(--text-muted); }
.text-sm { font-size: 0.8rem; }

.gold-text { color: var(--gold); }
.orange-text { color: var(--orange); }

/* ========== LAYOUT ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }
.section-compact { padding: 64px 0; }
.section-header { margin-bottom: 48px; }
.section-header .section-desc { margin-top: 12px; max-width: 640px; }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Nav Desktop */
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--gold); }
.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.1rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active { background: var(--bg-card); color: var(--gold); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,215,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255,140,0,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float 8s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1.2s; width: 2px; height: 2px; }
.particle:nth-child(3) { left: 45%; animation-delay: 2.5s; }
.particle:nth-child(4) { left: 65%; animation-delay: 0.8s; width: 2px; height: 2px; }
.particle:nth-child(5) { left: 80%; animation-delay: 3.2s; }
.particle:nth-child(6) { left: 90%; animation-delay: 1.8s; width: 4px; height: 4px; }
.particle:nth-child(7) { left: 35%; animation-delay: 4s; }
.particle:nth-child(8) { left: 55%; animation-delay: 2.2s; width: 2px; height: 2px; }

@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}

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

.hero-title { margin-bottom: 20px; }
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 8px 16px;
}
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-hover); }

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ========== STATS ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat-item { text-align: center; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ========== CARDS ========== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.card:hover {
  border-color: rgba(255,215,0,0.2);
  transform: translateY(-2px);
}

.card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a, #252525);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-img .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.card:hover .card-overlay { opacity: 1; }

.card-body { padding: 20px; }

.card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
}
.tag-gold { background: rgba(255,215,0,0.15); color: var(--gold); }
.tag-green { background: rgba(34,197,94,0.15); color: var(--green); }
.tag-blue { background: rgba(59,130,246,0.15); color: var(--blue); }
.tag-orange { background: rgba(255,140,0,0.15); color: var(--orange); }
.tag-red { background: rgba(239,68,68,0.15); color: var(--red); }

/* ========== GRID ========== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ========== FEATURES ========== */
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255,215,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}

/* ========== SERVER TABLE ========== */
.server-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.server-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.server-table th {
  text-align: left;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.server-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.server-table tr:last-child td { border-bottom: none; }
.server-table tr:hover td { background: var(--bg-hover); }

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.status-online { background: var(--green); }
.status-offline { background: var(--red); }

.server-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.server-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0a0a0a;
  flex-shrink: 0;
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: 0.2s;
}
.pagination a:hover,
.pagination a.active { border-color: var(--gold); color: var(--gold); }
.pagination a.active { background: rgba(255,215,0,0.1); }

/* ========== FILTER BAR ========== */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  transition: 0.2s;
  font-family: inherit;
}
.filter-btn:hover,
.filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(255,215,0,0.08); }

/* ========== GUIDE CARDS ========== */
.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.3s;
}
.guide-card:hover { border-color: rgba(255,215,0,0.2); transform: translateY(-2px); }

.guide-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a, #252525);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.guide-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.guide-body { padding: 20px; }
.guide-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ========== NEWS ========== */
.news-card {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.3s;
}
.news-card:hover { border-color: rgba(255,215,0,0.2); transform: translateY(-2px); }

.news-card-img {
  width: 280px;
  min-height: 180px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a1a1a, #252525);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-body { padding: 24px; flex: 1; }
.news-date { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }

.news-grid .news-card { flex-direction: column; }
.news-grid .news-card-img { width: 100%; min-height: 160px; }

/* ========== REVIEWS ========== */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0a0a0a;
  flex-shrink: 0;
}

.review-stars { color: var(--gold); font-size: 0.9rem; }
.review-text { color: var(--text-muted); font-style: italic; line-height: 1.7; }

/* ========== FAQ ========== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: 0.2s;
}
.faq-question:hover { background: var(--bg-hover); }

.faq-icon {
  transition: transform 0.3s;
  color: var(--text-muted);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  background: var(--bg-surface);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 20px 24px;
}
.faq-answer p { color: var(--text-muted); line-height: 1.7; }

/* ========== FORM ========== */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }

.form-textarea { min-height: 140px; resize: vertical; }

/* ========== NEWSLETTER ========== */
.newsletter-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 24px auto 0;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
}
.newsletter-form input:focus { border-color: var(--gold); }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-top: calc(var(--header-h) + 24px);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--text-secondary); }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.4; }

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 40px 0 24px;
}
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--text-muted); max-width: 600px; }

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-brand p { color: var(--text-muted); margin-top: 12px; max-width: 320px; font-size: 0.875rem; }

.footer-col h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links { display: flex; gap: 16px; }
.footer-links a:hover { color: var(--gold); }

/* ========== SIDEBAR ========== */
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.sidebar-link:hover { color: var(--gold); }

/* ========== TABS ========== */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.2s;
  font-family: inherit;
}
.tab-btn:hover,
.tab-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(255,215,0,0.08); }

/* ========== SEO TEXT ========== */
.seo-text {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seo-text h2 { font-size: 1.3rem; color: var(--text-primary); margin-bottom: 16px; }
.seo-text p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.8; margin-bottom: 12px; }
.seo-text .keywords {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.seo-text .keywords a {
  font-size: 0.8rem;
  color: var(--gold-dark);
}
.seo-text .keywords a:hover { color: var(--gold); }

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.value-list { display: flex; flex-direction: column; gap: 24px; }
.value-item { display: flex; gap: 16px; }
.value-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,215,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .grid-4 { grid-template-columns: 1fr; gap: 24px; }

  .news-card { flex-direction: column; }
  .news-card-img { width: 100%; min-height: 160px; }

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

  .hero { min-height: 70vh; }
  .hero-actions { flex-direction: column; align-items: center; }

  .newsletter-form { flex-direction: column; }

  .about-grid { gap: 32px; }
  .server-table th, .server-table td { padding: 12px 16px; }

  .page-header { padding-top: calc(var(--header-h) + 16px); }
  .breadcrumb { padding-top: calc(var(--header-h) + 16px); }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
  .newsletter-box { padding: 32px 20px; }
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
