/* ============================================================
   Bet939 Game - Complete Stylesheet
   bet939gam.pk
   ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --bg-dark: #0d1a0d;
  --bg-card: #0f2410;
  --bg-card2: #122614;
  --green-primary: #00c853;
  --green-dark: #0a3d0a;
  --green-medium: #1a7a2a;
  --green-light: #2ecc71;
  --gold: #ffd700;
  --gold-dark: #ff8c00;
  --orange: #ff6b35;
  --white: #ffffff;
  --text-light: #e8f5e9;
  --text-muted: #a5d6a7;
  --border-color: #1e4a1e;
  --shadow: 0 4px 20px rgba(0, 200, 83, 0.15);
  --shadow-hover: 0 8px 40px rgba(0, 200, 83, 0.3);
  --font-urdu: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
  --font-en: 'Poppins', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-urdu);
  direction: rtl;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
}

body.ltr-content {
  direction: ltr;
  font-family: var(--font-en);
}

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

a:hover {
  color: var(--gold);
}

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-urdu);
  direction: rtl;
  line-height: 1.5;
  font-weight: 700;
  color: var(--white);
}

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

p {
  font-family: var(--font-urdu);
  direction: rtl;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 2;
}

.en-text {
  font-family: var(--font-en);
  direction: ltr;
  display: inline-block;
}

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

header {
  background: linear-gradient(135deg, #051005 0%, #0a2a0a 50%, #051005 100%);
  border-bottom: 2px solid var(--green-medium);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 200, 83, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-wrap img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  border: 2px solid var(--green-primary);
}

.site-name {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: 1px;
  direction: ltr;
}

.site-name span {
  color: var(--gold);
}

/* Nav */
nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  direction: rtl;
}

.nav-links li a {
  color: var(--text-light);
  font-family: var(--font-urdu);
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--green-primary);
  border-color: var(--green-primary);
  background: rgba(0, 200, 83, 0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  order: -1;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
}

.btn-header-dl {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: var(--bg-dark);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  direction: ltr;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-header-dl:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  transform: scale(1.05);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  background: linear-gradient(135deg, #051005 0%, #0a3d1a 40%, #062006 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 200, 83, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white), var(--green-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.6;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 2.2;
}

.hero-img-wrap {
  max-width: 380px;
  margin: 30px auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--green-primary);
  box-shadow: 0 0 40px rgba(0, 200, 83, 0.3);
}

.hero-img-wrap img {
  width: 100%;
  transition: transform 0.4s ease;
}

.hero-img-wrap:hover img {
  transform: scale(1.03);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-primary);
  direction: ltr;
}

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

/* ============================================================
   DOWNLOAD BUTTON (Animated)
   ============================================================ */

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #00c853, #1a7a2a, #00c853);
  background-size: 200% auto;
  color: var(--white);
  font-family: var(--font-urdu);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  animation: shimmer 2.5s infinite linear, pulse-border 2s infinite;
  box-shadow: 0 6px 30px rgba(0, 200, 83, 0.4), 0 0 0 0 rgba(0, 200, 83, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-download::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 3s infinite;
}

.btn-download:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 200, 83, 0.5);
  color: var(--white);
}

.btn-download .dl-icon {
  font-size: 1.5rem;
  animation: bounce 1s infinite alternate;
}

.btn-download-sm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: var(--white);
  font-family: var(--font-urdu);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 40px;
  border: 2px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}

.btn-download-sm:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.download-section {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(0,200,83,0.05), rgba(255,215,0,0.03));
  border-radius: var(--radius);
  margin: 30px 0;
  border: 1px solid rgba(0, 200, 83, 0.2);
}

.download-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 6px 30px rgba(0, 200, 83, 0.4), 0 0 0 0 rgba(0, 200, 83, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(0, 200, 83, 0.6), 0 0 0 10px rgba(0, 200, 83, 0); }
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}

/* ============================================================
   SECTIONS
   ============================================================ */

section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(to left, var(--green-primary), transparent);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green-primary), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  color: var(--green-primary);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

/* Steps */
.steps-list {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.step-item:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--green-primary);
  margin-bottom: 6px;
}

/* Screenshots Gallery */
.gallery-section {
  background: var(--bg-card2);
  padding: 60px 20px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.screenshot-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

.screenshot-item:hover {
  border-color: var(--green-primary);
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.3);
}

.screenshot-item img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
}

/* Article Cards Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.article-card .card-icon {
  font-size: 2rem;
}

.article-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0;
}

.article-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.article-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: auto;
}

.article-card .card-link:hover {
  color: var(--gold);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

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

.faq-item:hover {
  border-color: var(--green-primary);
}

.faq-question {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
}

.faq-question h4 {
  color: var(--green-primary);
  font-size: 1rem;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  color: var(--green-primary);
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, rgba(0,200,83,0.08), rgba(255,215,0,0.05));
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
}

.info-box h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

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

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.info-list li::before {
  content: '✓';
  color: var(--green-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Requirements Box */
.req-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.req-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.req-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  min-width: 80px;
}

.req-value {
  color: var(--green-primary);
  font-family: var(--font-en);
  font-size: 0.9rem;
  direction: ltr;
}

/* Highlight Section */
.highlight-section {
  background: linear-gradient(135deg, #0a3d1a, #062010);
  border: 1px solid var(--green-medium);
  border-radius: var(--radius);
  padding: 40px 30px;
  margin: 30px 0;
  text-align: center;
}

.highlight-section h2 {
  color: var(--gold);
  margin-bottom: 16px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  direction: rtl;
}

.breadcrumb a {
  color: var(--green-primary);
}

.breadcrumb span {
  color: var(--text-muted);
  margin: 0 6px;
}

/* Article Content */
.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.article-content h2 {
  color: var(--green-primary);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 200, 83, 0.2);
}

.article-content h3 {
  color: var(--gold);
  margin: 24px 0 12px;
}

.article-content ul,
.article-content ol {
  margin: 16px 0;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-content li {
  color: var(--text-light);
  padding-right: 10px;
  position: relative;
  font-size: 1rem;
}

.article-content ul li::before {
  content: '◆';
  color: var(--green-primary);
  font-size: 0.6rem;
  position: absolute;
  right: -2px;
  top: 6px;
}

/* Tags */
.page-tag {
  display: inline-block;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: var(--green-primary);
  font-family: var(--font-en);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  direction: ltr;
  margin-bottom: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: #040d04;
  border-top: 2px solid var(--green-dark);
  padding: 50px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-col h4 {
  color: var(--green-primary);
  margin-bottom: 20px;
  font-size: 1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--green-primary);
  padding-right: 6px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-wrap img {
  height: 42px;
  border-radius: 6px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-primary); }
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.py-20 { padding: 20px 0; }
.py-40 { padding: 40px 0; }

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-medium), transparent);
  margin: 40px 0;
}

.badge-new {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  vertical-align: middle;
  margin-right: 6px;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #051005;
    border-top: 1px solid var(--green-dark);
    border-bottom: 2px solid var(--green-medium);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  nav.open {
    max-height: 500px;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
    gap: 4px;
  }

  .nav-links li a {
    display: block;
    padding: 10px 16px;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }
}

@media (max-width: 600px) {
  section {
    padding: 40px 16px;
  }

  .hero {
    padding: 40px 16px;
  }

  .btn-download {
    font-size: 1.1rem;
    padding: 15px 28px;
  }

  .hero-stats {
    gap: 20px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .article-content {
    padding: 24px 16px;
  }
}

@media (max-width: 380px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */

.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  color: var(--bg-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* ============================================================
   PAGE HERO (for inner pages)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, #051005, #0a2a12);
  padding: 50px 20px;
  text-align: center;
  border-bottom: 2px solid var(--green-dark);
}

.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
