/* ============================================================
   GAMEZA.IT.COM — Global Style System
   T Sports Live BD — Bangladesh Sports Platform
   ============================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --primary: #e94560;
  --primary-dark: #c73050;
  --secondary: #f5a623;
  --accent: #ffe066;
  --bg-deep: #0d0d1a;
  --bg-dark: #12122a;
  --bg-card: #1a1a35;
  --bg-card-hover: #22224a;
  --bg-section-alt: #111128;
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0cc;
  --text-muted: #7070a0;
  --border-subtle: rgba(255,255,255,0.08);
  --border-accent: rgba(233,69,96,0.4);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(233,69,96,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --transition: 0.25s ease;
  --container-max: 1200px;
  --header-h: 70px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-subtle);
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-badge {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}
.topbar-live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 5px;
  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: var(--bg-dark);
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.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;
  max-height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .site-logo img, .site-logo svg { height: 36px; max-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: #fff;
  background: rgba(233,69,96,0.15);
}
.main-nav a.nav-home {
  color: var(--secondary);
  font-weight: 700;
}

/* Header CTA Buttons */
.header-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  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), #c73050);
  color: #fff;
  box-shadow: 0 4px 15px rgba(233,69,96,0.4);
}
.btn-register:hover {
  background: linear-gradient(135deg, #c73050, var(--primary));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(233,69,96,0.5);
}
.btn-login {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-login:hover {
  background: var(--secondary);
  color: #000;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.7);
}
.mobile-nav-drawer.open { display: block; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-dark);
  border-left: 2px solid var(--primary);
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-nav-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.mobile-nav-close button {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-nav-links a {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: block;
  transition: all var(--transition);
}
.mobile-nav-links a:hover { color: #fff; background: rgba(233,69,96,0.15); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-ctas .btn { width: 100%; justify-content: center; }

/* ============================================================
   HERO / BANNER SECTION
   ============================================================ */
.hero-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--bg-deep);
}
.hero-banner img,
.hero-banner svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-banner img, .hero-banner svg { max-height: 260px; }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-section-alt); }
.section-dark { background: var(--bg-dark); }
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 40px;
}
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 12px 0 20px;
}
.section-header.center .section-divider { margin: 12px auto 20px; }

/* ============================================================
   SHORTCUT CARDS (Homepage Quick Entry)
   ============================================================ */
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.shortcut-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.shortcut-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.shortcut-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233,69,96,0.2), rgba(245,166,35,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.shortcut-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.shortcut-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.feature-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================================
   CONTENT FEED / LISTING CARDS
   ============================================================ */
.content-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.feed-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.feed-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.feed-card-thumb {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}
.feed-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.feed-card-tag {
  display: inline-block;
  background: rgba(233,69,96,0.15);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feed-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}
.feed-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.feed-card-link {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.feed-card-link:hover { color: var(--accent); }

/* ============================================================
   SPORTS / SLOTS LISTING (Archive Style)
   ============================================================ */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.archive-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.archive-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.archive-card-header {
  padding: 20px;
  background: linear-gradient(135deg, rgba(233,69,96,0.1), rgba(245,166,35,0.1));
  display: flex;
  align-items: center;
  gap: 14px;
}
.archive-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.archive-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.archive-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.archive-card-body { padding: 16px 20px; }
.archive-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.archive-card-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.archive-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}
.archive-badge.hot { background: rgba(233,69,96,0.15); color: var(--primary); }
.archive-badge.new { background: rgba(245,166,35,0.15); color: var(--secondary); }

/* ============================================================
   LONG-FORM CONTENT AREA
   ============================================================ */
.longform-content {
  max-width: 860px;
  margin: 0 auto;
}
.longform-content h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-accent);
}
.longform-content h3 {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--secondary);
  margin: 28px 0 12px;
}
.longform-content p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.8;
}
.longform-content ul,
.longform-content ol {
  margin: 16px 0 20px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}
.longform-content ul { list-style: disc; }
.longform-content ol { list-style: decimal; }
.longform-content li { margin-bottom: 8px; }
.longform-content strong { color: var(--text-primary); }
.longform-content a { color: var(--secondary); }
.longform-content a:hover { color: var(--accent); }
.longform-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  background: rgba(233,69,96,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  color: var(--text-secondary);
  font-style: italic;
}
.longform-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.longform-content th {
  background: rgba(233,69,96,0.15);
  color: var(--text-primary);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border-accent);
}
.longform-content td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.longform-content tr:hover td { background: rgba(255,255,255,0.03); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-accent); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-question-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(233,69,96,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer a { color: var(--secondary); }

/* ============================================================
   YOUTUBE VIDEO MODULE
   ============================================================ */
.video-section { padding: 64px 0; background: var(--bg-section-alt); }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--radius-md);
}
.video-meta { margin-top: 20px; }
.video-meta h3 { font-size: 20px; color: var(--text-primary); margin-bottom: 8px; }
.video-meta p { color: var(--text-secondary); font-size: 14px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(233,69,96,0.12), rgba(245,166,35,0.08));
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(233,69,96,0.4);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233,69,96,0.5);
  color: #fff;
}
.btn-secondary-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  padding: 12px 32px;
  font-size: 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary-outline:hover {
  background: var(--secondary);
  color: #000;
  transform: translateY(-2px);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  padding: 14px 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
}
.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(--secondary); }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.5; }
.breadcrumb-current { color: var(--text-secondary); }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  padding: 60px 0 48px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-deep));
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--primary); }
.page-hero p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -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(--bg-dark);
  border-top: 2px solid var(--primary);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-logo img,
.footer-logo svg {
  height: 40px;
  max-height: 40px;
  width: auto;
  max-width: 160px;
}
.footer-brand-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-accent);
}
.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:hover { color: var(--secondary); }
.footer-links a::before {
  content: "›";
  color: var(--primary);
  font-weight: 700;
}
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-contact-icon {
  width: 20px;
  flex-shrink: 0;
  color: var(--primary);
  font-style: normal;
  font-weight: 700;
}
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom-links a:hover { color: var(--secondary); }

/* ============================================================
   ABOUT PAGE — Story / Blog Style
   ============================================================ */
.about-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-deep));
  border-bottom: 1px solid var(--border-subtle);
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-hero-inner { grid-template-columns: 1fr; }
}
.about-hero-text h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  margin-bottom: 20px;
}
.about-hero-text h1 span { color: var(--primary); }
.about-hero-text p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.about-visual-icon { font-size: 80px; margin-bottom: 20px; }
.about-visual h3 { font-size: 22px; color: var(--secondary); margin-bottom: 10px; }
.about-visual p { color: var(--text-muted); font-size: 14px; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-deep);
  box-shadow: 0 0 10px rgba(233,69,96,0.5);
}
.timeline-year {
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.timeline-item h3 {
  font-size: 17px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.timeline-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================================
   PRIVACY / POLICY PAGE
   ============================================================ */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
}
.policy-content h2 {
  font-size: 22px;
  color: var(--text-primary);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.policy-content h3 {
  font-size: 17px;
  color: var(--secondary);
  margin: 24px 0 10px;
}
.policy-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-content ul {
  list-style: disc;
  margin: 12px 0 16px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}
.policy-content li { margin-bottom: 6px; }
.policy-last-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-page-inner {}
.error-code {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.error-page h2 {
  font-size: clamp(20px, 3vw, 30px);
  color: var(--text-primary);
  margin-bottom: 16px;
}
.error-page p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 32px;
}
.error-nav-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-nav-links a {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.error-nav-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(233,69,96,0.08);
}

/* ============================================================
   RELATED LINKS / INTERNAL NAV BLOCK
   ============================================================ */
.related-links-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin: 40px 0;
}
.related-links-block h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.related-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.related-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.related-link-item:hover {
  background: rgba(233,69,96,0.1);
  color: var(--primary);
}
.related-link-item::before {
  content: "→";
  color: var(--primary);
  font-weight: 700;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-box {
  background: rgba(233,69,96,0.08);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { color: var(--text-secondary); font-size: 14px; margin: 0; }
.tag-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  background: rgba(233,69,96,0.15);
  color: var(--primary);
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.live-badge::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-ctas .btn-login { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .content-feed { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .shortcut-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: 1fr; }
  .header-ctas .btn { padding: 8px 14px; font-size: 13px; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
  border: none;
  box-shadow: 0 4px 16px rgba(233,69,96,0.4);
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); color: #fff; }
