/* ===== BrawlVPN — Dark Gaming Theme ===== */
/* Bebas Neue + Noto Sans | Sharp corners | Dark throughout */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary: #FF4500;
  --accent: #FFD700;
  --bg: #111118;
  --bg-card: #1C1C28;
  --bg-section: #15151F;
  --bg-alt: #1A1A26;
  --text: #E8E8F0;
  --text-muted: #9090A8;
  --border: rgba(255,69,0,0.2);
  --radius: 0px;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Noto Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s;
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--text);
}

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

/* ===== ACCENT BAR ===== */
.accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(17,17,24,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  display: inline-block;
  background: var(--accent);
  color: #000000 !important;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.nav-cta:hover {
  background: #e6c200;
  transform: translateY(-1px);
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1010;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17,17,24,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(255,69,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(255,215,0,0.06) 0%, transparent 50%);
  position: relative;
  padding: 120px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,69,0,0.08)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,69,0,0.15);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 18px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero h1 {
  font-size: 4.2rem;
  color: var(--text);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #e03d00;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-badge .tb-icon {
  font-size: 1.6rem;
}

.trust-badge .tb-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ===== SECTIONS (dark) ===== */
.section {
  padding: 80px 0;
}

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

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ===== FEATURES — SOLID BRIGHT FILL ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card .fc-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #111;
}

.feature-card p {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.75);
  line-height: 1.6;
}

.feature-card:nth-child(1) { background: #FF4500; }
.feature-card:nth-child(2) { background: #FFD700; }
.feature-card:nth-child(3) { background: #00E5FF; }
.feature-card:nth-child(4) { background: #76FF03; }
.feature-card:nth-child(5) { background: #FF6D00; }

.feature-card:nth-child(1) h3,
.feature-card:nth-child(1) p { color: #fff; }
.feature-card:nth-child(1) p { color: rgba(255,255,255,0.85); }

/* ===== DOWNLOAD PLATFORMS ===== */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  border-radius: var(--radius);
}

.platform-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.platform-card .pc-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.platform-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.platform-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.platform-card .btn-sm {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 20px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.25s;
}

.platform-card .btn-sm:hover {
  background: #e03d00;
}

/* ===== TRIAL BANNER (horizontal) ===== */
.trial-banner {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  padding: 40px 0;
}

.trial-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trial-text h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 6px;
}

.trial-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.trial-banner .btn-accent {
  background: var(--accent);
  color: #000;
  font-weight: 800;
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}

.trial-banner .btn-accent:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.faq-question:hover {
  color: var(--accent);
}

.faq-question .fq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question .fq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 64px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.6rem;
  color: #111;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(0,0,0,0.7);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.cta-section .btn-dark {
  display: inline-block;
  background: #111;
  color: #fff;
  font-weight: 700;
  padding: 14px 40px;
  font-size: 1rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.25s, transform 0.2s;
}

.cta-section .btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== ANIMATION: FADE + SCALE ===== */
.fade-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== INSTRUKTSIYA PAGE ===== */
.instr-hero {
  padding: 140px 20px 60px;
  text-align: center;
  background: var(--bg);
  background-image: radial-gradient(ellipse at 50% 30%, rgba(255,69,0,0.1) 0%, transparent 60%);
}

.instr-hero h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
}

.instr-hero .instr-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.step-section {
  padding: 60px 0;
}

.step-block {
  max-width: 780px;
  margin: 0 auto 48px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}

.step-block h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.step-block p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.step-block .btn-primary {
  margin-top: 8px;
}

.after-pay {
  background: var(--bg-section);
  padding: 60px 0;
}

.after-pay-inner {
  max-width: 780px;
  margin: 0 auto;
}

.after-pay h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  text-align: center;
}

.after-pay .after-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  text-align: center;
}

.after-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.after-plat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px 16px;
  text-align: center;
  border-radius: var(--radius);
}

.after-plat-card .apc-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.after-plat-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.after-plat-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.instr-cta {
  background: var(--bg);
  padding: 60px 0;
  text-align: center;
}

.instr-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.instr-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .after-platforms {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .trial-inner {
    flex-direction: column;
    text-align: center;
  }

  .stats-grid {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 100px 16px 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .features-grid,
  .platforms-grid,
  .after-platforms {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    gap: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .instr-hero h1 {
    font-size: 2.2rem;
  }

  .stats-grid {
    gap: 20px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .trial-text h2 {
    font-size: 1.7rem;
  }

  .faq-question {
    padding: 14px 18px;
    font-size: 0.9rem;
  }
}
