/* Steam Archive Pro Theme */
:root {
  --sat-bg: #f2f2f7;
  --sat-card: #fff;
  --sat-accent: #0071e3;
  --sat-accent2: #5856d6;
  --sat-green: #34c759;
  --sat-text: #1c1c1e;
  --sat-muted: #6e6e73;
  --sat-border: rgba(0,0,0,.07);
  --sat-r: 16px;
  --sat-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --sat-max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: var(--sat-font); background: var(--sat-bg); color: var(--sat-text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--sat-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--sat-max); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid var(--sat-border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 20px; }
.site-title { font-size: 20px; font-weight: 700; color: var(--sat-text); text-decoration: none; }
.site-tagline { font-size: 12px; color: var(--sat-muted); margin: 2px 0 0; }
.main-nav .menu { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.main-nav a { color: var(--sat-text); font-weight: 500; font-size: 14px; text-decoration: none; }
.main-nav a:hover { color: var(--sat-accent); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  color: #fff;
  padding: 58px 0 96px;
  background:
    radial-gradient(ellipse 70% 55% at 20% 90%, rgba(0,113,227,.24) 0%, transparent 58%),
    radial-gradient(ellipse 62% 48% at 86% 12%, rgba(88,86,214,.2) 0%, transparent 55%),
    linear-gradient(160deg, #06060f 0%, #0c0e1e 48%, #090e22 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 118px;
  background: linear-gradient(to bottom, transparent, var(--sat-bg));
  pointer-events: none;
  z-index: 4;
}
.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 220px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  margin-bottom: 15px;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sat-green);
  box-shadow: 0 0 8px var(--sat-green);
}
.hero-text {
  flex: 0 0 min(420px, 44%);
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.8px;
  margin: 0 0 12px;
  line-height: 1.04;
  color: #fff;
}
.hero p {
  color: rgba(255,255,255,.52);
  max-width: 410px;
  margin: 0 0 26px;
  font-size: 14px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(76px, 1fr));
  gap: 8px;
  max-width: 430px;
}
.hero-stat {
  min-height: 60px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;
  padding: 10px 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.hero-stat strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 6px;
  color: #fff;
}
.hero-stat span {
  display: block;
  font-size: 8px;
  opacity: .52;
  text-transform: uppercase;
  letter-spacing: .8px;
  white-space: nowrap;
}
.hero-marquee {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 92%, transparent 100%);
}
.hero-marquee-row {
  overflow: hidden;
}
.hero-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: satHeroMarqueeLeft 54s linear infinite;
  will-change: transform;
}
.hero-marquee-row.is-reverse .hero-marquee-track {
  animation-name: satHeroMarqueeRight;
  animation-duration: 62s;
}
.hero-poster {
  flex: 0 0 auto;
  width: 190px;
  height: 88px;
  border-radius: 9px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.5);
  transform: translateZ(0);
}
.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  filter: saturate(1.05) brightness(.88);
}
@keyframes satHeroMarqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes satHeroMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Controls */
.archive-controls { background: rgba(242,242,247,.97); border-bottom: 1px solid var(--sat-border); padding: 12px 0; position: sticky; top: 57px; z-index: 90; backdrop-filter: blur(8px); }
.controls-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
#game-search {
  flex: 1; min-width: 200px; max-width: 400px; height: 42px; padding: 0 16px;
  border: 1.5px solid rgba(0,0,0,.09); border-radius: 12px; font-size: 14px; outline: none;
}
#game-search:focus { border-color: var(--sat-accent); box-shadow: 0 0 0 3px rgba(0,113,227,.1); }
.filter-tabs { display: flex; gap: 4px; background: rgba(116,116,128,.12); border-radius: 10px; padding: 3px; }
.filter-tab {
  height: 34px; padding: 0 14px; border: none; border-radius: 8px; background: transparent;
  font-size: 13px; font-weight: 500; cursor: pointer; color: var(--sat-muted);
}
.filter-tab.active { background: #fff; color: var(--sat-text); font-weight: 600; box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.genre-filter,
.price-filter {
  height: 38px;
  border: 1.5px solid rgba(0,0,0,.09);
  border-radius: 10px;
  padding: 0 10px;
  font-size: 13px;
  background: #fff;
  color: var(--sat-text);
}
.result-count { margin-left: auto; font-size: 13px; color: var(--sat-muted); font-weight: 600; }
.badge-sale { background: #ff3b30; color: #fff; }

/* Bu ay çıkanlar */
.month-releases { padding: 28px 0 8px; }
.month-releases-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.month-releases-head h2 { margin: 0 0 4px; font-size: 1.35rem; }
.month-releases-head p { margin: 0; color: var(--sat-muted); font-size: 14px; }
.month-releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.month-release-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--sat-border);
  color: inherit;
  text-decoration: none;
}
.month-release-card:hover { text-decoration: none; border-color: var(--sat-accent); }
.month-release-card img {
  width: 88px;
  height: 41px;
  object-fit: cover;
  border-radius: 8px;
  background: #ddd;
}
.month-release-card strong {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 2px;
}
.month-release-card small { color: var(--sat-muted); font-size: 12px; }

/* İndirim / ücretsiz sayfa */
.deals-page { padding: 28px 0 60px; }
.deals-header { margin-bottom: 22px; }
.deals-header h1 { margin: 0 0 8px; }
.deals-header p { margin: 0 0 14px; color: var(--sat-muted); }
.deals-tabs { display: inline-flex; gap: 6px; background: rgba(116,116,128,.12); border-radius: 10px; padding: 3px; }
.deals-tab {
  height: 34px; padding: 0 14px; border-radius: 8px; display: inline-flex; align-items: center;
  color: var(--sat-muted); text-decoration: none; font-size: 13px; font-weight: 500;
}
.deals-tab:hover { text-decoration: none; }
.deals-tab.is-active { background: #fff; color: var(--sat-text); font-weight: 600; box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.deals-empty { color: var(--sat-muted); padding: 24px 0; }

/* Benzer oyunlar + affiliate */
.related-games { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--sat-border); }
.related-games h2 { margin: 0 0 6px; }
.related-grid { margin-top: 14px; }
.affiliate-links { display: grid; gap: 6px; margin: 10px 0; }
.affiliate-label { font-size: 12px; color: var(--sat-muted); font-weight: 600; }

/* Grid */
.games-section { padding: 32px 0 60px; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.no-games { grid-column: 1/-1; text-align: center; padding: 40px; color: var(--sat-muted); }

/* Calendar */
.calendar-page { padding: 28px 0 70px; }
.calendar-toolbar {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: start;
  gap: 12px;
  background: #ececf1;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 18px 14px 16px;
  margin-bottom: 18px;
}
.calendar-toolbar-center { min-width: 0; text-align: center; }
.calendar-month-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -.8px;
  color: #4b3f8f;
}
.calendar-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  color: #4b3f8f;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.calendar-arrow:hover { text-decoration: none; background: #fff; }
.calendar-month-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.calendar-month-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.72);
  color: #4b3f8f;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.calendar-month-tab:hover { text-decoration: none; background: #fff; }
.calendar-month-tab.is-active {
  background: rgba(88,86,214,.12);
  border-color: #5856d6;
  color: #5856d6;
  box-shadow: inset 0 0 0 1px rgba(88,86,214,.08);
}
.calendar-panel {
  background: #fff;
  border: 1px solid var(--sat-border);
  border-radius: 20px;
  padding: 24px 22px 28px;
  box-shadow: 0 8px 28px rgba(0,0,0,.04);
}
.calendar-panel > h2 {
  margin: 0 0 22px;
  font-size: 24px;
  letter-spacing: -.3px;
}
.calendar-day-group { margin-bottom: 26px; }
.calendar-day-group:last-child { margin-bottom: 0; }
.calendar-day-group h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sat-text);
}
.calendar-row-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.calendar-row-card {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 10px;
  border: 1px solid var(--sat-border);
  border-radius: 16px;
  background: #fff;
  color: var(--sat-text);
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.calendar-row-card:hover {
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  transform: translateY(-1px);
}
.calendar-row-card-media {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #1b2838, #2a3f5a);
}
.calendar-row-card-media img {
  width: 100%;
  aspect-ratio: 460 / 215;
  object-fit: cover;
}
.calendar-row-card-body { min-width: 0; }
.calendar-row-card-body strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 6px;
}
.calendar-row-card-body small {
  display: block;
  color: var(--sat-muted);
  font-size: 13px;
  line-height: 1.35;
}
.calendar-empty {
  margin: 0;
  color: var(--sat-muted);
  padding: 12px 0 4px;
}

/* Game Card */
.game-card {
  background: var(--sat-card); border: 1px solid var(--sat-border); border-radius: var(--sat-r);
  overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.05); transition: transform .2s, box-shadow .2s;
}
.game-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.game-card.hidden { display: none; }
.card-poster-link { display: block; text-decoration: none; }
.card-poster { position: relative; aspect-ratio: 460/215; background: linear-gradient(135deg, #1b2838, #2a3f5a); overflow: hidden; }
.card-poster img { width: 100%; height: 100%; object-fit: cover; }
.poster-fallback { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 32px; font-weight: 800; color: #66c0f4; }
.card-badges { position: absolute; top: 8px; left: 8px; display: flex; gap: 4px; flex-wrap: wrap; }
.badge { font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 20px; color: #fff; }
.badge-free { background: var(--sat-green); }
.badge-soon { background: #ff9500; }
.card-body { padding: 14px 16px 16px; }
.card-title { font-size: 16px; font-weight: 700; margin: 0 0 6px; line-height: 1.3; }
.card-title a { color: var(--sat-text); text-decoration: none; }
.card-title a:hover { color: var(--sat-accent); }
.card-excerpt { font-size: 13px; color: var(--sat-muted); margin: 0 0 10px; line-height: 1.5; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 11px; color: var(--sat-muted); margin-bottom: 8px; }
.meta-price-wrap { display: flex; flex-direction: column; gap: 2px; }
.meta-price { font-weight: 700; color: var(--sat-green); }
.meta-price-tl { font-weight: 600; color: var(--sat-accent); font-size: 12px; }
.price-block { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.price-primary { font-size: 16px; color: var(--sat-green); }
.price-tl { font-size: 14px; color: var(--sat-accent); font-weight: 600; }
.exchange-note { font-size: 11px; color: var(--sat-muted); padding: 0 0 10px; text-align: right; border-bottom: 1px solid var(--sat-border); margin-bottom: 4px; }
.info-price-row { align-items: flex-start; }
.card-genres { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.genre-tag { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px; background: rgba(42,71,94,.1); color: #2a475e; text-decoration: none; display: inline-block; }
.genre-tag:hover { background: rgba(42,71,94,.18); text-decoration: none; color: var(--sat-accent); }
.sidebar-info a { color: var(--sat-accent); text-decoration: none; }
.sidebar-info a:hover { text-decoration: underline; }
.taxonomy-hero {
  background: linear-gradient(160deg, #070812 0%, #12162a 100%);
  color: #fff;
  padding: 42px 0 48px;
}
.taxonomy-hero-inner { max-width: 760px; }
.taxonomy-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 12px;
}
.taxonomy-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.6px;
}
.taxonomy-hero p { margin: 0; color: rgba(255,255,255,.58); }
.card-actions { display: flex; gap: 6px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 14px; border-radius: 10px; border: none;
  font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; font-family: inherit;
  transition: opacity .15s;
}
.btn:hover { opacity: .88; text-decoration: none; }
.btn-primary { background: var(--sat-accent); color: #fff; }
.btn-secondary { background: rgba(120,120,128,.15); color: var(--sat-text); }
.btn-ghost { background: transparent; border: 1px solid var(--sat-border); color: var(--sat-muted); }
.btn-block { width: 100%; margin-bottom: 8px; }

/* Single Game */
.single-game { padding: 32px 0 60px; }
.single-layout { display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: start; }
.single-sidebar { align-self: start; }
.sidebar-poster { border-radius: var(--sat-r); overflow: hidden; margin-bottom: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.sidebar-info { background: #fff; border: 1px solid var(--sat-border); border-radius: var(--sat-r); padding: 16px; margin-bottom: 16px; }
.info-row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--sat-border); font-size: 13px; }
.info-row:last-child { border-bottom: none; }
.info-row span { color: var(--sat-muted); }
.info-row strong { text-align: right; }
.single-header h1 { font-size: clamp(24px, 4vw, 36px); margin: 0 0 8px; letter-spacing: -.5px; }
.single-excerpt { font-size: 17px; color: var(--sat-muted); margin: 0 0 24px; }
.entry-content { background: #fff; border: 1px solid var(--sat-border); border-radius: var(--sat-r); padding: 28px 32px; margin-bottom: 28px; }
.entry-content h2, .entry-content h3 { margin-top: 1.5em; }
.entry-content strong { font-weight: 700; color: var(--sat-text); }
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px;
  font-size: 14px;
}
.entry-content th,
.entry-content td {
  border: 1px solid var(--sat-border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.entry-content thead th,
.entry-content tbody th {
  background: rgba(116,116,128,.08);
  font-weight: 600;
  width: 38%;
}
.entry-content pre {
  background: #f2f2f7;
  border: 1px solid var(--sat-border);
  border-radius: 10px;
  padding: 12px 14px;
  overflow-x: auto;
  font-size: 13px;
}
.entry-content code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.entry-content ol, .entry-content ul { padding-left: 1.25em; margin: 0.75em 0 1.1em; }
.entry-content li { margin-bottom: 0.35em; }
.screenshots-gallery h2, .achievements-section h2, .requirements h2, .languages h2 { font-size: 20px; margin-bottom: 16px; }
.screenshots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; margin-bottom: 28px; }
.screenshots-grid img { border-radius: 8px; width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .2s; }
.screenshots-grid a:hover img { transform: scale(1.03); }
.section-note { color: var(--sat-muted); margin: 0 0 16px; }
.achievements-section { margin-bottom: 28px; }
.achievements-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.achievement-card {
  display: flex; gap: 10px; align-items: flex-start;
  background: #fff; border: 1px solid var(--sat-border); border-radius: var(--sat-r); padding: 12px;
}
.achievement-card.is-hidden { display: none; }
.achievement-card img { width: 48px; height: 48px; border-radius: 8px; flex: 0 0 auto; }
.achievement-card strong { display: block; font-size: 14px; line-height: 1.25; margin-bottom: 4px; }
.achievement-percent { display: inline-block; color: var(--sat-accent); font-size: 11px; font-weight: 700; margin-bottom: 4px; }
.achievement-card p { color: var(--sat-muted); font-size: 12px; margin: 0; line-height: 1.4; }
.achievements-toggle { margin-top: 16px; }
.req-block { background: #fff; border: 1px solid var(--sat-border); border-radius: var(--sat-r); padding: 16px; margin-bottom: 12px; font-size: 13px; }
.sat-ad { margin: 20px 0; min-height: 90px; }

/* Comments */
.game-comments-wrap { padding: 0 0 60px; }
.sat-comments {
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--sat-border);
  border-radius: var(--sat-r);
  padding: 28px 28px 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
}
.sat-comments-title {
  margin: 0 0 20px;
  font-size: 22px;
  letter-spacing: -.3px;
}
.sat-comment-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.sat-comment-item { margin: 0 0 16px; }
.sat-comment-item .children {
  list-style: none;
  margin: 14px 0 0 24px;
  padding: 0;
}
.sat-comment-body {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--sat-border);
  border-radius: 14px;
  background: #fafafc;
}
.sat-comment-avatar img { border-radius: 50%; }
.sat-comment-main { flex: 1; min-width: 0; }
.sat-comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.sat-comment-meta time {
  color: var(--sat-muted);
  font-size: 12px;
}
.sat-comment-author { font-size: 15px; }
.sat-comment-content {
  font-size: 14px;
  line-height: 1.65;
  color: var(--sat-text);
}
.sat-comment-content p { margin: 0 0 8px; }
.sat-comment-content p:last-child { margin-bottom: 0; }
.sat-comment-pending {
  margin: 0 0 8px;
  color: #b45309;
  font-size: 12px;
  font-weight: 600;
}
.sat-comment-actions { margin-top: 10px; }
.btn-sm {
  height: 30px;
  padding: 0 12px;
  font-size: 12px;
  border-radius: 8px;
}
.sat-comment-form .comment-notes,
.sat-comment-form .comment-form-author,
.sat-comment-form .comment-form-email,
.sat-comment-form .comment-form-comment,
.sat-comment-form .comment-form-captcha {
  margin-bottom: 14px;
}
.sat-captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sat-captcha-question {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(88,86,214,.1);
  color: #4b3f8f;
  font-weight: 700;
}
.comment-form-captcha input[type="number"] {
  width: 120px;
  flex: 0 0 auto;
}
.sat-comment-alert {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(179,45,46,.18);
  background: rgba(179,45,46,.08);
  color: #9f1d1d;
  font-size: 14px;
  font-weight: 600;
}
.sat-comment-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
}
.sat-comment-form input[type="text"],
.sat-comment-form input[type="email"],
.sat-comment-form input[type="url"],
.sat-comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,.09);
  border-radius: 12px;
  font: inherit;
  background: #fff;
}
.sat-comment-form textarea { min-height: 120px; resize: vertical; }
.sat-comment-form input:focus,
.sat-comment-form textarea:focus {
  outline: none;
  border-color: var(--sat-accent);
  box-shadow: 0 0 0 3px rgba(0,113,227,.1);
}
.sat-comment-form .comment-form-author,
.sat-comment-form .comment-form-email {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.sat-comment-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.sat-comments-closed {
  margin: 0 0 16px;
  color: var(--sat-muted);
}
.comment-respond { margin-top: 8px; }
.comment-reply-title {
  margin: 0 0 16px;
  font-size: 20px;
}
#cancel-comment-reply-link {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 500;
}

/* About */
.about-section { padding: 48px 0 64px; }
.about-box { background: #fff; border: 1px solid var(--sat-border); border-radius: var(--sat-r); padding: 32px; }
.about-box h2 { margin-top: 0; }

/* Footer */
.site-footer { background: #111; color: rgba(255,255,255,.7); margin-top: 40px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; padding: 40px 20px; }
.footer-about h3 { color: #fff; margin-top: 0; }
.footer-nav .menu { list-style: none; padding: 0; margin: 0; }
.footer-nav a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; font-size: 13px; text-align: center; }

/* Toast */
.sat-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: rgba(28,28,30,.92); color: #fff; padding: 10px 18px; border-radius: 10px;
  font-size: 13px; font-weight: 600; opacity: 0; pointer-events: none; transition: .25s; z-index: 9999;
}
.sat-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 800px) {
  .hero { padding: 40px 0 78px; }
  .hero-inner { flex-direction: column; align-items: flex-start; gap: 26px; }
  .hero-text { flex: 0 0 auto; width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 100%; }
  .hero-marquee { width: 100%; max-height: 190px; }
  .hero-poster { width: 156px; height: 72px; }
  .single-layout { grid-template-columns: 1fr; }
  .calendar-toolbar { grid-template-columns: 36px 1fr 36px; padding: 14px 10px 12px; }
  .calendar-arrow { width: 34px; height: 34px; font-size: 22px; }
  .calendar-month-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; }
  .calendar-row-cards { grid-template-columns: 1fr; }
  .calendar-row-card { grid-template-columns: 118px 1fr; }
  .sat-comment-form .comment-form-author,
  .sat-comment-form .comment-form-email { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1100px) and (min-width: 801px) {
  .calendar-row-cards { grid-template-columns: 1fr; }
}

@media (min-width: 801px) {
  .single-sidebar {
    position: sticky;
    top: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track {
    animation: none;
  }
}
