:root {
  --bg-dark: #070e0a;
  --bg-card: #0d1a12;
  --bg-card-hover: #14281c;
  --bg-glass: rgba(13, 26, 18, 0.94);
  --primary-lime: #10b981;
  --primary-lime-dark: #047857;
  --lime-gradient: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  --lime-gradient-hover: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
  --primary-gold: #f59e0b;
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-lime: rgba(16, 185, 129, 0.4);
  --border-gold: rgba(245, 158, 11, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.1);
  --shadow-lime: 0 4px 20px rgba(16, 185, 129, 0.35);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.6);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
}

a {
  color: var(--primary-lime);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 900;
  background: var(--lime-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  position: relative;
  padding-bottom: 0.6rem;
  margin-top: 2.2rem;
  border-bottom: 2px solid var(--border-subtle);
  text-align: left;
  color: #ffffff;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 70px; height: 3px;
  background: var(--lime-gradient);
  border-radius: var(--radius-full);
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-top: 1.6rem;
}

p {
  margin-bottom: 1.2rem;
  color: #e2e8f0;
  font-size: 1.05rem;
}

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

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-lime);
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
}

.brand-logo img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--primary-lime);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.brand-logo span {
  color: var(--primary-lime);
}

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

.nav-link {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(16, 185, 129, 0.18);
}

.header-btn {
  background: var(--lime-gradient);
  color: #ffffff !important;
  font-weight: 800;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lime);
}

.header-btn:hover {
  background: var(--lime-gradient-hover);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 2.5rem 0 1.5rem;
}

.hero-card {
  background: linear-gradient(145deg, rgba(13, 26, 18, 0.95), rgba(20, 40, 28, 0.9));
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-card), var(--shadow-lime);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: 'OFFICIAL 2026';
  position: absolute;
  top: 15px; right: -35px;
  background: var(--lime-gradient);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 2.5rem;
  transform: rotate(45deg);
}

.app-icon-wrap {
  text-align: center;
}

.app-icon-img {
  width: 160px;
  height: 160px;
  border-radius: 26px;
  object-fit: cover;
  border: 3px solid var(--primary-lime);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.5);
  margin: 0 auto;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--primary-lime);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-top: 0.8rem;
}

.app-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.meta-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: #ffffff;
}

.meta-pill strong {
  color: var(--primary-lime);
}

.cta-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-download-primary {
  background: var(--lime-gradient) !important;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lime) !important;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-download-primary:hover {
  transform: translateY(-2px);
  background: var(--lime-gradient-hover) !important;
}

.btn-secondary-action {
  background: rgba(245, 158, 11, 0.15) !important;
  border: 2px solid var(--primary-gold) !important;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.btn-secondary-action:hover {
  background: var(--primary-gold) !important;
  color: #000000 !important;
}

/* Quick Info 5 Box Grid */
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 1.5rem 0 2rem;
}

.quick-info-card {
  background: #0f172a;
  border: 1px solid var(--border-lime);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.quick-info-card .icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.quick-info-card .title {
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
}

.quick-info-card .subtitle {
  font-size: 0.75rem;
  color: var(--primary-lime);
  font-weight: 700;
}

/* Table of Contents Box */
.in-content-toc {
  background: linear-gradient(135deg, #070e0a 0%, #0d1a12 100%);
  border: 2px solid var(--primary-lime);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lime);
}

.toc-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-lime);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.6rem 1.2rem;
  list-style: none;
}

.toc-grid li a {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
  display: block;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.toc-grid li a:hover {
  background: rgba(16, 185, 129, 0.2);
  color: #ffffff;
}

/* Main Article Container */
.content-layout {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 2rem auto;
}

.main-article {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-card);
  width: 100%;
}

.table-responsive {
  overflow-x: auto;
  margin: 1.8rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #09120c;
}

.data-table th {
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary-lime);
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.data-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.98rem;
}

.data-table tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.badge-status-ok {
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary-lime);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Pros & Cons Box */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pro-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--primary-lime);
  border-radius: 12px;
  padding: 1.5rem;
}

.con-box {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid #ef4444;
  border-radius: 12px;
  padding: 1.5rem;
}

/* Footer */
.site-footer {
  background: #040805;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  color: #ffffff;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
}

/* Mobile sticky app bar */
.mobile-app-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 26, 18, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--primary-lime);
  height: 64px;
}

.mobile-nav-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}

.mobile-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--primary-lime);
}

@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .app-icon-img {
    margin: 0 auto;
  }
  .cta-action-group {
    justify-content: center;
  }
  .nav-menu {
    display: none;
  }
  .mobile-app-bar {
    display: block;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  body {
    padding-bottom: 70px;
  }
}
