/* ============================================================
   Uprising Server — Modern Redesign
   Theme: Dark Industrial | Accent: #F14427
   ============================================================ */

/* --- CSS Variables / Theme --- */
:root {
  --primary: #F14427;
  --primary-dark: #c9351e;
  --primary-glow: rgba(241, 68, 39, 0.3);
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --bg-nav: rgba(10, 10, 10, 0.95);
  --text-primary: #e8e8e8;
  --text-secondary: #999;
  --text-muted: #666;
  --border-color: #222;
  --border-accent: rgba(241, 68, 39, 0.2);
  --success: #22c55e;
  --info: #3b82f6;
  --warning: #eab308;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --transition: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.section-title h2 {
  color: var(--text-primary);
  font-size: 2.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-title h2 span { color: var(--primary); }
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.navbar-brand:hover { color: var(--primary); }
.navbar-brand img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(241, 68, 39, 0.1);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-social a {
  color: var(--text-muted);
  padding: 0.5rem;
  font-size: 1.1rem;
  transition: color var(--transition);
}
.nav-social a:hover { color: var(--primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(241,68,39,0.08) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg-dark) 0%, #0d0d0d 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
}

.hero-logo {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-logo img {
  max-width: 550px;
  width: 90%;
  filter: drop-shadow(0 0 40px var(--primary-glow));
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.hero h1 span { color: var(--primary); }

.hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-live {
  margin-top: 1.5rem;
  width: min(1100px, 100%);
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-live-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: live-pulse 1.8s infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-live-updated {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-live-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-live-card {
  border: 1px solid var(--border-accent);
  background: rgba(16, 16, 16, 0.9);
  border-radius: var(--radius);
  padding: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.hero-live-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.hero-live-title i { color: var(--primary); }

.hero-live-stats {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
}

.hero-live-stats strong { color: var(--text-primary); }

.hero-live-wipe {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}

.hero-live-wipe strong { color: var(--warning); }

.hero-trending {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #08140a;
  background: #34d399;
  border-radius: 999px;
  padding: 0.12rem 0.45rem;
}

.hero-live-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.hero-live-actions .btn {
  padding: 0.42rem 0.75rem;
  font-size: 0.78rem;
}

.sticky-connect {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  z-index: 1100;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
  width: min(1100px, calc(100% - 20px));
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  padding: 0.5rem;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.sticky-connect.show {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 1.2rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 20px var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 30px var(--primary-glow);
  transform: translateY(-2px);
  color: #fff;
}

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

.btn-success {
  background: var(--success);
  color: #fff;
}
.btn-success:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #fff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-glow {
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b3d 100%);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(241, 68, 39, 0.2);
  animation: btn-pulse 2s ease-in-out infinite;
}
.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(241, 68, 39, 0.3);
  color: #fff;
  animation: btn-pulse 1s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(241, 68, 39, 0.2); }
  50% { box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(241, 68, 39, 0.35); }
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* --- Sections --- */
.section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  background: #0d0d0d;
  max-width: none;
}
.section-dark .section { max-width: 1200px; margin: 0 auto; }

/* --- Server Cards --- */
.server-grid {
  display: grid;
  gap: 1.5rem;
}

.server-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.server-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.server-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(241,68,39,0.15);
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.server-card-body {
  flex: 1;
  min-width: 0;
}

.server-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.server-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.server-card-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.server-card-stats span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.server-card-stats i { color: var(--primary); }

.server-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.server-card-metrics {
  flex-shrink: 0;
  width: 500px;
  min-height: 80px;
  display: flex;
  align-items: center;
}
.server-card-metrics iframe {
  border-radius: var(--radius-sm);
  max-width: 100%;
}

.server-card-banner {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--bg-card-hover);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  border: 1px solid var(--border-color);
}

/* --- VIP Cards --- */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.vip-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.vip-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.vip-card.featured {
  border-color: var(--primary);
  position: relative;
}
.vip-card.featured::before {
  content: 'Best Value';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vip-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.vip-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.vip-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.vip-card .price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.vip-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  flex: 1;
}
.vip-card ul li {
  padding: 0.4rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.vip-card ul li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.vip-card .btn { margin-top: auto; margin-left: auto; margin-right: auto; }

/* --- Discord Section --- */
.discord-section {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, rgba(241,68,39,0.05) 0%, transparent 100%);
  border-radius: var(--radius);
  margin-top: 2rem;
}
.discord-section h3 { margin-bottom: 0.75rem; }
.discord-section p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.discord-section img {
  margin: 1.5rem auto 0;
  border-radius: var(--radius-sm);
}

/* --- Donation Section --- */
.donation-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.donation-amount {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  min-width: 120px;
  transition: all var(--transition);
  cursor: pointer;
}
.donation-amount:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.donation-amount .amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* --- Info Panel (Commands page) --- */
.cmd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.cmd-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all var(--transition);
}
.cmd-card:hover {
  border-color: var(--border-accent);
}
.cmd-card h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cmd-card .cmd { display: block; padding: 0.2rem 0; color: var(--text-secondary); font-size: 0.85rem; }
.cmd-card .cmd code {
  background: rgba(255,255,255,0.05);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-family: 'Fira Code', monospace;
  font-size: 0.8rem;
  color: var(--text-primary);
}

/* --- Footer --- */
.footer {
  background: #070707;
  border-top: 1px solid var(--border-color);
  padding: 3rem 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
}
.footer-logo img { height: 40px; margin: 0 auto 1rem; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-links a:hover { color: var(--primary); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-social a {
  color: var(--text-muted);
  font-size: 1.3rem;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--primary); }

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-copy a { color: var(--text-secondary); }
.footer-copy a:hover { color: var(--primary); }

/* --- Alert / Notice --- */
.alert {
  background: rgba(241,68,39,0.08);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}
.alert strong { color: var(--text-primary); }
.alert .highlight { color: var(--primary); }

/* --- Page Header --- */
.page-header {
  padding: 7rem 1.5rem 3rem;
  text-align: center;
  background: radial-gradient(ellipse at center bottom, rgba(241,68,39,0.06) 0%, transparent 60%);
}
.page-header h1 {
  font-size: 2.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.page-header h1 span { color: var(--primary); }
.page-header p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0.5rem auto 0;
}

/* --- VIP Page Specific --- */
.vip-page { padding-top: 2rem; }

.vip-server-header {
  text-align: center;
  margin-bottom: 2rem;
}
.vip-server-header img {
  max-width: 350px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-sm);
}
.vip-server-header h1 { margin-bottom: 0.5rem; }
.vip-server-header .vip-info {
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.vip-server-header .vip-info span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.vip-server-header .vip-info i { color: var(--primary); }

.vip-notice {
  background: rgba(241,68,39,0.06);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.vip-notice p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.5rem; }
.vip-notice p:last-child { margin-bottom: 0; }
.vip-notice strong { color: var(--text-primary); }
.vip-notice .claim {
  color: var(--primary);
  font-weight: 600;
}

/* --- VIP Tiers (for sub-pages) --- */
.vip-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* --- 404 Page --- */
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
}
.page-404 h1 { font-size: 6rem; color: var(--primary); line-height: 1; }
.page-404 h2 { margin-bottom: 1rem; }
.page-404 p { color: var(--text-secondary); margin-bottom: 2rem; max-width: 400px; }

/* --- Thank You Page --- */
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
}
.thank-you .icon { font-size: 4rem; color: var(--success); margin-bottom: 1rem; }
.thank-you h1 { margin-bottom: 0.5rem; }
.thank-you p { color: var(--text-secondary); margin-bottom: 2rem; max-width: 500px; }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.flex-center { justify-content: center; }

/* vip banner image styling */
.vip-tier-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto 0.5rem;
  border-radius: var(--radius-sm);
}

/* inline form support */
.vip-card form { margin-top: auto; }

/* Server card responsive metrics */
.server-card-metrics iframe {
  width: 500px;
  height: 80px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .server-card-metrics { width: 400px; }
  .server-card-metrics iframe { width: 400px; }
  .hero-live-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border-color);
    display: none;
  }
  .nav-links.show { display: flex; }
  .nav-links a { width: 100%; padding: 0.75rem 1rem; }
  
  .nav-social { display: none; }
  .nav-toggle { display: flex; }
  
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-logo img { max-width: 280px; }
  .hero-live-head { font-size: 0.82rem; }
  .hero-live-stats { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .sticky-connect { border-radius: 14px; bottom: 8px; }
  .sticky-connect .btn { flex: 1 1 calc(50% - 0.45rem); justify-content: center; }
  
  .server-card {
    flex-direction: column;
    align-items: stretch;
  }
  .server-card-metrics { 
    width: 100%;
    order: -1;
  }
  .server-card-metrics iframe { width: 100%; }
  .server-card-stats { flex-wrap: wrap; gap: 0.75rem; }
  
  .vip-grid, .vip-tier-grid { grid-template-columns: 1fr; }
  .cmd-grid { grid-template-columns: 1fr; }
  
  .section-title h2 { font-size: 1.6rem; }
  h1 { font-size: 2rem; }
  
  .btn-lg { padding: 0.85rem 1.75rem; }
  
  .page-header { padding: 6rem 1rem 2rem; }
  .page-header h1 { font-size: 1.6rem; }
  
  .vip-server-header img { max-width: 250px; }
}

.vip-disclaimer {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  text-align: center;
}
.vip-disclaimer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}
.vip-disclaimer strong {
  color: var(--primary);
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .section { padding: 3rem 1rem; }
  .server-card { padding: 1rem; }
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Smooth hover glow on specific elements --- */
.glow-hover:hover { box-shadow: 0 0 30px var(--primary-glow); }

/* --- VIP page banner header --- */
.vip-banner {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-sm);
}

/* coin purchase buttons */
.coin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 700px;
  margin: 1.5rem auto;
}
.coin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.coin-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.coin-card .coin-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.coin-card .coin-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Server select in vip_server pages */
.server-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.server-select-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.server-select-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.server-select-card h4 { margin-bottom: 0.5rem; }
.server-select-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }