/* ===== Variables & Reset ===== */
:root {
  --background: hsl(220, 60%, 4%);
  --foreground: hsl(210, 40%, 98%);
  --muted-foreground: hsl(215, 20%, 55%);
  --border: hsl(220, 30%, 16%);
  --secondary: hsl(220, 40%, 12%);
  --blue: #1E40AF;
  --cyan: #00E5FF;
  --green: #34D399;
  --red: #F87171;
  --amber: #F59E0B;
  --radius: 0.75rem;
  --font: 'Inter Tight', ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.hidden { display: none !important; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: hsl(220, 30%, 20%); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ===== Utilities ===== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 8vw; }
}

.relative { position: relative; z-index: 10; }

.glass {
  background: rgba(6, 10, 19, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 64, 175, 0.15);
}

.glass-light {
  background: rgba(30, 64, 175, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.glow-cyan {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15), 0 0 60px rgba(0, 229, 255, 0.05);
}

.glow-blue {
  box-shadow: 0 0 20px rgba(30, 64, 175, 0.3), 0 0 60px rgba(30, 64, 175, 0.1);
}

.text-glow-cyan {
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.gradient-text {
  background: linear-gradient(to right, var(--blue), var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cyan { color: var(--cyan); }
.blue { color: var(--blue); }
.green { color: var(--green); }
.amber { color: var(--amber); }

.icon-sm { width: 1rem; height: 1rem; flex-shrink: 0; }

.desktop-only { display: none; }
.mobile-only { display: flex; }

@media (min-width: 768px) {
  .desktop-only { display: flex; }
  .mobile-only { display: none; }
  .desktop-only-lg { display: block; }
}

@media (max-width: 1023px) {
  .desktop-only-lg { display: none; }
}

/* ===== Buttons ===== */
a.btn {
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  height: 2.25rem;
}

.btn-lg {
  padding: 0 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  height: 3rem;
}

.btn-full { width: 100%; }

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: rgba(30, 64, 175, 0.8); }

.btn-cyan {
  background: var(--cyan);
  color: #060A13;
  font-weight: 700;
}
.btn-cyan:hover { background: rgba(0, 229, 255, 0.8); }

.btn-outline {
  border: 1px solid rgba(30, 64, 175, 0.4);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.btn-outline:hover {
  background: rgba(30, 64, 175, 0.1);
  border-color: rgba(0, 229, 255, 0.4);
}

.btn-outline-cyan {
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 0 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  height: 3rem;
}
.btn-outline-cyan:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.4);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.05); }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  background: transparent;
  transition: all 0.5s;
  animation: slideDown 0.6s ease-out;
}

.navbar.scrolled {
  padding: 0.75rem 0;
}

.navbar.scrolled .navbar-inner {
  /* glass applied via class */
}

.navbar.glass-nav {
  background: rgba(6, 10, 19, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 64, 175, 0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img { height: 2rem; width: auto; }
@media (min-width: 768px) { .logo-img { height: 2.5rem; } }

.nav-links { align-items: center; gap: 2rem; }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.025em;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--cyan); }

.nav-actions { align-items: center; gap: 0.75rem; }

.lang-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-right: 0.5rem;
}

.mobile-toggle {
  color: var(--foreground);
  align-items: center;
  justify-content: center;
}
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(6, 10, 19, 0.98);
  backdrop-filter: blur(24px);
  padding: 6rem 2rem 2rem;
  animation: fadeIn 0.3s ease;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--cyan); }

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,10,19,0.6), rgba(6,10,19,0.8), var(--background));
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,10,19,0.9), transparent, rgba(6,10,19,0.7));
}

.pulse-line {
  position: absolute;
  left: 8vw;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0,229,255,0.3), transparent);
  animation: pulseLine 3s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.section-label.center { justify-content: center; }

.label-line {
  width: 2rem;
  height: 1px;
  background: var(--cyan);
}

.label-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 1rem; height: 1rem; }

.trust-label { font-size: 0.75rem; color: var(--muted-foreground); }
.trust-value { font-size: 0.875rem; font-weight: 600; }

/* Hero Stats Panel */
.stats-panel {
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.stats-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(0, 229, 255, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.stats-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.stats-icon { width: 2rem; height: 2rem; }
.stats-label { font-size: 0.75rem; color: var(--muted-foreground); }
.stats-value {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: ui-monospace, monospace;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.stat-num {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: ui-monospace, monospace;
}
.stat-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.chart-card {
  border-radius: 0.75rem;
  padding: 1rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.chart-header span:first-child { color: rgba(255,255,255,0.8); }
.chart-svg { width: 100%; height: 3rem; }

/* ===== Ticker ===== */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(6, 10, 19, 0.8);
  backdrop-filter: blur(4px);
}

.ticker-animate {
  display: flex;
  align-items: center;
  padding: 0.625rem 0;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  white-space: nowrap;
}

.ticker-symbol {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

.ticker-price {
  font-size: 0.75rem;
  font-family: ui-monospace, monospace;
  color: rgba(255,255,255,0.7);
}

.ticker-change {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.ticker-change svg { width: 0.75rem; height: 0.75rem; }
.ticker-change.up { color: var(--green); }
.ticker-change.down { color: var(--red); }

.ticker-label { font-size: 0.75rem; font-weight: 500; color: var(--cyan); }
.ticker-sep { color: rgba(255,255,255,0.15); margin-left: 0.5rem; }

/* ===== Sections ===== */
.section { padding: 6rem 0; position: relative; }

.section-line-right {
  position: absolute;
  right: 8vw;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(30,64,175,0.2), transparent);
}

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-title.center { text-align: center; }

.section-desc {
  color: var(--muted-foreground);
  max-width: 36rem;
}
.section-desc.center { margin: 0 auto; text-align: center; }

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.25rem;
  margin-bottom: 2rem;
  width: fit-content;
}

.tab {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  color: var(--muted-foreground);
  transition: all 0.3s;
}
.tab:hover { color: var(--foreground); }
.tab.active {
  background: var(--blue);
  color: #fff;
}

/* ===== Asset Grid ===== */
.asset-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) { .asset-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .asset-grid { grid-template-columns: repeat(4, 1fr); } }

.asset-card {
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}
.asset-card:hover { border-color: rgba(0, 229, 255, 0.3); }

.asset-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.asset-symbol {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.asset-change {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.asset-change svg { width: 0.75rem; height: 0.75rem; }

.asset-price {
  font-size: 1.125rem;
  font-family: ui-monospace, monospace;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.asset-sparkline {
  width: 100%;
  height: 2rem;
  margin-bottom: 0.5rem;
}

.asset-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.asset-meta {
  font-size: 0.625rem;
  color: var(--muted-foreground);
}

.asset-operate {
  font-size: 0.625rem;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.asset-card:hover .asset-operate { opacity: 1; }
.asset-operate svg { width: 0.75rem; height: 0.75rem; }

/* ===== Stats Section ===== */
.stats-section {
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stats-row { grid-template-columns: repeat(6, 1fr); } }

.stats-item { text-align: center; }

.stats-big {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 900;
  font-family: ui-monospace, monospace;
  margin-bottom: 0.25rem;
}

.stats-small {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== Tech Section ===== */
.tech-section { overflow: hidden; }

.tech-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.tech-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tech-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), rgba(6,10,19,0.9), rgba(6,10,19,0.6));
}

.speed-card {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .speed-card { padding: 3rem; } }

.speed-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.speed-value {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  font-family: ui-monospace, monospace;
  letter-spacing: -0.05em;
  line-height: 1;
}

.speed-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
}

.features-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
}
.feature-card:hover { border-color: rgba(0, 229, 255, 0.2); }

.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(30, 64, 175, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.feature-card:hover .feature-icon { background: rgba(30, 64, 175, 0.25); }
.feature-icon svg { width: 1.25rem; height: 1.25rem; }

.feature-metric {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  color: rgba(0, 229, 255, 0.6);
  transition: color 0.3s;
}
.feature-card:hover .feature-metric { color: var(--cyan); }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== About Section ===== */
.about-section { overflow: hidden; }

.about-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), rgba(6,10,19,0.95), rgba(6,10,19,0.8));
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }

.value-card {
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.3s;
}
.value-card:hover { border-color: rgba(0, 229, 255, 0.2); }

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(30, 64, 175, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.value-icon svg { width: 1.25rem; height: 1.25rem; }

.value-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section { overflow: hidden; }

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,64,175,0.1), #060A13, rgba(0,229,255,0.05));
}

.cta-card {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .cta-card { padding: 4rem; } }

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.benefit svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr); } }

.footer-brand { grid-column: span 2; }
@media (min-width: 1024px) { .footer-brand { grid-column: span 1; } }

.footer-logo { height: 2rem; margin-bottom: 1rem; }

.footer-brand > p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--cyan); }
.footer-contact svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cyan); }

.server-status {
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.server-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.server-title svg { width: 1rem; height: 1rem; }

.server-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.server-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
}

.footer-legal > p {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-legal strong { color: rgba(255,255,255,0.5); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom > p {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.25);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cyan); }

/* ===== Animations ===== */
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulseLine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease 0.4s both;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
