/* 3 Patti Boss Pakistan - Mobile-first, fast, SEO-friendly */
:root {
  --green: #0d5c2e;
  --green-light: #1a7a3e;
  --gold: #c9a227;
  --gold-light: #e6c04a;
  --bg: #0a1f12;
  --card: #122a1a;
  --text: #e8e8e8;
  --muted: #a0b8a8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }
h1, h2, h3, h4 { line-height: 1.25; margin-bottom: 0.6em; color: #fff; }
h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
h2 { font-size: clamp(1.35rem, 3.5vw, 1.75rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); }
p { margin-bottom: 1rem; }
.container { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 1rem; }
.site-header {
  background: linear-gradient(180deg, var(--green) 0%, var(--bg) 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.logo { font-weight: 700; font-size: 1.25rem; color: #fff; }
.logo img { height: 40px; width: auto; }
.nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.nav a { color: var(--text); font-size: 0.95rem; }
.nav a:hover { color: var(--gold-light); }
.hero {
  padding: 2rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--card) 0%, var(--bg) 50%);
}
.hero h1 { margin-bottom: 0.5rem; }
.hero .sub { color: var(--muted); margin-bottom: 1.25rem; font-size: 1.05rem; }
.cta-wrap { margin: 1.5rem 0; }
.btn-download {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a1f12;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(201,162,39,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,0.5); text-decoration: none; }
.hero-img { border-radius: 12px; margin: 1.5rem auto; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.section { padding: 2rem 0; }
.section:nth-child(even) { background: rgba(18,42,26,0.5); }
.section h2 { margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--green-light); }
.article-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 1.5rem; }
@media (min-width: 600px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .article-grid { grid-template-columns: repeat(3, 1fr); } }
.article-card {
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.2);
  transition: border-color 0.2s, transform 0.2s;
}
.article-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.article-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-card .card-body { padding: 1rem; }
.article-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.article-card h3 a { color: #fff; }
.article-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0; }
.site-footer {
  background: var(--green);
  padding: 2rem 0;
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer a { color: var(--gold-light); }
.breadcrumb { padding: 0.75rem 0; font-size: 0.9rem; color: var(--muted); }
.breadcrumb a { color: var(--gold-light); }
.article-body { padding: 1rem 0 2rem; }
.article-body h2 { margin-top: 1.5rem; }
.article-body img { margin: 1.25rem 0; border-radius: 8px; }
.last-updated { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
