/* ============================================================
   GameLyx.vip - Global Stylesheet
   Target: Bangladesh | Language: Bengali (bn-BD)
   Design: Aggregation-dispatch + content-flow + heavy footer
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #0072ff;
  --primary-light: #00c6ff;
  --accent: #ff6b35;
  --accent-gold: #f7c948;
  --dark-bg: #0a0e2e;
  --dark-mid: #0d1b4b;
  --dark-card: #111a3e;
  --dark-card2: #162050;
  --surface: #1a2a6c;
  --surface-light: #1e3070;
  --text-primary: #ffffff;
  --text-secondary: #b0c4de;
  --text-muted: #7a90b8;
  --border: rgba(0, 114, 255, 0.2);
  --border-accent: rgba(255, 107, 53, 0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 20px rgba(0,114,255,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --header-h: 72px;
  --topbar-h: 36px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.3; font-weight: 700; }

/* ---- Container ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--dark-mid);
  border-bottom: 1px solid var(--border);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right a { color: var(--text-muted); font-size: 12px; }
.topbar-right a:hover { color: var(--accent-gold); }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0d1b4b 0%, #0a1535 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img,
.site-logo svg {
  height: 44px;
  width: auto;
  max-width: 180px;
  display: block;
}
@media (max-width: 768px) {
  .site-logo img, .site-logo svg { height: 36px; max-width: 140px; }
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-light);
  background: rgba(0,114,255,0.12);
}

/* Header CTA Buttons */
.header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn-register {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,114,255,0.4);
}
.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,114,255,0.5);
  color: #fff;
}
.btn-login {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-gold) 100%);
  color: #0a0e2e;
  box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}
.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.5);
  color: #0a0e2e;
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 20px;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; }
}
@media (max-width: 480px) {
  .header-cta .btn { padding: 8px 14px; font-size: 12px; }
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(10,14,46,0.97);
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 24px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-bottom: 24px;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-nav-links a:hover { color: var(--primary-light); background: rgba(0,114,255,0.1); }
.mobile-nav-cta { display: flex; gap: 12px; margin-top: 24px; }
.mobile-nav-cta .btn { flex: 1; justify-content: center; }

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--dark-mid);
}
.hero-banner img,
.hero-banner svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-banner img, .hero-banner svg { max-height: 220px; }
}

/* ============================================================
   SHORTCUT CARDS (Quick Entry Grid)
   ============================================================ */
.shortcut-section {
  padding: 32px 0 24px;
  background: var(--dark-bg);
}
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) { .shortcut-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .shortcut-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.shortcut-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}
.shortcut-card:hover {
  border-color: var(--primary);
  background: var(--dark-card2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  color: var(--primary-light);
}
.shortcut-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 4px 12px rgba(0,114,255,0.3);
}
.shortcut-card:nth-child(2n) .shortcut-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-gold) 100%);
  box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}
.shortcut-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.shortcut-card:hover .shortcut-label { color: var(--primary-light); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 56px 0; }
.section-alt { background: var(--dark-mid); }
.section-dark { background: var(--dark-card); }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text-primary);
  margin-bottom: 12px;
}
.section-header p { color: var(--text-secondary); font-size: 16px; max-width: 600px; margin: 0 auto; }
.section-title-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ============================================================
   FEATURE CARDS (3-col)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, var(--accent), var(--accent-gold)); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  background: rgba(0,114,255,0.15);
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--text-primary); }
.feature-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* ============================================================
   CONTENT DISPATCH (2-col listing)
   ============================================================ */
.dispatch-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) { .dispatch-grid { grid-template-columns: 1fr; } }

.dispatch-main {}
.dispatch-sidebar {}

/* Post list cards */
.post-list { display: flex; flex-direction: column; gap: 20px; }
.post-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
  padding: 20px;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.post-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateX(4px);
}
.post-card-img {
  width: 120px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  flex-shrink: 0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.post-card-body { flex: 1; }
.post-card-tag {
  display: inline-block;
  background: rgba(0,114,255,0.15);
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.post-card h4 { font-size: 15px; color: var(--text-primary); margin-bottom: 6px; line-height: 1.4; }
.post-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.post-card-meta { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* Sidebar widget */
.sidebar-widget {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h3 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-link-list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-link-list a {
  color: var(--text-secondary);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: all var(--transition);
  display: block;
}
.sidebar-link-list a:hover {
  color: var(--primary-light);
  border-left-color: var(--primary);
  background: rgba(0,114,255,0.08);
}

/* ============================================================
   CATEGORY DISPATCH BLOCKS
   ============================================================ */
.category-dispatch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .category-dispatch { grid-template-columns: 1fr; } }

.category-block {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.category-block:hover { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.category-block-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; gap: 12px;
}
.category-block:nth-child(2) .category-block-header {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-gold) 100%);
}
.category-block-header h3 { font-size: 18px; color: #fff; }
.category-block-header .cat-icon { font-size: 24px; }
.category-block-body { padding: 20px 24px; }
.category-block-body ul { display: flex; flex-direction: column; gap: 10px; }
.category-block-body ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.category-block-body ul li:last-child a { border-bottom: none; }
.category-block-body ul li a:hover { color: var(--primary-light); }
.category-block-body ul li a::before { content: '›'; color: var(--primary); font-size: 18px; }
.category-block-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.category-block-footer a {
  color: var(--primary-light);
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.category-block-footer a:hover { color: var(--accent-gold); }

/* ============================================================
   LONG-FORM CONTENT AREA
   ============================================================ */
.longform-section {
  background: var(--dark-mid);
  padding: 60px 0;
}
.longform-inner {
  max-width: 900px;
  margin: 0 auto;
}
.longform-inner h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--primary-light);
  margin: 36px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}
.longform-inner h3 {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--accent-gold);
  margin: 28px 0 12px;
}
.longform-inner p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.longform-inner ul, .longform-inner ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.longform-inner ul { list-style: disc; }
.longform-inner ol { list-style: decimal; }
.longform-inner li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.longform-inner strong { color: var(--text-primary); }
.longform-inner a { color: var(--primary-light); }
.longform-inner a:hover { color: var(--accent-gold); }

/* Info box */
.info-box {
  background: rgba(0,114,255,0.08);
  border: 1px solid rgba(0,114,255,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { margin: 0; color: var(--text-secondary); }
.warning-box {
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.warning-box p { margin: 0; color: var(--text-secondary); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 60px 0; background: var(--dark-bg); }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
}
.faq-question:hover { color: var(--primary-light); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,114,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--primary-light);
  transition: transform var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}
.faq-answer a { color: var(--primary-light); }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   YOUTUBE VIDEO MODULE
   ============================================================ */
.video-section { padding: 60px 0; background: var(--dark-mid); }
.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
}
.video-header { text-align: center; margin-bottom: 28px; }
.video-header h2 { font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 10px; }
.video-header p { color: var(--text-secondary); font-size: 15px; }
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark-card) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(0,114,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,107,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(24px, 3.5vw, 40px); margin-bottom: 16px; }
.cta-section p { color: var(--text-secondary); font-size: 16px; max-width: 560px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary-lg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,114,255,0.4);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-lg:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,114,255,0.5); color: #fff; }
.btn-accent-lg {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-gold) 100%);
  color: #0a0e2e;
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(255,107,53,0.4);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-accent-lg:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,107,53,0.5); color: #0a0e2e; }
.btn-outline-lg {
  background: transparent;
  color: var(--text-primary);
  padding: 13px 36px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 700;
  border: 2px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-lg:hover { border-color: var(--primary); color: var(--primary-light); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--dark-mid);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.5; }
.breadcrumb-current { color: var(--text-secondary); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 56px 0 48px;
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark-card) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(0,114,255,0.1) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(26px, 4vw, 44px);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p { color: var(--text-secondary); font-size: 16px; max-width: 640px; line-height: 1.7; }

/* ============================================================
   ARCHIVE / LISTING PAGE
   ============================================================ */
.archive-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding: 48px 0;
  align-items: start;
}
@media (max-width: 900px) { .archive-layout { grid-template-columns: 1fr; } }

.archive-list { display: flex; flex-direction: column; gap: 24px; }
.archive-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  gap: 24px;
  padding: 24px;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.archive-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}
.archive-card-thumb {
  width: 160px;
  height: 100px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  flex-shrink: 0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
@media (max-width: 600px) {
  .archive-card { flex-direction: column; }
  .archive-card-thumb { width: 100%; height: 160px; }
}
.archive-card-content { flex: 1; }
.archive-card-tag {
  display: inline-block;
  background: rgba(0,114,255,0.15);
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.archive-card h3 { font-size: 17px; color: var(--text-primary); margin-bottom: 8px; line-height: 1.4; }
.archive-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.archive-card-meta { font-size: 12px; color: var(--text-muted); margin-top: 10px; display: flex; gap: 16px; }

/* ============================================================
   ABOUT PAGE - Story/Blog style
   ============================================================ */
.about-story {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 0;
}
.about-story h1 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-story h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--primary-light);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}
.about-story h3 {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--accent-gold);
  margin: 28px 0 12px;
}
.about-story p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-story ul { list-style: disc; padding-left: 20px; margin-bottom: 18px; }
.about-story li { color: var(--text-secondary); font-size: 15px; line-height: 1.8; margin-bottom: 8px; }
.about-story strong { color: var(--text-primary); }
.about-story a { color: var(--primary-light); }
.about-story a:hover { color: var(--accent-gold); }

.about-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.about-meta-item { display: flex; flex-direction: column; gap: 4px; }
.about-meta-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.about-meta-value { font-size: 14px; color: var(--text-primary); font-weight: 600; }

.about-related {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 48px;
}
.about-related h3 { font-size: 16px; margin-bottom: 16px; color: var(--text-primary); }
.about-related-links { display: flex; flex-wrap: wrap; gap: 12px; }
.about-related-links a {
  background: rgba(0,114,255,0.1);
  border: 1px solid var(--border);
  color: var(--primary-light);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}
.about-related-links a:hover { background: rgba(0,114,255,0.2); border-color: var(--primary); }

/* ============================================================
   PRIVACY / POLICY PAGE
   ============================================================ */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 0;
}
.policy-content h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--primary-light);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.policy-content h3 { font-size: 18px; color: var(--accent-gold); margin: 24px 0 10px; }
.policy-content p { color: var(--text-secondary); font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
.policy-content ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.policy-content li { color: var(--text-secondary); font-size: 15px; line-height: 1.8; margin-bottom: 8px; }
.policy-content strong { color: var(--text-primary); }
.policy-content a { color: var(--primary-light); }
.policy-toc {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.policy-toc h3 { font-size: 15px; color: var(--text-primary); margin-bottom: 12px; }
.policy-toc ol { list-style: decimal; padding-left: 20px; }
.policy-toc li { margin-bottom: 6px; }
.policy-toc a { color: var(--primary-light); font-size: 14px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item {}
.stat-number {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-mid);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand {}
.footer-logo { margin-bottom: 16px; }
.footer-logo img, .footer-logo svg { height: 40px; width: auto; }
.footer-desc { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-contact-icon { color: var(--primary-light); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--primary-light); }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--primary); }
.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { color: var(--text-muted); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.error-title { font-size: clamp(20px, 3vw, 32px); margin-bottom: 16px; }
.error-desc { color: var(--text-secondary); font-size: 16px; max-width: 480px; margin: 0 auto 32px; }
.error-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight { color: var(--accent-gold); }
.tag-badge {
  display: inline-block;
  background: rgba(0,114,255,0.15);
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: all var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .longform-section { padding: 40px 0; }
  .faq-section { padding: 40px 0; }
  .video-section { padding: 40px 0; }
  .cta-section { padding: 48px 0; }
  .footer-grid { gap: 28px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .shortcut-card { padding: 14px 8px; }
  .shortcut-icon { width: 40px; height: 40px; font-size: 18px; }
  .shortcut-label { font-size: 11px; }
}
