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

:root {
  --bg: #05080a;
  --bg-card: #11151c;
  --bg-card-inner: #0d1117;
  --bg-elevated: #161b22;
  --accent: #38bdf8;
  --accent-hover: #2ea8e5;
  --text: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: #1e293b;
  --discord: #5865f2;
  --red: #ef4444;
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 8, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
}

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

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: white;
}

.logo-icon.small {
  width: 36px;
  height: 36px;
  font-size: 12px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}

.btn-login {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

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

.btn-primary {
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-discord {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}

.btn-discord:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-muted);
}

.hero-trust {
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== Stats Bar ===== */
.stats-section {
  padding: 0 0 60px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.stat-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-value-row {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== Features ===== */
.features-section {
  padding: 60px 0;
}

.section-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 48px;
}

.accent {
  color: var(--accent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(56, 189, 248, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Setup Cards ===== */
.setup-section {
  padding: 40px 0 80px;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.setup-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.setup-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.setup-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.setup-steps-box {
  background: var(--bg-card-inner);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 20px;
}

.steps-header {
  margin-bottom: 20px;
}

.steps-header strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.steps-header span {
  font-size: 13px;
  color: var(--text-muted);
}

.steps-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.discord-icon {
  background: #5865f2;
}

.windows-icon {
  background: #0078d4;
}

.minecraft-icon {
  background: #3d8b40;
}

.step-arrow {
  color: var(--text-dim);
  font-size: 20px;
}

.setup-footer {
  font-size: 13px;
  color: var(--text-muted);
}

.setup-stat {
  margin-bottom: 24px;
}

.setup-stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.setup-stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.setup-progress-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card-inner);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.progress-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.progress-icon.done {
  background: rgba(56, 189, 248, 0.15);
}

.progress-icon.done svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.progress-icon.download {
  background: rgba(56, 189, 248, 0.15);
}

.progress-icon.download svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.progress-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.progress-item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== Videos ===== */
.videos-section {
  padding: 80px 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.videos-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

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

.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-caption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Pricing ===== */
.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: visible;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.08);
}

.best-value-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.price {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
}

.amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.amount-free {
  color: var(--accent);
}

.period {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-note-free {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  padding: 10px 12px;
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.15);
  border-radius: 8px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 14px;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
}

.pricing-features li.check::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-features li.cross {
  color: #f87171;
}

.pricing-features li.cross::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  transition: background 0.2s;
}

.btn-pricing:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-pricing.featured-btn {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn-pricing.featured-btn:hover {
  background: var(--accent-hover);
}

#lifetime-download-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-paypal {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.unlocked-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.payment-icon.paypal {
  color: #003087;
  background: #f0f4f8;
  font-weight: 700;
  font-size: 15px;
  font-style: italic;
  letter-spacing: -0.5px;
}

.payment-icon.paypal.small {
  font-size: 12px;
}

.pricing-trust {
  text-align: center;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 24px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.payment-icon {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.payment-icon.visa {
  color: #1a1f71;
  background: #f0f0f0;
  font-style: italic;
  letter-spacing: 1px;
}

.payment-icon.stripe {
  color: #635bff;
  font-weight: 600;
  font-size: 15px;
}

.payment-icon.bitcoin {
  color: #f7931a;
  font-size: 20px;
}

.payment-icon.mastercard {
  background: #f0f0f0;
  position: relative;
  width: 48px;
  height: 32px;
  padding: 0;
  justify-content: center;
}

.mc-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
}

.mc-circle.red {
  background: #eb001b;
  left: 10px;
}

.mc-circle.orange {
  background: #f79e1b;
  right: 10px;
  opacity: 0.85;
}

.payment-icon.small {
  padding: 6px 12px;
  font-size: 11px;
}

.payment-icon.small.mastercard {
  width: 40px;
  height: 28px;
}

.payment-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 0;
}

.faq-tag {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.faq-item.active {
  border-color: rgba(56, 189, 248, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-toggle {
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--text);
}

.footer-col ul a svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.footer-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.discord-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: border-color 0.2s;
}

.discord-card:hover {
  border-color: var(--discord);
}

.discord-card-icon {
  width: 40px;
  height: 40px;
  background: var(--discord);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.discord-card-icon svg {
  width: 22px;
  height: 22px;
}

.discord-card strong {
  display: block;
  font-size: 14px;
}

.discord-card span {
  font-size: 12px;
  color: var(--text-muted);
}

.social-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tiktok-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: border-color 0.2s;
}

.tiktok-card:hover {
  border-color: #fe2c55;
}

.tiktok-card-icon {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tiktok-card-icon svg {
  width: 22px;
  height: 22px;
}

.tiktok-card strong {
  display: block;
  font-size: 14px;
}

.tiktok-card span {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom-left p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 11px !important;
  color: var(--text-dim) !important;
  margin-top: 6px;
  max-width: 500px;
}

.footer-tos {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-tos:hover {
  color: var(--text);
}

/* ===== Floating Buttons ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.floating-discord {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--discord);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 999;
}

.floating-discord:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(88, 101, 242, 0.5);
}

.floating-discord svg {
  width: 26px;
  height: 26px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 8, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 32px;
    gap: 16px;
    z-index: 999;
  }

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

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

  .features-grid,
  .setup-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .videos-grid,
  .videos-grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .hero h1 {
    font-size: 36px;
  }
}
