/* ── Reset & Custom Properties ──────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #121417;
  --bg-card:    #1a1c21;
  --bg-card-hover: #23262c;
  --bg-nav:     #0e1013;
  --accent:     #06b6d4;
  --accent-light: #22d3ee;
  --accent-glow: rgba(6, 182, 212, 0.25);
  --text:       #eceff4;
  --text-muted: #8b929e;
  --border:     #282c32;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
  --font:       'Segoe UI', system-ui, -apple-system, sans-serif;
  --nav-h:      60px;
  --max-w:      1280px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ── Layout helpers ──────────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

main { flex: 1; }

.section { padding: 40px 0; }
.section__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.section__title { font-size: 1.4rem; font-weight: 700; }
.section__link { color: var(--accent-light); font-size: 0.9rem; }
.section__link:hover { text-decoration: underline; }

/* ── Navigation ──────────────────────────────────────────────────────────────── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__logo {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.nav__search {
  flex: 1;
  max-width: 380px;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0 16px;
  gap: 8px;
}

.nav__search svg { opacity: 0.5; flex-shrink: 0; }

#search-input, #search-input-nav {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.9rem;
  padding: 8px 0;
}

#search-input::placeholder { color: var(--text-muted); }

.nav__links { display: flex; gap: 4px; }

.nav__link {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
  background: var(--bg-card);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── Ad banners ──────────────────────────────────────────────────────────────── */

.ad-banner {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ad-banner--leaderboard { width: 100%; height: 90px; margin: 16px 0; }
.ad-banner--rectangle   { width: 300px; height: 250px; flex-shrink: 0; }
.ad-banner--skyscraper  { width: 160px; min-height: 600px; }

/* ── Hero section ────────────────────────────────────────────────────────────── */

.hero {
  background: linear-gradient(180deg, #0c1a22 0%, var(--bg) 100%);
  padding: 48px 0 32px;
  text-align: center;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

.hero__search {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 8px 6px 20px;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
  box-shadow: 0 0 0 0 var(--accent-glow);
  transition: box-shadow 0.3s;
}

.hero__search:focus-within {
  box-shadow: 0 0 0 3px var(--accent-glow);
  border-color: var(--accent);
}

.hero__search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 1rem;
}

.hero__search input::placeholder { color: var(--text-muted); }

.hero__search-btn {
  background: var(--accent);
  color: #fff;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.1s;
}

.hero__search-btn:hover { background: var(--accent-light); }
.hero__search-btn:active { transform: scale(0.97); }

/* ── Category filter ─────────────────────────────────────────────────────────── */

.categories { padding: 24px 0 8px; }

#category-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

#category-list::-webkit-scrollbar { display: none; }

.category-btn {
  padding: 7px 18px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.category-btn:hover { color: var(--text); border-color: var(--accent); }

.category-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

/* ── Games grid ──────────────────────────────────────────────────────────────── */

.games-section { padding: 8px 0 48px; }

.grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.grid-header__title { font-size: 1.2rem; font-weight: 700; }
#result-count { font-size: 0.875rem; color: var(--text-muted); }

#games-grid,
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

/* ── Game card ───────────────────────────────────────────────────────────────── */

.game-card {
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 0 1px var(--accent);
  border-color: var(--accent);
}

.game-card__link { display: block; }

.game-card__thumb-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.game-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.game-card:hover .game-card__thumb { transform: scale(1.05); }

.game-card__play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card:hover .game-card__play-icon { opacity: 1; }

.game-card__info {
  padding: 10px 12px 12px;
}

.game-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.game-card__category {
  font-size: 0.75rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 60px 0;
  font-size: 1.1rem;
}

/* ── Game page ───────────────────────────────────────────────────────────────── */

.game-page { padding: 24px 0 48px; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a:hover { color: var(--text); }
.breadcrumb__sep { opacity: 0.4; }

.game-page__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

.game-page__main {}

.game-player {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.game-player__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
}

#game-title-bar { font-weight: 700; font-size: 1rem; }

.game-player__controls { display: flex; gap: 8px; }

.ctrl-btn {
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}

.ctrl-btn:hover { color: var(--text); border-color: var(--accent); }

#game-wrapper {
  width: 100%;
  height: min(620px, 75vh);
}

#game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-info { margin-top: 20px; }

#game-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.game-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.game-meta__category {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#game-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

#game-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  padding: 4px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* sidebar */
.game-page__sidebar {}

.sidebar-section { margin-bottom: 28px; }
.sidebar-section__title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

#related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */

.footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  padding: 32px 0 20px;
  margin-top: auto;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer__brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.footer__brand-desc { font-size: 0.85rem; color: var(--text-muted); }

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer__links { display: flex; flex-direction: column; gap: 8px; }

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}

.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a:hover { color: var(--text); }

/* ── Responsive ──────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .game-page__layout { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .ad-banner--rectangle { display: none; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    padding: 12px;
    gap: 4px;
  }
  .hero { padding: 32px 0 24px; }
  #games-grid, .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
  .footer__inner { grid-template-columns: 1fr; gap: 20px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .ad-banner--leaderboard { height: 60px; }
}

/* ── Cookie Consent Banner ─────────────────────────────────────────────────── */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-banner__btn--accept {
  background: var(--accent);
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: var(--accent-light);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.cookie-banner__btn--decline:hover {
  background: var(--bg-card);
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Content pages (about, privacy, terms, contact) ─────────────────────────── */

.content-page { padding: 48px 0 64px; }

.container--narrow { max-width: 800px; }

.content-page__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.content-page__updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.content-page__body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}

.content-page__body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: #fff;
}

.content-page__body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #fff;
}

.content-page__body p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.content-page__body a {
  color: var(--accent-light);
  text-decoration: underline;
}

.content-page__body a:hover {
  color: #fff;
}

.content-page__list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-page__list li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

.content-page__list li strong {
  color: var(--text);
}

/* ── Contact page ─────────────────────────────────────────────────────────────── */

.contact-methods { margin-bottom: 32px; }

.contact-method {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.contact-method h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.contact-method p { margin-bottom: 4px; }

.contact-email {
  color: var(--accent-light);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form {
  margin-bottom: 40px;
}

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-form__input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form__input::placeholder { color: var(--text-muted); }

.contact-form__select {
  appearance: auto;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 12px 32px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.contact-form__submit:hover { background: var(--accent-light); }
.contact-form__submit:active { transform: scale(0.97); }

.contact-success {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.contact-success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 8px;
}

/* ── FAQ section ──────────────────────────────────────────────────────────────── */

.faq { margin-top: 16px; }

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}

.faq__item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 8px;
}

.faq__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── Homepage about section ───────────────────────────────────────────────────── */

.homepage-about {
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.homepage-about__content {
  max-width: 800px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.homepage-about__content p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.homepage-about__content a {
  color: var(--accent-light);
  text-decoration: underline;
}

/* ── Game description sections ────────────────────────────────────────────────── */

.game-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.game-how-to-play {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
}

.game-how-to-play h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.game-how-to-play p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.game-how-to-play p:last-child { margin-bottom: 0; }

/* ── Blog styles ──────────────────────────────────────────────────────────────── */

.blog-hero {
  background: linear-gradient(180deg, #0c1a22 0%, var(--bg) 100%);
  padding: 48px 0 32px;
  text-align: center;
}

.blog-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.blog-hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 40px 0 64px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 0 1px var(--accent);
  border-color: var(--accent);
}

.blog-card__link { display: block; }

.blog-card__body { padding: 20px 22px 24px; }

.blog-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Blog article page */
.blog-article { padding: 40px 0 64px; }

.blog-article__header {
  margin-bottom: 32px;
}

.blog-article__category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-light);
  margin-bottom: 10px;
}

.blog-article__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}

.blog-article__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-article__body {
  font-size: 0.95rem;
  line-height: 1.8;
}

.blog-article__body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-top: 36px;
  margin-bottom: 14px;
}

.blog-article__body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-top: 28px;
  margin-bottom: 10px;
}

.blog-article__body p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-article__body a {
  color: var(--accent-light);
  text-decoration: underline;
}

.blog-article__body ul, .blog-article__body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.blog-article__body li {
  color: var(--text-muted);
  margin-bottom: 6px;
}

.blog-article__body li strong {
  color: var(--text);
}

.blog-article__body blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  font-style: italic;
}

.blog-article__cta {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 40px;
  text-align: center;
}

.blog-article__cta h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.blog-article__cta p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-article__cta a {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}

.blog-article__cta a:hover { background: var(--accent-light); }

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}
