/* ============================================================
   SPORTDEAL.IT.COM - Global Stylesheet
   Target: Bangladesh | Language: Bengali (bn-BD)
   Color System:
     Primary Dark:   #0a3d2e
     Primary Mid:    #0d5c42
     Primary Light:  #1a7a58
     Accent Gold:    #f5c518
     Accent Hover:   #e8a000
     Text Dark:      #1a1a1a
     Text Mid:       #444444
     Text Light:     #777777
     BG White:       #ffffff
     BG Light:       #f8f9fa
     BG Section:     #f2f5f3
     Border:         #e0e8e4
     Dark BG:        #0a1f17
     Dark Mid:       #0d2b1e
============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: #0d5c42; text-decoration: none; transition: color 0.2s; }
a:hover { color: #f5c518; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #0a3d2e;
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: #444444; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; color: #444444; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 60px 0; }
.section-pad-sm { padding: 40px 0; }

/* ---- Topbar ---- */
.topbar {
  background: #051c14;
  color: #cccccc;
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid #0d2b1e;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar a { color: #aaaaaa; font-size: 0.82rem; }
.topbar a:hover { color: #f5c518; }
.topbar-badge {
  background: #f5c518;
  color: #0a3d2e;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ---- Header ---- */
.site-header {
  background: #0a3d2e;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.main-nav a {
  color: #e0e8e4;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(245,197,24,0.15);
  color: #f5c518;
}

/* 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: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-register {
  background: #f5c518;
  color: #0a3d2e;
  border-color: #f5c518;
}
.btn-register:hover {
  background: #e8a000;
  border-color: #e8a000;
  color: #0a3d2e;
}

.btn-login {
  background: transparent;
  color: #f5c518;
  border-color: #f5c518;
}
.btn-login:hover {
  background: #f5c518;
  color: #0a3d2e;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #f5c518;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  background: #0d2b1e;
  border-top: 1px solid #1a7a58;
  padding: 16px 0;
}
.mobile-nav-drawer.open { display: block; }
.mobile-nav-drawer a {
  display: block;
  color: #e0e8e4;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-drawer a:hover { color: #f5c518; background: rgba(245,197,24,0.08); }
.mobile-nav-cta {
  display: flex;
  gap: 10px;
  padding: 14px 20px 4px;
}
.mobile-nav-cta .btn { flex: 1; justify-content: center; }

/* ---- Marquee / Ticker ---- */
.ticker-bar {
  background: #051c14;
  border-bottom: 2px solid #f5c518;
  padding: 8px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.ticker-label {
  background: #f5c518;
  color: #0a3d2e;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ticker-scroll {
  overflow: hidden;
  flex: 1;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker-move 30s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  color: #cccccc;
  font-size: 0.84rem;
  flex-shrink: 0;
}
.ticker-track span a { color: #f5c518; }
@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Banner ---- */
.home-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #051c14;
  max-height: 480px;
}
.home-banner img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* ---- Breadcrumb ---- */
.breadcrumb-bar {
  background: #f2f5f3;
  border-bottom: 1px solid #e0e8e4;
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: #777777;
}
.breadcrumb a { color: #0d5c42; }
.breadcrumb a:hover { color: #f5c518; }
.breadcrumb .sep { color: #aaaaaa; }
.breadcrumb .current { color: #444444; font-weight: 600; }

/* ---- Quick Entry Cards (Shortcut Icons) ---- */
.quick-entry {
  background: #f2f5f3;
  padding: 32px 0;
  border-bottom: 1px solid #e0e8e4;
}
.quick-entry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.quick-card {
  background: #ffffff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.quick-card:hover {
  border-color: #f5c518;
  box-shadow: 0 4px 16px rgba(245,197,24,0.18);
  transform: translateY(-3px);
  color: #0a3d2e;
}
.quick-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a3d2e, #1a7a58);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.quick-card-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0a3d2e;
}

/* ---- Section Titles ---- */
.section-title {
  text-align: center;
  margin-bottom: 36px;
}
.section-title h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #0a3d2e;
  margin-bottom: 10px;
}
.section-title p {
  color: #777777;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.title-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f5c518, #e8a000);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ---- Feature Cards ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #ffffff;
  border: 1px solid #e0e8e4;
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a3d2e, #f5c518);
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card:hover { box-shadow: 0 6px 24px rgba(10,61,46,0.12); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.feature-card h3 { color: #0a3d2e; margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { color: #555555; font-size: 0.92rem; margin: 0; }

/* ---- Category Distribution (Slots / Sports) ---- */
.cat-section { background: #f2f5f3; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.cat-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: transform 0.25s;
}
.cat-card:hover { transform: scale(1.02); }
.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }
.cat-card-slots .cat-card-bg {
  background: linear-gradient(135deg, #0a3d2e 0%, #1a7a58 50%, #2d9e72 100%);
}
.cat-card-sports .cat-card-bg {
  background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
}
.cat-card-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #ffffff;
}
.cat-card-content h3 { color: #ffffff; font-size: 1.5rem; margin-bottom: 8px; }
.cat-card-content p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 14px; }
.cat-card-icon-large { font-size: 3rem; margin-bottom: 10px; }
.btn-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5c518;
  color: #0a3d2e;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.btn-cat:hover { background: #e8a000; color: #0a3d2e; }

/* ---- Content Feed / Article Cards ---- */
.content-feed { background: #ffffff; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feed-card {
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  background: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.feed-card:hover { box-shadow: 0 6px 20px rgba(10,61,46,0.1); transform: translateY(-3px); }
.feed-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, #0a3d2e, #1a7a58);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}
.feed-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.feed-card-tag {
  display: inline-block;
  background: #f2f5f3;
  color: #0d5c42;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feed-card-body h3 { color: #0a3d2e; font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.feed-card-body p { color: #666666; font-size: 0.88rem; flex: 1; margin: 0; }
.feed-card-footer {
  padding: 12px 18px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feed-card-footer span { font-size: 0.8rem; color: #999999; }
.feed-card-footer a { font-size: 0.82rem; color: #0d5c42; font-weight: 600; }
.feed-card-footer a:hover { color: #f5c518; }

/* ---- Long-form Content Area ---- */
.longform-section { background: #ffffff; }
.longform-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.longform-content h2 { color: #0a3d2e; margin-bottom: 16px; }
.longform-content h3 { color: #0d5c42; margin: 24px 0 12px; font-size: 1.15rem; }
.longform-content p { color: #444444; line-height: 1.8; margin-bottom: 14px; }
.longform-content ul { margin-bottom: 16px; }
.longform-content ul li { color: #444444; margin-bottom: 6px; }
.longform-content ul li::marker { color: #f5c518; }

.info-box {
  background: #f2f5f3;
  border-left: 4px solid #0d5c42;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.info-box p { margin: 0; color: #333333; font-size: 0.92rem; }

.sidebar-widget {
  background: #f2f5f3;
  border: 1px solid #e0e8e4;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  color: #0a3d2e;
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f5c518;
}
.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { border-bottom: 1px solid #e0e8e4; }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: #444444;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.sidebar-links a:hover { color: #0d5c42; }
.sidebar-links a::before { content: '›'; color: #f5c518; font-size: 1.1rem; font-weight: 700; }

/* ---- FAQ Section ---- */
.faq-section { background: #f2f5f3; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #ffffff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: #0a3d2e;
  font-size: 0.97rem;
  transition: background 0.2s;
  user-select: none;
}
.faq-question:hover { background: #f8f9fa; }
.faq-question.open { background: #f2f5f3; color: #0d5c42; }
.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0a3d2e;
  color: #f5c518;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-question.open .faq-toggle { transform: rotate(45deg); background: #f5c518; color: #0a3d2e; }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: #555555;
  font-size: 0.93rem;
  line-height: 1.75;
  border-top: 1px solid #f0f0f0;
}
.faq-answer.open { display: block; }
.faq-answer a { color: #0d5c42; font-weight: 600; }
.faq-answer a:hover { color: #f5c518; }

/* ---- YouTube Video Section ---- */
.video-section { background: #0a1f17; padding: 60px 0; }
.video-section .section-title h2 { color: #ffffff; }
.video-section .section-title p { color: #aaaaaa; }
.video-wrapper {
  max-width: 820px;
  margin: 0 auto;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, #0a3d2e 0%, #0d5c42 50%, #1a7a58 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(245,197,24,0.08);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(245,197,24,0.06);
}
.cta-section h2 { color: #ffffff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 30px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  background: #f5c518;
  color: #0a3d2e;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-primary:hover { background: #e8a000; color: #0a3d2e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,0.4); }
.btn-cta-secondary {
  background: transparent;
  color: #f5c518;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid #f5c518;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-secondary:hover { background: #f5c518; color: #0a3d2e; }

/* ---- Stats Bar ---- */
.stats-bar {
  background: #0d2b1e;
  padding: 28px 0;
  border-top: 1px solid #1a7a58;
  border-bottom: 1px solid #1a7a58;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #f5c518;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.84rem; color: #aaaaaa; }

/* ---- Footer ---- */
.site-footer {
  background: #0a1f17;
  color: #cccccc;
  padding-top: 56px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1a3d2e;
}
.footer-brand {}
.footer-logo {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: 160px;
  margin-bottom: 16px;
}
.footer-brand p { color: #999999; font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 10px; font-size: 0.88rem; color: #aaaaaa; }
.footer-contact li strong { color: #cccccc; min-width: 60px; }
.footer-contact a { color: #aaaaaa; }
.footer-contact a:hover { color: #f5c518; }

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f5c518;
  display: inline-block;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: #999999;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-links a::before { content: '›'; color: #f5c518; font-weight: 700; }
.footer-links a:hover { color: #f5c518; }

.footer-bottom {
  background: #051c14;
  padding: 16px 0;
  text-align: center;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: #666666; font-size: 0.82rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: #666666; font-size: 0.82rem; }
.footer-bottom-links a:hover { color: #f5c518; }

/* ---- Page Hero (Inner Pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #0a3d2e 0%, #0d5c42 100%);
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(245,197,24,0.07);
}
.page-hero h1 { color: #ffffff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; margin: 0; }

/* ---- Archive / Listing Grid ---- */
.archive-section { background: #f8f9fa; }
.archive-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}
.archive-main {}
.archive-sidebar {}
.archive-list { display: flex; flex-direction: column; gap: 20px; }
.archive-card {
  background: #ffffff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  padding: 22px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.archive-card:hover { box-shadow: 0 4px 16px rgba(10,61,46,0.1); transform: translateY(-2px); }
.archive-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0a3d2e, #1a7a58);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.archive-card-body { flex: 1; }
.archive-card-body h3 { color: #0a3d2e; font-size: 1.05rem; margin-bottom: 8px; }
.archive-card-body p { color: #666666; font-size: 0.9rem; margin: 0; }
.archive-card-tag {
  display: inline-block;
  background: #f2f5f3;
  color: #0d5c42;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ---- About Page ---- */
.about-hero {
  background: linear-gradient(135deg, #051c14 0%, #0a3d2e 60%, #0d5c42 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(245,197,24,0.2);
}
.about-hero h1 { color: #ffffff; margin-bottom: 14px; }
.about-hero p { color: rgba(255,255,255,0.8); max-width: 600px; }
.about-meta {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.about-meta-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
}
.about-meta-item strong { display: block; color: #f5c518; font-size: 1.4rem; }
.about-meta-item span { color: rgba(255,255,255,0.7); font-size: 0.82rem; }

.about-content { background: #ffffff; }
.about-body { max-width: 820px; }
.about-body h2 { color: #0a3d2e; margin: 32px 0 14px; }
.about-body h3 { color: #0d5c42; margin: 24px 0 10px; }
.about-body p { color: #444444; line-height: 1.85; }
.about-body ul li { color: #444444; margin-bottom: 8px; }
.about-body ul li::marker { color: #f5c518; }

.timeline { margin: 30px 0; }
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -24px;
  width: 2px;
  background: #e0e8e4;
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a3d2e, #1a7a58);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5c518;
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.timeline-body h4 { color: #0a3d2e; margin-bottom: 6px; }
.timeline-body p { color: #666666; font-size: 0.9rem; margin: 0; }

/* ---- Privacy / Policy Page ---- */
.policy-content { background: #ffffff; }
.policy-body { max-width: 820px; }
.policy-body h2 { color: #0a3d2e; margin: 32px 0 14px; font-size: 1.3rem; }
.policy-body h3 { color: #0d5c42; margin: 20px 0 10px; font-size: 1.1rem; }
.policy-body p { color: #444444; line-height: 1.8; }
.policy-body ul li { color: #444444; margin-bottom: 6px; }
.policy-body ul li::marker { color: #f5c518; }
.policy-updated {
  background: #f2f5f3;
  border-left: 4px solid #f5c518;
  padding: 12px 18px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 28px;
  font-size: 0.88rem;
  color: #666666;
}

/* ---- 404 Page ---- */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #051c14, #0a3d2e);
  padding: 60px 20px;
}
.page-404-inner {}
.page-404-number {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  color: #f5c518;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(245,197,24,0.3);
}
.page-404 h2 { color: #ffffff; margin-bottom: 14px; }
.page-404 p { color: rgba(255,255,255,0.75); margin-bottom: 30px; max-width: 480px; margin-left: auto; margin-right: auto; }
.page-404-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold { color: #f5c518; }
.text-green { color: #0d5c42; }
.bg-dark { background: #0a1f17; }
.bg-light { background: #f2f5f3; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.highlight { background: rgba(245,197,24,0.12); padding: 2px 6px; border-radius: 3px; color: #0a3d2e; font-weight: 600; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .quick-entry-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .longform-inner { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-cta { gap: 8px; }
  .btn { padding: 8px 14px; font-size: 0.82rem; }
  .quick-entry-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cat-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar { display: none; }
  .home-banner { max-height: 280px; }
  .home-banner img { max-height: 280px; }
  .section-pad { padding: 40px 0; }
}

@media (max-width: 480px) {
  .quick-entry-grid { grid-template-columns: repeat(2, 1fr); }
  .header-cta .btn-login { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-meta { flex-direction: column; }
  .page-404-links { flex-direction: column; align-items: center; }
}
