:root {
  color-scheme: light;
  --bg: #fffaf6;
  --surface: #ffffff;
  --surface-soft: #fff1ee;
  --surface-muted: #f7f3f4;
  --text: #231f24;
  --muted: #716970;
  --line: #eadfe1;
  --brand: #ff6475;
  --brand-dark: #d94558;
  --yellow: #ffd75e;
  --blue: #4677ef;
  --green: #238a52;
  --danger: #b3261e;
  --shadow: 0 24px 70px rgba(78, 45, 55, .13);
  --shadow-sm: 0 12px 34px rgba(78, 45, 55, .08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .guide-grid article { text-align: right; }

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #141217;
  --surface: #211d25;
  --surface-soft: #2a2026;
  --surface-muted: #29252d;
  --text: #fff8fa;
  --muted: #bdb3bd;
  --line: #403944;
  --brand: #ff7d8b;
  --brand-dark: #ff9aa5;
  --yellow: #f7ce55;
  --blue: #7195ff;
  --green: #66d596;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
  --shadow-sm: 0 12px 34px rgba(0, 0, 0, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 6%, rgba(255,100,117,.13), transparent 34rem),
    radial-gradient(circle at 91% 9%, rgba(255,215,94,.17), transparent 30rem),
    var(--bg);
  line-height: 1.6;
  transition: color .2s ease, background-color .2s ease;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(255,100,117,.32); outline-offset: 2px; }
[hidden] { display: none !important; }

.site-header {
  width: min(1240px, calc(100% - 28px));
  min-height: 76px;
  margin: 14px auto 0;
  padding: 10px 14px;
  position: sticky;
  top: 10px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius: 24px;
  background: color-mix(in srgb, var(--bg) 87%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--shadow-sm);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 950; letter-spacing: -.03em; white-space: nowrap; }
.brand img { border-radius: 50%; box-shadow: 0 7px 20px rgba(255,100,117,.22); }
nav { margin-left: auto; display: flex; align-items: center; gap: 18px; }
nav a { color: var(--muted); font-size: .94rem; font-weight: 800; text-decoration: none; }
nav a:hover { color: var(--text); }
.visitor-pill { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-soft); color: var(--brand-dark); font-size: .82rem; font-weight: 900; white-space: nowrap; }
.header-tools { display: flex; align-items: center; gap: 8px; }
.language-control { height: 42px; padding: 0 10px; display: flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.language-control select { width: 108px; padding: 0; border: 0; background: transparent; color: var(--text); outline: 0; font-size: .85rem; font-weight: 800; }
.icon-button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text); cursor: pointer; font-size: 1.15rem; }

main, footer { width: min(1240px, calc(100% - 28px)); margin-inline: auto; }
.hero { min-height: 660px; padding: 96px 16px 64px; display: grid; grid-template-columns: 1.16fr .84fr; align-items: center; gap: 76px; }
.eyebrow { margin: 0 0 11px; color: var(--brand-dark); font-size: .76rem; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 780px; font-size: clamp(3.5rem, 7.4vw, 7.2rem); line-height: .92; letter-spacing: -.075em; }
.hero h1 > span { color: var(--text); }
.hero h1 em { color: var(--brand); font-style: normal; font-size: .68em; letter-spacing: -.055em; }
.hero-description { max-width: 700px; margin: 28px 0 0; color: var(--muted); font-size: 1.08rem; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .78rem; font-weight: 800; }
.trust-row span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; background: color-mix(in srgb, var(--surface) 75%, transparent); }
.button { min-height: 46px; padding: 11px 17px; border: 1px solid transparent; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; color: inherit; font-weight: 900; text-decoration: none; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease; }
.button:not(:disabled):hover { transform: translateY(-2px); }
.button:disabled { opacity: .46; cursor: not-allowed; }
.button.primary { background: linear-gradient(135deg, var(--brand), #ff8a65); color: white; box-shadow: 0 13px 30px rgba(255,100,117,.27); }
.button.secondary { border-color: var(--line); background: var(--surface); color: var(--text); }
.button.danger { background: var(--danger); color: white; }
.button.full { width: 100%; }

.channel-card { position: relative; overflow: hidden; padding: 42px 30px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(150deg, var(--surface), var(--surface-soft)); box-shadow: var(--shadow); text-align: center; }
.channel-glow { position: absolute; inset: -50% 12% auto; height: 300px; border-radius: 50%; background: rgba(255,215,94,.35); filter: blur(42px); pointer-events: none; }
.channel-icon { position: relative; width: min(180px,45vw); height: auto; border-radius: 50%; filter: drop-shadow(0 16px 24px rgba(255,100,117,.17)); }
.channel-label, .video-kicker, .mini-label, .rail-label { margin: 16px 0 3px; color: var(--brand-dark); font-size: .7rem; font-weight: 950; letter-spacing: .15em; text-transform: uppercase; }
.channel-card h2 { position: relative; margin: 0; font-size: 2.2rem; letter-spacing: -.045em; }
.channel-card > p:not(.channel-label) { position: relative; margin: 6px 0 18px; color: var(--muted); }
.channel-link { position: relative; color: var(--brand-dark); font-weight: 900; text-underline-offset: 4px; }

.feature-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: color-mix(in srgb, var(--surface) 78%, transparent); box-shadow: var(--shadow-sm); }
.feature-strip article { min-height: 112px; padding: 18px; border-radius: 15px; background: var(--surface-soft); }
.feature-strip strong, .feature-strip span { display: block; }
.feature-strip strong { margin-top: 8px; }
.feature-strip > article > span:last-child { color: var(--muted); font-size: .85rem; }
.feature-icon { font-size: 1.3rem; }

.seo-guide { margin-top: 22px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg,var(--surface),var(--surface-soft)); box-shadow: var(--shadow-sm); }
.seo-guide .section-heading { margin-bottom: 20px; }
.guide-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.guide-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.guide-grid h3 { margin: 0 0 8px; font-size: 1.05rem; }
.guide-grid p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.7; }

.notice-board { margin-top: 20px; padding: 20px 24px; border: 1px solid color-mix(in srgb,var(--yellow) 70%,var(--line)); border-radius: var(--radius-lg); display: grid; grid-template-columns: auto 1fr; gap: 16px; background: color-mix(in srgb,var(--yellow) 16%,var(--surface)); box-shadow: var(--shadow-sm); }
.notice-icon { font-size: 1.7rem; }
.notice-board h2 { margin: 0; font-size: 1.45rem; }
.notice-list { display: grid; gap: 8px; }
.notice-list article { padding-top: 8px; border-top: 1px solid color-mix(in srgb,var(--yellow) 45%,var(--line)); }
.notice-list p { margin: 3px 0; white-space: pre-wrap; }
.notice-list time { color: var(--muted); font-size: .72rem; }

.news-board, .ticket-bar { margin-top: 22px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.news-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.news-heading h2, .ticket-bar h2 { margin: 0; font-size: clamp(1.8rem,4vw,2.8rem); letter-spacing: -.045em; }
.live-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-size: .78rem; font-weight: 900; }
.live-dot i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px color-mix(in srgb, var(--green) 18%, transparent); }
.news-list { margin-top: 18px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.news-item { min-height: 130px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; display: flex; flex-direction: column; text-decoration: none; background: var(--surface-muted); }
.news-item:hover { border-color: var(--brand); }
.news-item time, .news-item span { color: var(--muted); font-size: .75rem; }
.news-item strong { margin: 8px 0 auto; line-height: 1.35; }

.ticket-bar { display: grid; grid-template-columns: 1.4fr auto auto; align-items: center; gap: 24px; background: linear-gradient(135deg,var(--surface),var(--surface-soft)); }
.ticket-bar p { margin: 6px 0 0; color: var(--muted); }
.ticket-status { min-width: 150px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); text-align: center; }
.ticket-status span, .ticket-status strong { display: block; }
.ticket-status span { color: var(--muted); font-size: .75rem; }
.ticket-status strong { font-variant-numeric: tabular-nums; font-size: 1.45rem; }
.ticket-actions { display: grid; gap: 8px; }
.ticket-note { grid-column: 1/-1; font-size: .78rem; }
.ticket-expired .comment-form::after { content: "Community ticket expired"; position: absolute; inset: 0; display: grid; place-items: center; padding: 30px; border-radius: inherit; background: color-mix(in srgb,var(--surface) 90%,transparent); color: var(--brand-dark); font-weight: 950; text-align: center; backdrop-filter: blur(5px); }

.content-layout { padding-top: 96px; display: grid; grid-template-columns: minmax(0,1fr) 260px; gap: 24px; align-items: start; }
.section-heading { margin-bottom: 24px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2, .security-note h2 { margin: 0; font-size: clamp(2.2rem,5vw,4rem); line-height: 1; letter-spacing: -.055em; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); }
.section-heading.compact h2 { font-size: clamp(2.1rem,4vw,3.5rem); }
.videos-section { padding-bottom: 76px; }
.video-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.video-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.video-frame { position: relative; aspect-ratio: 16/9; background: #050505; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-body { padding: 18px; }
.video-kicker { margin: 0 0 4px; }
.video-body h3 { min-height: 3.1em; margin: 0; font-size: 1.12rem; line-height: 1.4; letter-spacing: -.02em; }
.video-tools { margin-top: 16px; display: grid; gap: 12px; }
.reaction-group { display: flex; gap: 7px; }
.reaction-button, .vote-button { min-height: 36px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-muted); color: var(--text); font-weight: 850; cursor: pointer; }
.reaction-button.active, .vote-button:hover { border-color: var(--brand); background: var(--surface-soft); }
.watched-box { padding: 11px 12px; display: flex; align-items: center; gap: 8px; border: 1px dashed var(--line); border-radius: 12px; background: var(--surface-muted); font-size: .86rem; font-weight: 800; cursor: pointer; }
.watched-box input, .subscriber-check input { width: 18px; height: 18px; accent-color: var(--brand); }

.recommendation-rail { min-width: 0; }
.rail-sticky { position: sticky; top: 108px; display: grid; gap: 12px; }
.rail-label { margin: 0 0 2px; }
.promo-card, .privacy-card { min-height: 150px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-lg); display: flex; flex-direction: column; text-decoration: none; box-shadow: var(--shadow-sm); }
.promo-card span { font-size: .68rem; font-weight: 950; letter-spacing: .14em; }
.promo-card strong { margin-top: 7px; font-size: 1.25rem; line-height: 1.1; }
.promo-card small { margin-top: auto; font-weight: 850; }
.promo-card.coral { background: linear-gradient(145deg,#ff6c7b,#ff9a72); color: white; }
.promo-card.blue { background: linear-gradient(145deg,#386fee,#68a4ff); color: white; }
.privacy-card { background: var(--surface); }
.privacy-card > span { font-size: 1.5rem; }
.privacy-card p { margin: 7px 0 12px; color: var(--muted); font-size: .82rem; }

.community { padding: 18px 0 60px; }
.community-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 16px; align-items: start; }
.comment-form, .comments-panel { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.comment-form { position: sticky; top: 105px; padding: 20px; }
.form-badge { width: max-content; margin-bottom: 16px; padding: 6px 9px; border-radius: 8px; background: var(--surface-soft); color: var(--brand-dark); font-size: .68rem; font-weight: 950; letter-spacing: .11em; }
.comment-form label, .app-dialog label, .admin-login label { margin-bottom: 14px; display: grid; gap: 7px; font-weight: 850; }
input, textarea, select { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); color: var(--text); outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255,100,117,.13); }
textarea { min-height: 135px; resize: vertical; }
.subscriber-check { grid-template-columns: auto 1fr !important; align-items: center; padding: 11px; border-radius: 11px; background: var(--surface-muted); font-size: .85rem; }
.subscriber-auth { margin-bottom: 14px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; display: grid; grid-template-columns: auto 1fr; gap: 10px 12px; align-items: center; background: var(--surface-muted); }
.subscriber-auth.verified { border-color: color-mix(in srgb,var(--green) 55%,var(--line)); background: color-mix(in srgb,var(--green) 9%,var(--surface)); }
.subscriber-auth-copy { min-width: 0; }
.subscriber-auth-copy strong, .subscriber-auth-copy p { display: block; margin: 0; }
.subscriber-auth-copy p { margin-top: 3px; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.subscriber-auth .button, .subscriber-auth .text-button { grid-column: 1/-1; width: 100%; text-align: center; }
.subscriber-avatar, .comment-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: var(--surface-soft); }
.verification-note { margin: -7px 0 14px; color: var(--muted); font-size: .72rem; }
.audio-upload { padding: 12px; border: 1px dashed var(--line); border-radius: 12px; background: var(--surface-muted); }
.audio-upload input { padding: 8px; background: var(--surface); }
.audio-upload small { color: var(--muted); font-weight: 600; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.recaptcha-box { margin-bottom: 12px; overflow-x: auto; }
.form-status { min-height: 1.4em; margin: 0 0 10px; color: var(--muted); font-size: .84rem; }
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--green); }
.comments-panel { padding: 18px; }
.comments-toolbar { margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.comments-toolbar h3 { margin: 0; font-size: 1.45rem; }
.mini-label { margin: 0; }
.text-button, .footer-admin, .report-button { border: 0; background: transparent; color: var(--brand-dark); font-weight: 900; cursor: pointer; }
.comments-list { display: grid; gap: 10px; }
.comment-item { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-muted); scroll-margin-top: 120px; }
.comment-item:target { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255,100,117,.12); }
.comment-meta { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.comment-meta > div { display: flex; align-items: center; gap: 8px; }
.comment-author { flex-wrap: wrap; }
.comment-avatar { width: 27px; height: 27px; }
.verified-badge { padding: 3px 6px; border-radius: 999px; background: color-mix(in srgb,#ff0033 12%,var(--surface)); color: #d6002d; font-size: .64rem; font-weight: 950; }
.comment-score { padding: 3px 6px; border-radius: 7px; background: var(--surface-soft); color: var(--brand-dark); font-size: .68rem; font-weight: 900; }
.edited-label { color: var(--muted); font-size: .66rem; font-weight: 800; }
.comment-meta time { color: var(--muted); font-size: .76rem; }
.comment-body { margin: 10px 0 14px; white-space: pre-wrap; overflow-wrap: anywhere; }
.comment-audio { width: 100%; height: 42px; margin: 0 0 12px; }
.comment-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.report-button { color: var(--muted); font-size: .78rem; }
.owner-action { color: var(--brand-dark); }
.danger-text { color: var(--danger); }
.empty-state { margin: 0; padding: 36px 10px; color: var(--muted); text-align: center; }

.security-note { margin: 52px 0; padding: 34px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 28px; border-radius: var(--radius-xl); background: #211d25; color: #fff; }
.security-note .eyebrow { color: #ff9aa5; }
.security-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.security-list span { padding: 12px; border: 1px solid #453c48; border-radius: 11px; color: #e2d8e3; font-size: .82rem; }
.ad-section { padding: 20px 0 70px; }
.ad-label { color: var(--muted); text-align: center; font-size: .68rem; font-weight: 950; letter-spacing: .15em; }
.ad-container { min-height: 110px; padding: 18px; border: 1px dashed var(--line); border-radius: 16px; display: grid; place-items: center; background: color-mix(in srgb,var(--surface) 72%,transparent); color: var(--muted); text-align: center; }

.app-dialog { width: min(520px,calc(100% - 24px)); max-height: min(86vh,860px); padding: 0; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); color: var(--text); box-shadow: var(--shadow); }
.app-dialog::backdrop { background: rgba(20,17,22,.64); backdrop-filter: blur(5px); }
.app-dialog > form, .dialog-body { padding: 22px; }
.dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.dialog-head h2 { margin: 0; letter-spacing: -.035em; }
.dialog-head button { border: 0; background: transparent; color: var(--text); font-size: 1.8rem; cursor: pointer; }
.dialog-actions { margin-top: 18px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-list { padding: 13px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 8px 14px; border-radius: 12px; background: var(--surface-muted); font-size: .82rem; }
.cookie-list span { color: var(--muted); }
.admin-dialog { width: min(900px,calc(100% - 24px)); }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; }
.country-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(130px,1fr)); gap: 8px; }
.country-card { padding: 12px; border: 1px solid var(--line); border-radius: 11px; display: flex; justify-content: space-between; background: var(--surface-muted); }
.admin-comments { display: grid; gap: 8px; }
.notice-form { display: grid; gap: 8px; }
.notice-form textarea { min-height: 90px; }
.admin-notices { margin: 10px 0; display: grid; gap: 6px; }
.admin-notice { padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px; display: flex; justify-content: space-between; gap: 10px; }
.admin-comment { padding: 12px; border: 1px solid var(--line); border-radius: 12px; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.admin-comment p { margin: 4px 0 0; color: var(--muted); }
.security-events { max-height: 180px; overflow: auto; padding: 10px; border-radius: 12px; background: var(--surface-muted); }
.security-events p { margin: 4px 0; font-size: .78rem; }
.my-comments { display: grid; gap: 8px; }
.my-comments article { padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-muted); }
.my-comments article div { display: flex; justify-content: space-between; gap: 10px; }
.my-comments article p { margin: 7px 0 0; }
.my-comments time { color: var(--muted); font-size: .75rem; }
.legal-links { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 14px; }
.legal-links a, footer a { color: var(--muted); font-size: .78rem; }

.cookie-banner { position: fixed; z-index: 80; right: 18px; bottom: 18px; width: min(560px,calc(100% - 36px)); padding: 17px; border: 1px solid var(--line); border-radius: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--surface); box-shadow: var(--shadow); }
.cookie-banner p { margin: 3px 0 0; color: var(--muted); font-size: .82rem; }
.cookie-banner > div:last-child { display: flex; gap: 7px; }
footer { padding: 28px 0 38px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--muted); }
footer img { border-radius: 50%; }
.legal-page main { width: min(840px,calc(100% - 28px)); margin: 40px auto 80px; }
.legal-back { display: inline-block; margin-bottom: 18px; color: var(--brand-dark); font-weight: 900; text-decoration: none; }
.legal-page article { padding: clamp(22px,5vw,52px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow); }
.legal-page h1 { margin: 0; font-size: clamp(2.4rem,7vw,4.6rem); line-height: 1; letter-spacing: -.055em; }
.legal-page h2 { margin-top: 30px; font-size: 1.2rem; }
.legal-page p { color: var(--muted); }

@media (max-width: 1050px) {
  nav a { display: none; }
  .hero { grid-template-columns: 1fr; gap: 44px; padding-top: 72px; }
  .channel-card { max-width: 560px; width: 100%; justify-self: center; }
  .content-layout { grid-template-columns: 1fr; }
  .rail-sticky { position: static; grid-template-columns: repeat(3,1fr); }
  .rail-label { grid-column: 1/-1; }
  .ticket-bar { grid-template-columns: 1fr auto; }
  .ticket-actions { grid-column: 1/-1; grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .site-header { flex-wrap: wrap; }
  .brand { flex: 1; }
  nav { order: 3; width: 100%; justify-content: center; }
  .header-tools { margin-left: auto; }
  .hero { min-height: auto; padding-inline: 0; }
  .hero h1 { font-size: clamp(3.2rem,15vw,5.8rem); }
  .feature-strip { grid-template-columns: repeat(2,1fr); }
  .news-list, .video-grid, .community-grid, .guide-grid { grid-template-columns: 1fr; }
  .comment-form { position: relative; top: auto; }
  .section-heading { align-items: start; flex-direction: column; gap: 12px; }
  .ticket-bar { grid-template-columns: 1fr; }
  .ticket-status, .ticket-actions { grid-column: auto; }
  .security-note { grid-template-columns: 1fr; }
  .rail-sticky { grid-template-columns: 1fr 1fr; }
  .privacy-card { grid-column: 1/-1; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
}
@media (max-width: 520px) {
  .language-control select { width: 82px; }
  .visitor-pill { font-size: .72rem; }
  .feature-strip { padding: 8px; }
  .feature-strip article { min-height: 100px; padding: 13px; }
  .news-board, .ticket-bar, .comment-form, .comments-panel, .security-note, .seo-guide { padding: 17px; }
  .rail-sticky { grid-template-columns: 1fr; }
  .privacy-card { grid-column: auto; }
  .comment-meta { flex-direction: column; gap: 4px; }
  .security-list { grid-template-columns: 1fr; }
  .cookie-banner > div:last-child, .ticket-actions { grid-template-columns: 1fr; display: grid; }
}
