/* ════════════════════════════════════════════════════
   GK YARD — MAIN STYLESHEET
   Version: 2.0 | gkyard.com
════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ───────────────────────────────── */
:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --surface2: #f5f3ee;
  --border: #e8e4dc;
  --text: #111111;
  --text2: #444444;
  --muted: #787878;
  --accent: #e63329;
  --accent-dark: #c02920;
  --accent2: #1a1a6e;
  --tag-bg: #f0ede5;
  --tag-color: #e63329;
  --ad-bg: #f2f0ea;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
  --radius: 6px;
  --radius-lg: 10px;
  --nav-height: 64px;
  --transition: 0.25s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
}

[data-theme="dark"] {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface2: #242424;
  --border: #2e2e2e;
  --text: #f0f0f0;
  --text2: #c0c0c0;
  --muted: #888888;
  --accent: #ff4d42;
  --accent-dark: #e63329;
  --accent2: #3a3aae;
  --tag-bg: #2a2a2a;
  --tag-color: #ff6b62;
  --ad-bg: #1e1e1e;
  --shadow: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ── PAGE LOADER ─────────────────────────────────── */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#pageLoader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner { text-align: center; }
.loader-logo {
  margin-bottom: 20px;
  animation: logoPulse 1.2s ease-in-out infinite alternate;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-logo-img { height: 40px; width: auto; }
.loader-logo-dark  { display: none; }
.loader-logo-light { display: block; }
[data-theme="dark"] .loader-logo-light { display: none; }
[data-theme="dark"] .loader-logo-dark  { display: block; }
.loader-logo span { color: var(--accent); }
@keyframes logoPulse {
  from { opacity: 0.6; transform: scale(0.97); }
  to   { opacity: 1;   transform: scale(1); }
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto 12px;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 99px;
  animation: loadBar 1.2s ease-in-out infinite;
}
@keyframes loadBar {
  0%   { width: 0%;   margin-left: 0; }
  50%  { width: 70%;  margin-left: 0; }
  100% { width: 0%;   margin-left: 100%; }
}
.loader-text {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

/* ── TICKER ──────────────────────────────────────── */
.ticker-wrap {
  background: var(--accent);
  color: #fff;
  height: 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  user-select: none;
}
.ticker-label {
  background: rgba(0,0,0,0.2);
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.ticker-scroll { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span { padding: 0 28px; }
.ticker-track span::before { content: "◆  "; font-size: 7px; opacity: 0.6; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER ──────────────────────────────────────── */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 12px;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: -0.5px;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
}
.logo:hover { opacity: 0.85; }
.logo span { color: var(--accent); }
.logo-img { height: 32px; width: auto; display: block; }
.logo-img-dark  { display: none; }
.logo-img-light { display: block; }
[data-theme="dark"] .logo-img-light { display: none; }
[data-theme="dark"] .logo-img-dark  { display: block; }

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  overflow: hidden;
}
.primary-nav .nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.primary-nav .nav-link i { font-size: 12px; }
.primary-nav .nav-link:hover { color: var(--text); background: var(--tag-bg); }
.primary-nav .nav-link.active {
  color: var(--accent);
  font-weight: 700;
  background: var(--tag-bg);
  position: relative;
}

/* Header right */
.header-right { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface2);
  color: var(--text);
  font-size: 15px;
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.icon-btn:hover { background: var(--border); transform: translateY(-1px); }
.subscribe-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.subscribe-btn:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230,51,41,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--surface2); }
.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ───────────────────────────────────── */
.mobile-nav {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--surface);
  border-top: 1px solid transparent;
}
.mobile-nav.open {
  max-height: 80vh;
  border-top-color: var(--border);
  overflow-y: auto;
}
.mobile-nav-inner {
  padding: 10px 0 16px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.mobile-nav.open .mobile-nav-inner {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.mobile-nav-link i { width: 18px; text-align: center; color: var(--muted); font-size: 14px; }
.mobile-nav-link:hover {
  background: var(--surface2);
  color: var(--accent);
  border-left-color: var(--accent);
}
.mobile-nav-link:hover i { color: var(--accent); }
.mobile-nav-link.active {
  background: var(--surface2);
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 600;
}
.mobile-nav-link.active i { color: var(--accent); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 8px 24px; }
.mobile-subscribe {
  margin: 8px 16px 0;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius);
  border-left: none !important;
  justify-content: center;
  padding: 12px 24px !important;
  font-weight: 600;
}
.mobile-subscribe i { color: #fff !important; }
.mobile-subscribe:hover { background: var(--accent-dark) !important; border-left: none !important; }

/* ── SEARCH OVERLAY ───────────────────────────────── */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  animation: fadeIn 0.2s ease;
}
.search-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.search-box {
  background: var(--surface);
  border-radius: 12px;
  padding: 24px;
  width: 90%;
  max-width: 620px;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.25s ease;
}
@keyframes slideDown { from { transform: translateY(-16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.search-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.search-header h3 { font-size: 13px; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 8px; letter-spacing: 0.05em; text-transform: uppercase; }
.search-close-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--surface2); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all var(--transition); }
.search-close-btn:hover { background: var(--border); color: var(--text); }
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 4px 16px;
  transition: border-color var(--transition);
}
.search-input-wrap:focus-within { border-color: var(--accent); }
.search-icon { color: var(--muted); font-size: 16px; flex-shrink: 0; }
.search-input-wrap input {
  flex: 1; padding: 12px 0; font-size: 17px;
  background: none; border: none; outline: none;
  color: var(--text); font-family: var(--font-body);
}
.search-results { margin-top: 14px; max-height: 320px; overflow-y: auto; }
.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 10px; border-radius: var(--radius); cursor: pointer;
  transition: background var(--transition); border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text);
}
.search-result-item:hover { background: var(--surface2); }
.search-result-icon { width: 40px; height: 40px; border-radius: var(--radius); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.search-result-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; line-height: 1.35; }
.search-result-item span { font-size: 11px; color: var(--muted); }
.search-footer { margin-top: 12px; text-align: center; font-size: 12px; color: var(--muted); }
kbd { background: var(--surface2); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; font-size: 11px; font-family: var(--font-mono); }

/* ── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.two-col { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding: 24px 0 0; align-items: start; }

/* Section headers */
.section-head {
  display: flex; align-items: center; gap: 10px;
  border-bottom: 2px solid var(--text);
  padding-bottom: 8px; margin-bottom: 16px;
}
.section-head h2, .section-head h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.section-head h2 i, .section-head h3 i { color: var(--accent); font-size: 16px; }
.view-all {
  margin-left: auto; font-size: 12px; color: var(--muted);
  font-weight: 500; display: flex; align-items: center; gap: 4px;
  transition: color var(--transition);
}
.view-all:hover { color: var(--accent); }

/* Tags */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--tag-color);
}
.tag-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 4px 9px; border-radius: 3px;
}

/* Card meta */
.card-meta { font-size: 11px; color: var(--muted); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.card-meta i { font-size: 10px; }

/* ── IMAGE RENDERING ──────────────────────────────── */
.post-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-main-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; }

/* Gradient palettes */
.g-ai      { background: linear-gradient(135deg, #1a1a6e, #2d0a6e); }
.g-tech    { background: linear-gradient(135deg, #0a2d1a, #0a4d2a); }
.g-media   { background: linear-gradient(135deg, #2d1a0a, #4a2010); }
.g-gaming  { background: linear-gradient(135deg, #1a0a2d, #2a0a4a); }
.g-crypto  { background: linear-gradient(135deg, #2d2a0a, #4a400a); }
.g-gadget  { background: linear-gradient(135deg, #0a2d2d, #0a4040); }
.g-cyber   { background: linear-gradient(135deg, #2d0a0a, #4a0a0a); }
.g-space   { background: linear-gradient(135deg, #0a0a2d, #0a102a); }
.g-ev      { background: linear-gradient(135deg, #0a2a1a, #103a0a); }
.g-social  { background: linear-gradient(135deg, #2a0a1a, #4a0a2a); }

/* ── AD UNITS ────────────────────────────────────── */
.ad-unit {
  background: var(--ad-bg); border: 1px dashed var(--border);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  color: var(--muted); font-size: 11px; font-family: var(--font-mono);
  letter-spacing: 0.04em; gap: 4px;
}
.ad-unit i { font-size: 18px; color: var(--border); margin-bottom: 4px; }
.ad-unit small { font-size: 10px; color: var(--border); }
.ad-leaderboard { height: 90px; margin: 20px 0; }
.ad-rect { height: 250px; margin-bottom: 28px; }
.ad-inline { height: 90px; margin: 28px 0; }

/* ── HERO ────────────────────────────────────────── */
.hero { margin: 16px 0 0; animation: fadeUp 0.5s ease; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  /*grid-template-rows: 1fr 1fr;*/
  gap: 3px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  /*min-height: 460px;*/
}
.hero-main {
  grid-row: 1 / 3;
  position: relative;
  width: 100%;
  height: auto;
  /*background: #0a0a1a;*/
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  text-decoration: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0d3a 0%, #1a0a0a 60%, #2a0505 100%);
  transition: transform 0.6s ease;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(80,40,200,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(200,30,30,0.15) 0%, transparent 50%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-main:hover .hero-bg { transform: scale(1.04); }
.hero-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-main h1 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900; color: #fff;
  line-height: 1.22; margin: 7px 0 7px;
}
.hero-main .lead-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.55; max-width: 480px; }
.hero-meta { margin-top: 10px; font-size: 11px; color: rgba(255,255,255,0.45); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.hero-meta i { font-size: 10px; }
.hero-sub {
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: background var(--transition);
  text-decoration: none; overflow: hidden;
}
.hero-sub:hover { background: var(--surface2); }
.hero-sub-img {
  width: 100%; height: 179px; overflow: hidden; flex-shrink: 0;
}
.hero-sub-content { padding: 14px 16px; position: relative; z-index: 1; }
.hero-sub h2 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; line-height: 1.35;
  margin: 5px 0 6px; color: var(--text);
}
.hero-sub p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ── ARTICLE CARDS ───────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; }
.card {
  cursor: pointer; transition: opacity var(--transition), transform var(--transition);
  border-bottom: 1px solid var(--border); padding-bottom: 16px;
  text-decoration: none; display: block; color: var(--text);
}
.card:hover { opacity: 0.82; transform: translateY(-2px); }
.card-img {
  width: 100%; height: auto;
  border-radius: var(--radius); margin-bottom: 10px;
  overflow: hidden; position: relative;
}
.card h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; line-height: 1.35; margin: 5px 0 5px; color: var(--text);
  transition: color var(--transition);
}
.card:hover h4 { color: var(--accent); }
.card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* List articles */
.list-articles { display: flex; flex-direction: column; }
.list-article {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity var(--transition);
  text-decoration: none; color: var(--text);
}
.list-article:hover { opacity: 0.75; }
.list-article:last-child { border-bottom: none; }
.list-num {
  font-family: var(--font-mono); font-size: 22px;
  color: var(--border); font-weight: 500;
  min-width: 32px; line-height: 1; padding-top: 2px; flex-shrink: 0;
}
.list-article h4 {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  line-height: 1.35; margin-bottom: 5px; color: var(--text);
  transition: color var(--transition);
}
.list-article:hover h4 { color: var(--accent); }
.list-article p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ── SIDEBAR ──────────────────────────────────────── */
.sidebar-widget { margin-bottom: 22px; }
.widget-title {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  border-bottom: 2px solid var(--text); padding-bottom: 8px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.widget-title i { color: var(--accent); font-size: 14px; }
.trending-item {
  display: flex; gap: 10px; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: opacity var(--transition);
}
.trending-item:hover { opacity: 0.75; }
.trending-item:last-child { border-bottom: none; }
.trending-thumb { width: 75px; height: auto; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; position: relative; }
.trending-item h5 { font-size: 12.5px; font-weight: 600; line-height: 1.35; margin-bottom: 3px; color: var(--text); }
.trending-item .reads { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.trending-item .reads i { font-size: 10px; }

/* Newsletter box */
.newsletter-box { background: var(--accent2); color: #fff; border-radius: var(--radius-lg); padding: 24px; }
.newsletter-box h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.newsletter-box p { font-size: 13px; opacity: 0.78; margin-bottom: 16px; line-height: 1.5; }
.newsletter-box input { width: 100%; padding: 10px 14px; border-radius: var(--radius); border: none; font-size: 13px; font-family: var(--font-body); margin-bottom: 10px; outline: none; background: rgba(255,255,255,0.95); color: #111; }
.newsletter-box button { width: 100%; padding: 11px; background: var(--accent); color: #fff; border-radius: var(--radius); font-size: 13px; font-weight: 600; transition: background var(--transition); display: flex; align-items: center; justify-content: center; gap: 7px; }
.newsletter-box button:hover { background: var(--accent-dark); }

/* Category pills */
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-pill {
  background: var(--tag-bg); color: var(--text2);
  font-size: 12px; font-weight: 500; padding: 6px 13px;
  border-radius: 20px; cursor: pointer; transition: all var(--transition);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
}
.cat-pill i { font-size: 11px; color: var(--muted); }
.cat-pill:hover { background: var(--text); color: var(--muted); }
.cat-pill:hover i { color: var(--muted); }

/* ── CATEGORY PAGE ────────────────────────────────── */
.cat-header { padding: 40px 0 28px; border-bottom: 1px solid var(--border); }
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 10px; }
.cat-header-icon { font-size: 48px; }
.cat-header h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 900; line-height: 1.1; color: var(--text); }
.cat-header p { font-size: 15px; color: var(--muted); margin-top: 10px; max-width: 600px; line-height: 1.6; }
.cat-header-line { width: 56px; height: 4px; background: var(--accent); border-radius: 2px; margin-top: 16px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }
.cat-card {
  background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; display: block; color: var(--text);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card-img { width: 100%; height: auto; position: relative; overflow: hidden; }
.cat-card-body { padding: 13px; }
.cat-card-body h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; line-height: 1.35; margin: 5px 0 6px; color: var(--text); transition: color var(--transition); }
.cat-card:hover h4 { color: var(--accent); }
.cat-card-body p { font-size: 12.5px; color: var(--muted); line-height: 1.48; }

/* ── ARTICLE PAGE ─────────────────────────────────── */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 24px 0 40px; }
.article-header { margin-bottom: 20px; }
.article-header h1 { font-family: var(--font-display); font-size: clamp(22px, 3.5vw, 36px); font-weight: 900; line-height: 1.2; color: var(--text); margin: 10px 0 12px; }
.article-lead { font-size: 15px; color: var(--text2); line-height: 1.65; font-weight: 300; }
.article-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 14px; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0; font-family: var(--font-mono); }
.author-info strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.author-info span { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.author-info span i { font-size: 10px; }
.share-btns { margin-left: auto; display: flex; gap: 8px; }
.share-btn { padding: 7px 14px; border-radius: var(--radius); font-size: 12px; font-weight: 600; cursor: pointer; transition: all var(--transition); border: 1px solid var(--border); color: var(--text2); display: flex; align-items: center; gap: 6px; background: var(--surface); }
.share-btn:hover { background: var(--surface2); border-color: var(--accent); color: var(--accent); }
.share-btn i { font-size: 12px; }

/* Article hero image */
.article-hero-img {
  width: 100%; height: auto;
  border-radius: var(--radius-lg); margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.article-img-caption { margin-top: -8px; margin-bottom: 20px; font-size: 11px; color: var(--muted); text-align: center; font-style: italic; }

/* Article body */
.article-body { font-size: 16px; line-height: 1.72; color: var(--text2); }
.article-body h2 { font-family: var(--font-display); font-size: 23px; font-weight: 700; color: var(--text); margin: 26px 0 10px; }
.article-body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
.article-body p { margin-bottom: 14px; }
.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 12px 18px; margin: 20px 0;
  background: var(--surface2); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; font-size: 16px; color: var(--text);
  position: relative;
}
.article-body blockquote i { color: var(--accent); margin-right: 6px; font-size: 15px; }
.article-body blockquote cite { display: block; font-size: 12px; font-style: normal; color: var(--muted); margin-top: 8px; font-weight: 600; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 14px; }
.article-body li { margin-bottom: 6px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.article-tag-pill {
  background: var(--tag-bg); color: var(--text2); padding: 6px 12px;
  border-radius: var(--radius); font-size: 12px; font-weight: 500; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
  display: flex; align-items: center; gap: 5px;
}
.article-tag-pill i { font-size: 11px; color: var(--muted); }
.article-tag-pill:hover { background: var(--text); color: var(--muted); }

/* Related */
.related-articles { margin-top: 26px; padding-top: 20px; border-top: 2px solid var(--text); }
.related-articles h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.related-articles h3 i { color: var(--accent); font-size: 15px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.related-card { cursor: pointer; transition: opacity var(--transition); text-decoration: none; display: block; color: var(--text); }
.related-card:hover { opacity: 0.75; }
.related-card-img { width: 100%; height: auto; border-radius: var(--radius); margin-bottom: 7px; position: relative; overflow: hidden; }
.related-card h5 { font-family: var(--font-display); font-size: 13px; font-weight: 700; line-height: 1.35; color: var(--text); transition: color var(--transition); }
.related-card:hover h5 { color: var(--accent); }

/* ── ABOUT PAGE ───────────────────────────────────── */
.about-hero { background: linear-gradient(135deg, var(--accent2) 0%, #0a0a2a 100%); color: #fff; padding: 80px 0; text-align: center; }
.about-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); font-weight: 900; margin-bottom: 16px; line-height: 1.1; }
.about-hero h1 span { color: var(--accent); }
.about-hero p { font-size: 17px; opacity: 0.78; max-width: 580px; margin: 0 auto; line-height: 1.65; }
.about-section { max-width: 840px; margin: 60px auto; padding: 0 24px; }
.about-section h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 16px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.about-section h2 i { color: var(--accent); font-size: 22px; }
.about-section p { font-size: 16px; color: var(--text2); line-height: 1.75; margin-bottom: 16px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.team-card { background: var(--surface); border-radius: var(--radius-lg); padding: 28px; text-align: center; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.team-card h4 { font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 4px; }
.team-card .role { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.team-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.value-card { background: var(--surface); border-radius: var(--radius-lg); padding: 24px; border-left: 4px solid var(--accent); box-shadow: var(--shadow); }
.value-card h4 { font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.value-card h4 i { color: var(--accent); }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── CONTACT PAGE ─────────────────────────────────── */
.contact-wrap { max-width: 1000px; margin: 0 auto; padding: 60px 24px; }
.page-header { margin-bottom: 40px; }
.page-header h1 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); font-weight: 900; margin-bottom: 10px; }
.page-header p { color: var(--muted); font-size: 15px; max-width: 600px; line-height: 1.65; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text2); display: flex; align-items: center; gap: 6px; }
.form-group label i { color: var(--accent); font-size: 12px; }
.form-control {
  width: 100%; padding: 11px 14px; border-radius: var(--radius);
  border: 1.5px solid var(--border); font-size: 14px; font-family: var(--font-body);
  background: var(--surface); color: var(--text); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(230,51,41,0.1); }
textarea.form-control { height: 140px; resize: vertical; }
.btn-primary {
  background: var(--accent); color: #fff; padding: 13px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; transition: all var(--transition); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; border: none;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(230,51,41,0.35); }
.btn-outline {
  border: 2px solid var(--border); color: var(--text); padding: 13px 28px;
  border-radius: var(--radius); font-size: 15px; font-weight: 600;
  transition: all var(--transition); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; background: none;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.contact-info h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-icon { width: 42px; height: 42px; border-radius: var(--radius); background: var(--tag-bg); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--accent); flex-shrink: 0; }
.contact-info-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.contact-info-item a { color: var(--accent); }
.social-links { display: flex; gap: 10px; margin-top: 28px; }
.social-link { width: 42px; height: 42px; border-radius: 50%; background: var(--surface2); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: all var(--transition); border: 1px solid var(--border); color: var(--text2); text-decoration: none; }
.social-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }

/* ── SUBSCRIBE PAGE ────────────────────────────────── */
.subscribe-wrap { max-width: 1000px; margin: 0 auto; padding: 60px 24px; }
.subscribe-hero { text-align: center; margin-bottom: 52px; }
.subscribe-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 900; margin-bottom: 12px; }
.subscribe-hero p { font-size: 16px; color: var(--muted); max-width: 500px; margin: 0 auto; line-height: 1.6; }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 52px; }
.plan-card { background: var(--surface); border-radius: var(--radius-lg); padding: 32px; border: 2px solid var(--border); transition: all var(--transition); position: relative; box-shadow: var(--shadow); }
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card.popular { border-color: var(--accent); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 14px; border-radius: 20px; letter-spacing: 0.08em; white-space: nowrap; display: flex; align-items: center; gap: 5px; }
.plan-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.plan-price { font-family: var(--font-mono); font-size: 36px; font-weight: 500; color: var(--accent); margin: 12px 0 4px; }
.plan-price span { font-family: var(--font-body); font-size: 14px; color: var(--muted); }
.plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.55; }
.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li { font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--border); color: var(--text2); display: flex; gap: 10px; align-items: center; }
.plan-features li i { color: var(--accent); font-size: 12px; width: 14px; flex-shrink: 0; }
.plan-btn-primary { width: 100%; padding: 12px; border-radius: var(--radius); font-size: 14px; font-weight: 600; transition: all var(--transition); background: var(--accent); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; border: none; }
.plan-btn-primary:hover { background: var(--accent-dark); }
.plan-btn-outline { width: 100%; padding: 12px; border-radius: var(--radius); font-size: 14px; font-weight: 600; transition: all var(--transition); border: 2px solid var(--border); color: var(--text); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; }
.plan-btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── ADVERTISE PAGE ───────────────────────────────── */
.advertise-wrap { max-width: 1000px; margin: 0 auto; padding: 60px 24px; }
.audience-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.audience-stat { background: var(--surface); border-radius: var(--radius-lg); padding: 28px; text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow); }
.audience-stat i { font-size: 28px; color: var(--accent); margin-bottom: 10px; display: block; }
.audience-stat .num { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--accent); }
.audience-stat .lbl { font-size: 13px; color: var(--muted); margin-top: 6px; }
.ad-packages { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0 40px; }
.ad-pkg { background: var(--surface); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform var(--transition); }
.ad-pkg:hover { transform: translateY(-3px); }
.ad-pkg-icon { font-size: 28px; color: var(--accent); margin-bottom: 12px; }
.ad-pkg h3 { font-weight: 700; font-size: 18px; margin-bottom: 8px; color: var(--text); }
.ad-pkg .price { font-family: var(--font-mono); font-size: 28px; color: var(--accent); margin: 10px 0; }
.ad-pkg .price span { font-family: var(--font-body); font-size: 13px; color: var(--muted); }
.ad-pkg p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.media-kit-cta { background: var(--surface); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.media-kit-cta h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.media-kit-cta p { font-size: 14px; color: var(--muted); max-width: 480px; line-height: 1.6; }
.media-kit-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── WRITE FOR US ─────────────────────────────────── */
.write-wrap { max-width: 840px; margin: 0 auto; padding: 60px 24px; }
.write-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.write-card { background: var(--surface); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.write-card h4 { font-weight: 700; margin-bottom: 8px; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.write-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.compensation-box { background: var(--surface); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); margin: 24px 0; }
.compensation-box h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.compensation-box p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── PRIVACY / TERMS ──────────────────────────────── */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 60px 24px; }
.legal-wrap h1 { font-family: var(--font-display); font-size: 40px; font-weight: 900; margin-bottom: 6px; }
.legal-wrap .last-updated { font-size: 13px; color: var(--muted); margin-bottom: 36px; }
.legal-body { font-size: 15px; line-height: 1.8; color: var(--text2); }
.legal-body h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.legal-body p { margin-bottom: 16px; }
.legal-body a { color: var(--accent); }

/* ── 404 PAGE ─────────────────────────────────────── */
.error-page { text-align: center; padding: 80px 24px; }
.error-page .error-icon { font-size: 72px; color: var(--accent); margin-bottom: 16px; animation: bounce 2s ease infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.error-page h1 { font-family: var(--font-display); font-size: 48px; font-weight: 900; margin-bottom: 10px; }
.error-page h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.error-page p { color: var(--muted); margin-bottom: 28px; font-size: 15px; }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: #0e0e0e; color: rgba(255,255,255,0.55); padding: 40px 0 0; margin-top: 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.footer-brand {}
.footer-logo { display: block; margin-bottom: 14px; }
.footer-logo-img { height: 32px; width: auto; display: block; }
.footer-logo span { color: #e63329; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-social { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all var(--transition); color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-social:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
footer h5 { color: rgba(255,255,255,0.88); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color var(--transition); display: flex; align-items: center; gap: 8px; cursor: pointer; }
footer ul li a i { font-size: 11px; color: rgba(255,255,255,0.3); width: 14px; }
footer ul li a:hover { color: #fff; }
footer ul li a:hover i { color: var(--accent); }

/* Footer newsletter */
.footer-newsletter {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-newsletter-text h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.footer-newsletter-text h4 i { color: var(--accent); }
.footer-newsletter-text p { font-size: 13px; }
.footer-newsletter-form { display: flex; gap: 10px; min-width: 320px; }
.footer-newsletter-form input { flex: 1; padding: 11px 14px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.07); color: #fff; font-size: 13px; font-family: var(--font-body); outline: none; transition: border-color var(--transition); }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-form input:focus { border-color: var(--accent); }
.footer-newsletter-form button { background: var(--accent); color: #fff; padding: 11px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 600; transition: background var(--transition); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.footer-newsletter-form button:hover { background: var(--accent-dark); }

.footer-bottom { padding: 18px 0 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); margin-left: 16px; transition: color var(--transition); font-size: 12px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ── TOAST ───────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--text); color: var(--bg);
  padding: 14px 20px; border-radius: 8px; font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg); max-width: 340px;
  transform: translateY(80px) scale(0.95); opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0) scale(1); opacity: 1; }
.toast.success { border-left: 4px solid #22c55e; }
.toast.error { border-left: 4px solid var(--accent); }
.toast i { font-size: 16px; }

/* ── COOKIE BANNER ───────────────────────────────── */
#cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: var(--surface);
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#cookieBanner.show { transform: translateY(0); }
#cookieBanner.hide { transform: translateY(110%); }
.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}
.cookie-text strong { color: var(--text); font-weight: 700; }
.cookie-text a { color: var(--accent); text-decoration: underline; font-weight: 500; }
.cookie-text a:hover { opacity: 0.8; }
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  background: var(--accent); color: #fff;
  border: none; padding: 9px 20px;
  border-radius: var(--radius); font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.cookie-btn-accept:hover { background: var(--accent-dark); transform: translateY(-1px); }
.cookie-btn-decline {
  background: none; color: var(--muted);
  border: 1.5px solid var(--border);
  padding: 9px 16px; border-radius: var(--radius);
  font-size: 13px; font-weight: 500; cursor: pointer;
  font-family: var(--font-body); transition: all var(--transition);
  white-space: nowrap;
}
.cookie-btn-decline:hover { border-color: var(--text); color: var(--text); }
@media (max-width: 560px) {
  #cookieBanner { padding: 14px 16px; gap: 14px; }
  .cookie-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; justify-content: center; }
}

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp 0.45s ease both; }
.animate-up:nth-child(1) { animation-delay: 0.05s; }
.animate-up:nth-child(2) { animation-delay: 0.10s; }
.animate-up:nth-child(3) { animation-delay: 0.15s; }
.animate-up:nth-child(4) { animation-delay: 0.20s; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .two-col { grid-template-columns: 1fr 272px; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 0px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-main { grid-row: auto; min-height: unset; aspect-ratio: 3 / 2; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .audience-stats { grid-template-columns: 1fr; }
  .ad-packages { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .write-cards { grid-template-columns: 1fr; }
  .media-kit-cta { flex-direction: column; }
  .hero-sub-img { height: auto; }
}
@media (max-width: 640px) {
  :root { --nav-height: 56px; }
  .container { padding: 0 14px; }
  .header-inner { padding: 0 14px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-newsletter-form { min-width: unset; width: 100%; flex-direction: column; }
  .subscribe-btn span { display: none; }
  .hero-main h1 { font-size: 19px; }
  .article-hero-img { height: auto; }
}