:root {
  --primary: #dc2626;
  --background: #fffbfb;
  --text: #1f2937;
  --accent: #ef4444;
  --radius: 18px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, sans-serif; background: var(--background); color: var(--text); line-height: 1.7; font-size: 16px; }

/* ===== header (stacked: brand+search row, then a pill-nav row below) ===== */
.site-header-stacked { display: flex; flex-direction: column; padding: 1.1rem 2rem; background: rgba(128,128,128,.04); }
.site-header-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; row-gap: .5rem; }
.site-header-stacked .brand { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; font-size: 1.3rem; color: var(--primary); text-decoration: none; }
.site-header-tools { display: flex; align-items: center; gap: .45rem; }
.brand-logo { width: 30px; height: 30px; border-radius: 999px; object-fit: cover; }
.site-header-pillnav { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }
.site-header-pillnav a { color: var(--text); text-decoration: none; font-size: .85rem; font-weight: 600; padding: .4rem 1rem; border-radius: 999px; background: rgba(128,128,128,.06); }
.site-header-pillnav a:hover { background: var(--primary); color: #fff; }
.nav-toggle { display: none; width: 2rem; height: 2rem; align-items: center; justify-content: center; border: 1px solid rgba(128,128,128,.2); border-radius: 999px; padding: 0; background: rgba(128,128,128,.045); color: var(--text); font: inherit; cursor: pointer; transition: background .16s ease, border-color .16s ease, transform .16s ease; }
.nav-toggle::before { content: "☰"; font-size: 1rem; line-height: 1; }
.nav-toggle[aria-expanded="true"]::before { content: "×"; font-size: 1.25rem; }
.nav-toggle:hover { background: rgba(128,128,128,.1); border-color: rgba(128,128,128,.32); }
.nav-toggle:active { transform: scale(.94); }
.nav-toggle:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
@media (max-width: 720px) {
  .site-header-stacked { padding: .9rem 1rem; }
  .nav-toggle { display: inline-flex; }
  .site-header-pillnav { display: none; width: 100%; margin-top: .65rem; padding: .55rem; border: 1px solid rgba(128,128,128,.12); border-radius: calc(var(--radius) - 6px); background: rgba(128,128,128,.035); }
  .site-header-pillnav.is-open { display: flex; }
}
.site-search { position: relative; }
.site-search input { padding: .5rem .9rem; border: 1px solid rgba(128,128,128,.25); border-radius: 999px; background: var(--background); color: var(--text); font-size: .85rem; width: 190px; }
.site-search-results { position: absolute; right: 0; top: calc(100% + .4rem); width: 320px; max-width: 80vw; max-height: 320px; overflow-y: auto; background: var(--background); border: 1px solid rgba(128,128,128,.2); border-radius: var(--radius); box-shadow: 0 12px 28px rgba(0,0,0,.12); z-index: 10; }
.site-search-result { display: block; padding: .65rem .9rem; text-decoration: none; color: var(--text); border-bottom: 1px solid rgba(128,128,128,.12); }
.site-search-result:last-child { border-bottom: none; }
.site-search-result:hover { background: rgba(128,128,128,.06); }
.site-search-result-title { display: block; font-weight: 600; font-size: .85rem; }
.site-search-result-summary { display: block; font-size: .75rem; opacity: .7; margin-top: .15rem; }

main { max-width: 1120px; margin: 0 auto; padding: 2.25rem 2rem; }

/* ===== reader layout (article page: content + sticky sidebar rail) ===== */
.reader-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 2.25rem; align-items: start; }
.reader-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 1.5rem; }
.reader-sidebar-box.article-toc, .reader-sidebar-box.author-box, .reader-sidebar-box.related-articles { margin: 0; }
@media (max-width: 800px) {
  .reader-layout { grid-template-columns: 1fr; }
  .reader-sidebar { position: static; }
}

.breadcrumb { font-size: .82rem; opacity: .7; margin: 0 0 1.5rem; }
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 .4rem; }

/* ===== intro / hero heading ===== */
.hero { text-align: center; padding: 1rem 0 2rem; }
.hero-byline { margin: 0 0 .5rem; font-size: .85rem; font-weight: 600; opacity: .6; }
.hero h1 { font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 .6rem; color: var(--text); }
.hero p { opacity: .8; max-width: 560px; margin: 0 auto; }
.cta-banner { margin-top: 1.25rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; }
.cta-pill { display: inline-block; padding: .7rem 1.3rem; border-radius: 999px; background: var(--primary); color: #fff; font-weight: 700; font-size: .88rem; box-shadow: 0 6px 16px color-mix(in srgb, var(--primary) 35%, transparent); transition: transform .15s ease; }
.cta-pill:hover { transform: translateY(-2px); }

/* ===== featured hero (carousel / spotlight / grid) ===== */
.featured-hero { margin: 1.5rem 0; }
.hero-track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: .5rem; margin: 0 -.1rem; scrollbar-width: none; }
.hero-track::-webkit-scrollbar { display: none; }
.hero-slide { position: relative; flex: 0 0 58%; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; min-height: 220px; padding: 1.5rem; border-radius: var(--radius); background: linear-gradient(150deg, var(--primary), var(--accent)); color: #fff; text-decoration: none; text-align: center; box-shadow: 0 10px 26px rgba(0,0,0,.12); }
.hero-slide-icon { font-size: 2.4rem; }
.hero-slide-title { font-weight: 700; font-size: 1.08rem; }
.hero-slide-has-image { background-size: cover; background-position: center; }
.hero-slide-has-image .hero-slide-title { text-shadow: 0 1px 4px rgba(0,0,0,.7); }
@media (max-width: 640px) { .hero-slide { flex-basis: 82%; min-height: 190px; } }

/* carousel controls — prev/next arrows + progress dots, JS-driven (hero-carousel.js) */
.featured-hero-carousel-section { position: relative; display: flex; align-items: center; gap: .6rem; }
.hero-carousel-arrow {
  flex: none; width: 2.4rem; height: 2.4rem; border-radius: 50%; border: none; cursor: pointer;
  background: var(--primary); color: #fff; font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15); transition: transform .15s ease;
}
.hero-carousel-arrow:hover { transform: scale(1.08); }
.featured-hero-carousel-section .hero-track { flex: 1; min-width: 0; }
.hero-carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: .9rem; }
.hero-carousel-dot { width: .55rem; height: .55rem; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: rgba(128,128,128,.3); transition: background .15s ease, transform .15s ease; }
.hero-carousel-dot.is-active { background: var(--primary); transform: scale(1.25); }

.featured-hero-spotlight { display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.hero-spotlight-main { flex: 1 1 62%; min-width: 260px; display: flex; }
.hero-spotlight-main .hero-slide { flex: 1; min-height: 372px; }
.hero-spotlight-list { flex: 1 1 34%; min-width: 220px; display: flex; flex-direction: column; gap: .75rem; }
.hero-spotlight-item { min-height: 84px; padding: .9rem 1rem; flex-direction: row; justify-content: flex-start; text-align: left; }
.hero-spotlight-item .hero-slide-icon { font-size: 1.4rem; }
.hero-spotlight-item .hero-slide-title { font-size: .95rem; }

.hero-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.hero-grid-item { min-height: 150px; }

/* ===== category preview / category page ===== */
.category-preview, .category-page { margin: 2.25rem 0 0; }
.category-preview h2, .category-page h1 { font-size: 1.3rem; font-weight: 800; }
.category-preview h2 a { color: var(--text); text-decoration: none; }
.category-preview h2 a:hover { color: var(--primary); }
.category-preview-image { display: block; width: 100%; max-width: 720px; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--radius); margin: 0 auto .75rem; }

/* spotlight: first article as a big feature card, the rest as a compact list */
.spotlight-group { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 1.25rem; margin-top: 1rem; align-items: stretch; }
.spotlight-feature {
  position: relative; display: flex; flex-wrap: wrap; align-items: flex-end; min-height: 150px; padding: 1.25rem;
  border-radius: var(--radius); background: linear-gradient(150deg, var(--primary), var(--accent));
  color: #fff; text-decoration: none; box-shadow: 0 10px 26px rgba(0,0,0,.12);
}
.group-slide-has-image { background-size: cover; background-position: center; }
.spotlight-feature-title { font-weight: 800; font-size: 1.15rem; }
.spotlight-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; justify-content: center; }
.spotlight-list li { padding: .7rem .9rem; border-radius: 12px; background: rgba(128,128,128,.045); display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.spotlight-list a { color: var(--text); text-decoration: none; font-weight: 600; flex: 1; }
.spotlight-list a:hover { color: var(--primary); }
@media (max-width: 640px) { .spotlight-group { grid-template-columns: 1fr; } }

/* app download promo row — a short horizontal band of prominent app badges */
.app-download-promo .app-promo-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1rem; }
.app-promo-card { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; padding: 1rem 1.3rem; border-radius: 999px; background: rgba(128,128,128,.045); text-decoration: none; color: var(--text); box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.app-promo-card:hover { box-shadow: 0 10px 22px rgba(0,0,0,.1); }
.app-promo-icon { flex: none; width: 2.4rem; height: 2.4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; }
.app-promo-info { display: flex; flex-direction: column; }
.app-promo-title { font-weight: 700; }
.app-promo-cta { font-size: .78rem; color: var(--primary); font-weight: 600; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin: 1rem 0; }
.pagination { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.5rem 0; }
.pagination a, .pagination .is-current { min-width: 2.2rem; padding: .45rem .7rem; border: 1px solid rgba(128,128,128,.25); border-radius: .45rem; text-align: center; text-decoration: none; color: var(--text); }
.pagination .is-current { background: var(--primary); border-color: var(--primary); color: #fff; }
.card { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem; padding: 1.1rem 1.2rem; border-radius: var(--radius); background: rgba(128,128,128,.045); text-decoration: none; color: var(--text); box-shadow: 0 2px 10px rgba(0,0,0,.05); transition: box-shadow .18s ease, transform .18s ease; }
.card:hover { box-shadow: 0 10px 22px rgba(0,0,0,.1); transform: translateY(-2px); }
.card-title { flex: 1; font-weight: 700; }

.card-style-elevated { box-shadow: 0 10px 26px rgba(0,0,0,.12); }
.card-style-elevated:hover { box-shadow: 0 16px 34px rgba(0,0,0,.16); }
.card-style-minimal { background: none; border-radius: 0; border-bottom: 1px solid rgba(128,128,128,.2); box-shadow: none; padding: .8rem .4rem; }
.card-style-minimal:hover { border-bottom-color: var(--accent); box-shadow: none; transform: none; }

/* ===== app download ===== */
.app-download-section { margin: 2.25rem 0 0; }
.download-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 1rem; margin-top: 1rem; }
.download-card { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; padding: 1.1rem 1.2rem; border-radius: var(--radius); background: rgba(128,128,128,.045); text-decoration: none; color: var(--text); box-shadow: 0 2px 10px rgba(0,0,0,.05); transition: box-shadow .18s ease; }
.download-card:hover { box-shadow: 0 10px 22px rgba(0,0,0,.1); }
.download-icon { font-size: 1.5rem; flex: none; }
.download-title { flex: 1; font-weight: 700; }
.download-btn { flex: none; padding: .45rem 1rem; border-radius: 999px; background: var(--primary); color: #fff; font-size: .82rem; font-weight: 700; white-space: nowrap; }

.app-download-hero { display: flex; flex-direction: column; gap: 1.25rem; margin: 1rem 0 1.5rem; padding: 1.4rem; border-radius: var(--radius); background: rgba(128,128,128,.05); }
.app-download-header { display: flex; gap: 1.5rem; align-items: flex-start; }
.app-download-icon-slot { flex: none; }
.app-download-icon { width: 64px; height: 64px; border-radius: 16px; object-fit: cover; }
.app-download-icon-placeholder { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; background: rgba(128,128,128,.12); }
.app-download-info { flex: 1; min-width: 0; }
.app-download-name { margin: 0 0 .4rem; color: var(--primary); font-weight: 800; font-size: 1.1rem; }
/* horizontal screenshot gallery — real screenshots come back portrait (9:16) */
.app-download-gallery { display: flex; gap: .8rem; overflow-x: auto; padding-bottom: .3rem; scroll-snap-type: x mandatory; }
.app-download-gallery-shot { flex: none; width: 150px; height: 267px; border-radius: 14px; object-fit: cover; scroll-snap-align: start; box-shadow: 0 6px 16px rgba(0,0,0,.1); }
.app-download-desc { margin: 0 0 .8rem; opacity: .85; }
.app-download-hero-btn { display: inline-block; padding: .85rem 2.1rem; border-radius: 999px; background: var(--primary); color: #fff; text-decoration: none; font-weight: 800; font-size: 1.05rem; box-shadow: 0 8px 20px color-mix(in srgb, var(--primary) 35%, transparent); }
.app-download-hero-btn.is-disabled { background: rgba(128,128,128,.45); box-shadow: none; cursor: not-allowed; }
.app-download-meta { margin: .7rem 0 0; font-size: .82rem; opacity: .75; }
.app-download-age-notice { margin: .4rem 0 0; font-size: .82rem; color: #b45309; }

.app-rating { display: flex; gap: 1.5rem; align-items: center; margin: .8rem 0; flex-wrap: wrap; }
.app-rating-summary { flex: none; text-align: center; }
.app-rating-number { font-size: 2.2rem; font-weight: 800; line-height: 1; color: var(--text); }
.app-rating-stars { position: relative; display: inline-block; font-size: .95rem; line-height: 1; margin-top: .3rem; }
.app-rating-stars-bg { color: rgba(128,128,128,.3); white-space: nowrap; }
.app-rating-stars-fg { position: absolute; top: 0; left: 0; overflow: hidden; color: var(--primary); white-space: nowrap; }
.app-rating-bars { flex: 1; min-width: 160px; display: flex; flex-direction: column; gap: .25rem; }
.app-rating-bar-row { display: flex; align-items: center; gap: .5rem; font-size: .78rem; opacity: .8; }
.app-rating-bar-label { flex: none; width: .7rem; text-align: right; }
.app-rating-bar-track { flex: 1; height: 6px; border-radius: 999px; background: rgba(128,128,128,.2); overflow: hidden; }
.app-rating-bar-fill { height: 100%; border-radius: 999px; background: var(--primary); }

/* ===== tag cloud ===== */
.tag-cloud-section { margin-top: 2.5rem; }
.tag-cloud-section h2 { font-size: 1.2rem; font-weight: 800; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .6rem; }
.tag-chip { display: inline-flex; align-items: center; gap: .45rem; padding: .4rem 1rem; border-radius: 999px; background: rgba(128,128,128,.07); font-size: .85rem; color: var(--text); transition: background .15s ease, color .15s ease; }
/* true variable-size cloud — word size scales with how often the tag is used */
.tag-cloud-varsize { align-items: baseline; row-gap: .5rem; }
.tag-cloud-word { font-weight: 700; color: var(--primary); opacity: .82; line-height: 1.3; transition: opacity .15s ease, color .15s ease; }
.tag-cloud-word:hover { opacity: 1; color: var(--accent); }

/* ===== faq ===== */
.faq-section { margin-top: 2.5rem; }
.faq-section h2 { font-size: 1.2rem; font-weight: 800; }
.faq-item { border-radius: var(--radius); background: rgba(128,128,128,.04); padding: 1rem 1.2rem; margin-bottom: .6rem; }
.faq-item summary { font-weight: 700; cursor: pointer; }
.faq-item[open] summary { margin-bottom: .4rem; }
.faq-item p { margin: 0; opacity: .85; }

/* ===== about ===== */
.about-summary { margin-top: 2.5rem; }
.about-summary h2 { font-size: 1.2rem; font-weight: 800; }
.about-summary-sidebar { padding: 1.2rem 1.3rem; border-radius: var(--radius); background: rgba(128,128,128,.05); }

/* ===== article page ===== */
article h1 { font-size: 2rem; font-weight: 800; letter-spacing: -.01em; color: var(--text); }
.static-page { padding: 1.75rem 2rem; border-radius: var(--radius); background: rgba(128,128,128,.03); }
.article-meta { font-size: .85rem; opacity: .65; margin: -.5rem 0 1.2rem; }
.article-hero-image { display: block; width: 100%; max-width: 720px; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--radius); margin: 1rem auto 1.5rem; }
.article-actions { display: flex; gap: .6rem; margin: 0 0 1rem; }
.share-btn, .collect-btn { min-height: 44px; display: inline-flex; align-items: center; gap: .3rem; padding: 0 1.1rem; border-radius: 999px; border: 1px solid rgba(128,128,128,.2); background: rgba(128,128,128,.04); color: var(--text); font-size: .9rem; font-weight: 600; cursor: pointer; }
.share-btn:hover, .collect-btn:hover { border-color: var(--primary); color: var(--primary); }
.collect-btn.is-collected { border-color: var(--accent); color: var(--accent); }
.article-action-toast { position: fixed; left: 50%; bottom: 2rem; transform: translateX(-50%); padding: .6rem 1.2rem; border-radius: 999px; background: rgba(0,0,0,.8); color: #fff; font-size: .85rem; z-index: 100; }

.featured-summary { border-collapse: collapse; margin: 1rem 0; border-radius: var(--radius); overflow: hidden; }
.featured-summary td { border: 1px solid rgba(128,128,128,.15); padding: .6rem 1.1rem; }

.article-toc { margin: 0 0 1.5rem; padding: 1.1rem 1.3rem; border-radius: var(--radius); background: rgba(128,128,128,.04); }
.article-toc-title { margin: 0 0 .5rem; font-weight: 800; font-size: .92rem; }
.article-toc ul { margin: 0; padding: 0 0 0 1.1rem; }
.article-toc li { margin: .25rem 0; }
.article-toc a { color: var(--primary); text-decoration: none; }
.article-toc a:hover { text-decoration: underline; }

.article-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1.5rem 0 0; }
.article-tags .tag-chip { font-size: .78rem; padding: .3rem .8rem; }

.author-box { display: flex; align-items: flex-start; gap: .9rem; margin-top: 2.25rem; padding: 1.2rem 1.3rem; border-radius: var(--radius); background: rgba(128,128,128,.05); }
.author-avatar { width: 3.5rem; height: 3.5rem; flex: 0 0 3.5rem; border-radius: 50%; object-fit: cover; background: rgba(128,128,128,.12); }
.author-box-content { min-width: 0; }
.author-box-name { margin: 0 0 .3rem; font-weight: 800; color: var(--primary); }
.author-box-bio { margin: 0; opacity: .85; font-size: .9rem; }

.related-articles { margin-top: 2.5rem; }
.related-articles h2 { font-size: 1.2rem; font-weight: 800; }
.related-articles ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.related-articles li { padding: .85rem 1.1rem; border-radius: var(--radius); background: rgba(128,128,128,.04); }
.related-articles a { color: var(--text); text-decoration: none; font-weight: 600; }
.related-articles a:hover { color: var(--primary); }

/* ===== comments ===== */
.comments { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(128,128,128,.15); }
.comments h2 { font-size: 1.2rem; font-weight: 800; }
.comment, .comment-reply { display: flex; align-items: flex-start; gap: .7rem; }
.comment { padding: 1rem 0; border-bottom: 1px solid rgba(128,128,128,.12); flex-wrap: wrap; }
.comment-avatar { width: 2.35rem; height: 2.35rem; flex: 0 0 2.35rem; border-radius: 50%; object-fit: cover; background: rgba(128,128,128,.12); }
.comment-body { flex: 1; min-width: 0; }
.comment-meta { font-size: .8rem; opacity: .7; margin-bottom: .3rem; }
.comment-name { font-weight: 700; margin-right: .6rem; }
.comment-text { margin: 0; }
.comment-replies { flex: 1 0 calc(100% - 3.05rem); margin: .6rem 0 0 3.05rem; border-left: 2px solid rgba(128,128,128,.15); padding-left: 1rem; }
.comment-reply { padding: .5rem 0; }
.comment-reply.is-author .comment-name { color: var(--primary); }
.comment-compose { margin-top: 1.5rem; }
.comment-compose form { display: flex; align-items: flex-start; gap: .7rem; }
.comment-compose-fields { flex: 1; min-width: 0; display: grid; gap: .7rem; }
.comment-compose label { display: grid; gap: .3rem; font-size: .84rem; font-weight: 700; }
.comment-compose input, .comment-compose textarea { width: 100%; box-sizing: border-box; padding: .65rem .75rem; border: 1px solid rgba(128,128,128,.25); border-radius: .5rem; background: rgba(128,128,128,.035); color: var(--text); font: inherit; }
.comment-compose textarea { resize: vertical; }
.comment-compose-actions { display: flex; align-items: center; justify-content: space-between; gap: .8rem; flex-wrap: wrap; }
.comment-compose-actions p { margin: 0; font-size: .8rem; opacity: .68; }
.comment-compose-actions button { border: 0; border-radius: .5rem; padding: .6rem 1rem; background: var(--primary); color: #fff; font: inherit; font-weight: 700; cursor: pointer; }

/* ===== footer ===== */
.site-footer { text-align: center; padding: 2.25rem; opacity: .7; font-size: .875rem; }
.footer-nav { margin-bottom: .75rem; }
.footer-nav a { color: inherit; text-decoration: none; margin: 0 .6rem; }
.footer-nav a:hover { text-decoration: underline; }

/* ===== visual_style variants ===== */
.visual-style-clean .hero h1 { font-weight: 800; }

.visual-style-editorial .site-header { border-bottom: 2px solid var(--text); background: none; }
.visual-style-editorial .brand { font-weight: 900; }
.visual-style-editorial .hero h1 { font-weight: 900; letter-spacing: -.02em; }
.visual-style-editorial .cta-pill, .visual-style-editorial .download-btn, .visual-style-editorial .app-download-hero-btn { border-radius: 8px; }

.visual-style-vibrant .hero h1 { background: linear-gradient(135deg, var(--text), var(--primary)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.visual-style-vibrant .card:hover { box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 25%, transparent); }
.visual-style-vibrant .cta-pill { background: linear-gradient(135deg, var(--primary), var(--accent)); }

.card-date, .download-date, .app-promo-date, .spotlight-feature-date, .spotlight-list-date, .related-date { font-size: .78rem; opacity: .6; }
.card-date, .download-date, .app-promo-date, .spotlight-feature-date, .spotlight-list-date { flex: 1 0 100%; order: 99; }
.spotlight-feature-date { opacity: .8; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.hero-slide-date { position: absolute; bottom: .6rem; left: .8rem; font-size: .78rem; opacity: .6; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.6); }
.related-date { display: block; margin-top: .2rem; }

:root {
  --primary: #dc2626;
  --bg: #fffbfb;
  --text: #1f2937;
  --accent: #ef4444;
}
.card {
  background: var(--bg);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.08);
}
.button {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  transition: transform 0.2s;
}
.button:hover { transform: translateY(-2px); }