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

:root {
  --bg:       #080a0f;
  --bg2:      #0f1219;
  --bg3:      #161b25;
  --border:   #1e2535;
  --accent:   #e8002d;
  --accent2:  #ff1a45;
  --blue:     #0066cc;
  --text:     #e8eaf0;
  --muted:    #8a90a2;
  --green:    #00c853;
  --radius:   12px;
  --radius-lg:20px;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Segoe UI', system-ui, sans-serif; font-size: 16px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,10,15,0.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; font-size: 1.25rem; font-weight: 700; }
.logo-icon { font-size: 1.2rem; }
.logo-text strong { color: var(--accent); }
.logo-ca { color: var(--muted); font-size: 0.9rem; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links li a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.nav-links li a:hover { color: var(--text); }
.btn-nav {
  background: var(--accent); color: #fff !important;
  padding: 8px 20px; border-radius: 8px; font-size: 0.85rem !important;
  font-weight: 700; transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--accent2) !important; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 60px; max-width: 1100px; margin: 0 auto;
  gap: 60px; position: relative;
}
.hero-bg {
  position: fixed; top: 0; left: 0; right: 0; height: 100vh;
  background: radial-gradient(ellipse 700px 500px at 65% 40%, rgba(232,0,45,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-content { flex: 1; z-index: 1; }
.hero-badge {
  display: inline-block; background: rgba(232,0,45,0.12);
  color: #ff4d6a; border: 1px solid rgba(232,0,45,0.3);
  padding: 4px 14px; border-radius: 100px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.5px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px;
}
.accent { color: var(--accent); }
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 480px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
  background: var(--accent); color: #fff; padding: 13px 30px;
  border-radius: var(--radius); font-weight: 700; font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(232,0,45,0.3);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text); padding: 13px 30px;
  border-radius: var(--radius); font-weight: 600; font-size: 1rem;
  border: 1px solid var(--border); transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(232,0,45,0.05); }
.btn-large { padding: 16px 48px; font-size: 1.1rem; }

.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.4rem; font-weight: 800; }
.stat-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-visual { flex: 1; z-index: 1; display: flex; justify-content: center; }
.hero-screens { position: relative; width: 100%; max-width: 480px; }
.screen-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(232,0,45,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-img {
  width: 100%; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

/* SAVINGS BANNER */
.savings-banner {
  background: linear-gradient(135deg, #1a0008 0%, #0f0015 100%);
  border-top: 1px solid rgba(232,0,45,0.2);
  border-bottom: 1px solid rgba(232,0,45,0.2);
  padding: 48px 0;
}
.savings-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.savings-label {
  display: block; color: var(--accent); font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.savings-inner h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; line-height: 1.3; }

/* SECTIONS */
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block; background: rgba(232,0,45,0.1);
  color: #ff4d6a; border: 1px solid rgba(232,0,45,0.25);
  padding: 4px 14px; border-radius: 100px; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.8px; margin-bottom: 14px;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.section-header p { color: var(--muted); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* CHANNELS */
.channels { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.channels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.channel-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: border-color 0.25s, transform 0.25s;
  opacity: 0; transform: translateY(16px);
}
.channel-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.25s; }
.channel-card:hover { border-color: rgba(232,0,45,0.35); transform: translateY(-3px); }
.channel-card.featured-card { border-color: rgba(232,0,45,0.3); background: linear-gradient(135deg, var(--bg3), rgba(232,0,45,0.04)); }
.channel-flag { font-size: 2rem; margin-bottom: 12px; text-align: center; }
.channel-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; text-align: center; }
.channel-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; text-align: center; }
.channel-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.channel-tags span {
  background: var(--bg); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 6px; font-size: 0.75rem; color: var(--muted);
}
.channels-cta { text-align: center; margin-top: 36px; }

/* FEATURES */
.features { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: border-color 0.25s, transform 0.25s;
  opacity: 0; transform: translateY(16px);
}
.feature-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.25s; }
.feature-card:hover { border-color: rgba(232,0,45,0.35); transform: translateY(-3px); }
.feature-icon { font-size: 1.8rem; margin-bottom: 14px; text-align: center; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; text-align: center; }
.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; text-align: center; }

/* SCREENSHOTS */
.screenshots { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.shots-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.shot-tab {
  background: var(--bg3); border: 1px solid var(--border); color: var(--muted);
  padding: 8px 20px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.shot-tab:hover { color: var(--text); border-color: rgba(232,0,45,0.4); }
.shot-tab.active { color: #ff4d6a; border-color: var(--accent); background: rgba(232,0,45,0.08); }
.shot-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 24px 64px rgba(0,0,0,0.5); }
.shot-slides { position: relative; width: 100%; }
.shot-slide { display: none; flex-direction: column; }
.shot-slide.active { display: flex; }
.shot-slide img { width: 100%; display: block; object-fit: cover; }
.shot-caption { padding: 14px 24px; font-size: 0.88rem; color: var(--muted); background: var(--bg3); border-top: 1px solid var(--border); text-align: center; }
.shot-prev, .shot-next {
  position: absolute; top: 50%; transform: translateY(-60%);
  background: rgba(8,10,15,0.75); border: 1px solid var(--border); color: var(--text);
  width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s; z-index: 2;
}
.shot-prev { left: 12px; }
.shot-next { right: 12px; }
.shot-prev:hover, .shot-next:hover { background: rgba(232,0,45,0.3); border-color: var(--accent); }

/* PRICING */
.pricing { background: var(--bg); }
.pricing-compare {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; margin-bottom: 24px;
}
.price-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 32px; flex: 1; min-width: 260px; max-width: 360px; position: relative;
  opacity: 0; transform: translateY(16px);
}
.price-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; }
.price-card.winner { border-color: rgba(232,0,45,0.4); background: linear-gradient(135deg, var(--bg2), rgba(232,0,45,0.05)); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; padding: 4px 16px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.price-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.price-amount { font-size: 2.6rem; font-weight: 900; margin-bottom: 20px; }
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.price-amount.red { color: #ff4444; }
.price-amount.green { color: var(--green); }
.price-list li { font-size: 0.9rem; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
.price-list li:last-child { border-bottom: none; }
.price-vs {
  font-size: 1.2rem; font-weight: 900; color: var(--muted);
  background: var(--bg3); border: 1px solid var(--border);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pricing-note { text-align: center; color: var(--muted); font-size: 0.9rem; max-width: 600px; margin: 0 auto; }

/* FAQ */
.faq { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  opacity: 0; transform: translateY(10px);
}
.faq-item.visible { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; }
.faq-q {
  padding: 18px 24px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--accent); font-weight: 700; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-q:hover { color: var(--accent); }
.faq-a { display: none; padding: 0 24px 18px; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.faq-item.open .faq-a { display: block; }

/* ORDER */
.order { background: var(--bg); }
.order-card {
  background: var(--bg2); border: 1px solid rgba(232,0,45,0.3);
  border-radius: var(--radius-lg); padding: 60px 48px; text-align: center;
  max-width: 560px; margin: 0 auto;
  background: linear-gradient(135deg, var(--bg2), rgba(232,0,45,0.05));
}
.order-card h2 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.order-card > p { color: var(--muted); margin-bottom: 28px; font-size: 1.05rem; font-style: italic; }
.order-price { font-size: 3rem; font-weight: 900; color: var(--green); margin-bottom: 28px; }
.order-price span { font-size: 1.1rem; font-weight: 400; color: var(--muted); }
.order-payment { margin-top: 20px; font-size: 0.85rem; color: var(--muted); }
.order-payment strong { color: var(--text); }

/* FOOTER */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 800px) {
  .hero { flex-direction: column; padding-top: 90px; gap: 40px; }
  .savings-inner { flex-direction: column; text-align: center; }
  .pricing-compare { flex-direction: column; align-items: center; }
  .price-vs { transform: rotate(90deg); }
  .order-card { padding: 36px 24px; }
  .nav-links { gap: 16px; }
}
@media (max-width: 560px) {
  .nav-links li:not(:last-child) { display: none; }
}

/* LEGAL PAGE */
.legal-page { padding: 100px 0 80px; }
.legal-card {
  max-width: 780px; margin: 0 auto;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.legal-header {
  background: var(--bg3); border-bottom: 1px solid var(--border);
  padding: 48px 52px 36px; text-align: center;
}
.legal-header h1 { font-size: 2.2rem; font-weight: 800; margin: 12px 0 8px; }
.legal-meta { color: var(--muted); font-size: 0.85rem; }
.legal-body { padding: 40px 52px 52px; }
.legal-section { margin-bottom: 36px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 {
  font-size: 1rem; font-weight: 700; color: var(--accent);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-section p { color: var(--muted); font-size: 0.92rem; line-height: 1.75; margin-bottom: 10px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--accent); }
.legal-section a:hover { text-decoration: underline; }
.legal-list { margin: 10px 0 0 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-list li { color: var(--muted); font-size: 0.92rem; line-height: 1.65; list-style: disc; }

@media (max-width: 600px) {
  .legal-header { padding: 36px 24px 28px; }
  .legal-body { padding: 28px 24px 36px; }
}

/* PLAN CARDS */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}
.plan-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px 24px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.plan-card:hover { border-color: rgba(232,0,45,0.35); transform: translateY(-3px); }
.plan-featured {
  border-color: rgba(232,0,45,0.4);
  background: linear-gradient(135deg, var(--bg2), rgba(232,0,45,0.05));
}
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 14px; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-size: 0.85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; }
.plan-price { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.plan-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.plan-card .btn-ghost, .plan-card .btn-primary { width: 100%; text-align: center; margin-top: auto; }

/* ORDER PAGE */
.order-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px; margin: 20px 0;
}
.order-plan {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 16px 20px;
  text-align: center; position: relative;
}
.order-plan-featured {
  border-color: rgba(232,0,45,0.4);
  background: linear-gradient(135deg, var(--bg3), rgba(232,0,45,0.05));
}
.order-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 3px 12px;
  border-radius: 100px; white-space: nowrap;
}
.order-plan-name { font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.order-plan-price { font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.order-plan-note { font-size: 0.78rem; color: var(--muted); }

.order-email-box {
  background: var(--bg3); border: 1px solid rgba(232,0,45,0.35);
  border-radius: var(--radius); padding: 18px 24px;
  margin: 14px 0; text-align: center;
}
.order-email {
  font-size: 1.25rem; font-weight: 700; color: var(--text);
  letter-spacing: 0.3px;
}

/* PLATFORM BADGES */
.platform-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-top: 28px;
}
.platform-badge {
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--text); padding: 8px 18px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
}
.platform-soon {
  color: var(--muted); border-style: dashed;
}

/* CHANNEL LIST PAGE */
.ch-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 32px;
}
.ch-tab {
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--muted); padding: 8px 18px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.ch-tab:hover { border-color: rgba(232,0,45,0.4); color: var(--text); }
.ch-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.ch-panel { display: none; }
.ch-panel.active { display: block; }

.ch-group { margin-bottom: 32px; }
.ch-group-label {
  font-size: 0.75rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.ch-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ch-tags span {
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--muted); padding: 5px 12px; border-radius: 6px;
  font-size: 0.82rem;
}

/* VPN PAGE */
.vpn-explainer {
  max-width: 720px; margin: 0 auto 48px;
  display: flex; flex-direction: column; gap: 14px;
}
.vpn-explainer p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; }
.vpn-alert {
  background: rgba(232,0,45,0.08); border: 1px solid rgba(232,0,45,0.25);
  border-radius: var(--radius); padding: 14px 20px;
  color: var(--text); font-size: 0.9rem; line-height: 1.6;
}
.vpn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.vpn-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.vpn-featured {
  border-color: rgba(232,0,45,0.4);
  background: linear-gradient(135deg, var(--bg2), rgba(232,0,45,0.05));
}
.vpn-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 3px 14px;
  border-radius: 100px; white-space: nowrap;
}
.vpn-name { font-size: 1.4rem; font-weight: 800; text-align: center; }
.vpn-features { display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; list-style: none; }
.vpn-features li { color: var(--muted); font-size: 0.88rem; }
.vpn-card .btn-primary, .vpn-card .btn-ghost { text-align: center; display: block; margin-top: auto; }

/* SERVER WARNING BANNER */
.server-warning {
  padding: 12px 0; text-align: center;
  font-size: 0.9rem; position: relative; z-index: 99; margin-top: 64px;
  border-bottom: 1px solid transparent; transition: background 0.4s;
}
.server-warning.is-down {
  background: #5a2000; border-color: #e05c2a; color: #ffcba4;
}
.server-warning.is-up {
  background: #003a1a; border-color: #00c853; color: #a0f0b0;
}
.server-warning strong { color: #fff; }

/* MOBILE NAV */
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border);
  color: var(--text); font-size: 1.3rem;
  padding: 5px 11px; border-radius: 8px; cursor: pointer;
  line-height: 1;
}
@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg2); border-bottom: 1px solid var(--border);
    padding: 16px 24px; gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links li a { display: block; padding: 13px 0; font-size: 0.95rem !important; color: var(--text) !important; }
  .btn-nav {
    display: inline-block !important; margin: 12px 0 4px;
    padding: 10px 20px !important; text-align: center;
  }
}
