html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 0;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --red: #c60018;
  --text: #1a1d21;
  --muted: #6b7280;
  --line: #e1e3e7;
  --white: #ffffff;
  --telegram: #229ed9;
  --green: #55b35c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f1f2f4;
  color: var(--text);
  position: relative;
  padding-bottom: 84px;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

button,
a,
input,
select,
textarea {
  font: inherit;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.16;
  filter: grayscale(0.08) brightness(1.08);
}

.bg-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.92), rgba(255,255,255,0.97)),
    linear-gradient(to top, rgba(255,255,255,0.89), rgba(255,255,255,0.95));
}

.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.topline {
  background: var(--red);
  border-bottom: 1px solid #a80014;
  overflow: hidden;
}

.topline-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.topline-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
  min-height: 34px;
  padding: 0 18px;
  animation: toplineTickerMove 22s linear infinite;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

@keyframes toplineTickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-bar {
  background: #ffffff;
  border-bottom: 1px solid #d9d9d9;
}

.brand-bar-inner {
  min-height: 94px;
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.hamburger-btn {
  width: 58px;
  min-width: 58px;
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-btn span {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: #555;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1.8px;
  cursor: pointer;
}

.brand-actions {
  margin-left: auto;
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  min-width: 0;
  border-left: 1px solid #d9d9d9;
  overflow: hidden;
}

.brand-action {
  min-width: 72px;
  width: 72px;
  border: none;
  border-right: 1px solid #d9d9d9;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  color: #222;
  padding: 6px 4px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-action-text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.brand-action-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-magazine {
  width: 32px;
  height: 38px;
  border: 2px solid var(--red);
  background: #fff;
}

.icon-magazine::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 8px;
  height: 24px;
  background: var(--red);
}

.icon-magazine::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 7px;
  width: 9px;
  height: 2px;
  background: #222;
  box-shadow: 0 6px 0 #222, 0 12px 0 #222;
}

.icon-live-tv {
  width: 40px;
  height: 30px;
  border: 2px solid #666;
  border-radius: 6px;
  background: #fff;
}

.icon-live-tv::before,
.icon-live-tv::after {
  content: "";
  position: absolute;
  top: -7px;
  width: 11px;
  height: 2px;
  background: #666;
}

.icon-live-tv::before {
  left: 7px;
  transform: rotate(45deg);
}

.icon-live-tv::after {
  right: 7px;
  transform: rotate(-45deg);
}

.live-tv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 12px;
  padding: 0 4px;
  font-size: 7px;
  font-weight: 900;
  color: #fff;
  background: var(--red);
  border-radius: 3px;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 1;
  animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(198,0,24,0.2);
  }

  50% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(198,0,24,0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(198,0,24,0);
  }
}

.icon-search {
  width: 30px;
  height: 30px;
  border: 3px solid #666;
  border-radius: 50%;
  position: relative;
}

.icon-search::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -6px;
  width: 13px;
  height: 3px;
  background: #666;
  transform: rotate(45deg);
  transform-origin: center;
  border-radius: 2px;
}

.main-nav {
  display: block !important;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  background: #f3f4f6;
  border-bottom: 1px solid #d9d9d9;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.nav-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  width: max-content;
  min-width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.nav-link {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 22px;
  border: 2px solid #d8dee3;
  border-radius: 999px;
  background: #edf2f5;
  flex-shrink: 0;
}

.nav-link.active {
  background: #ffffff;
  border-color: #cfd6db;
}

.nav-link[data-page="reviews"] {
  border-color: #c60018;
}

.drawer-backdrop,
.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.drawer-backdrop { z-index: 99; }
.search-backdrop { z-index: 101; }

.drawer-backdrop.open,
.search-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(380px, 86vw);
  height: 100dvh;
  background: #ffffff;
  box-shadow: none;
  border-right: 1px solid #eceff3;
  transform: translateX(-100%);
  transition: transform .28s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.side-drawer.open {
  transform: translateX(0);
}

.drawer-head,
.search-sheet-head {
  min-height: 68px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eceff3;
}

.drawer-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.6px;
}

.drawer-close,
.search-close {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  color: #444;
  cursor: pointer;
}

.drawer-body {
  padding: 10px 0;
  overflow-y: auto;
}

.drawer-link {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: none;
  border-bottom: 1px solid #f0f2f5;
  background: #fff;
  text-align: left;
  font-size: 16px;
  font-weight: 800;
  color: #1a1d21;
  cursor: pointer;
}

.search-sheet {
  position: fixed;
  left: 50%;
  top: 84px;
  transform: translateX(-50%) translateY(-12px);
  width: min(92vw, 620px);
  background: #fff;
  border: 1px solid #e7eaef;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 102;
}

.search-sheet.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.search-title {
  font-size: 22px;
  font-weight: 900;
  color: #111;
}

.search-box {
  margin: 14px;
  min-height: 54px;
  border: 1px solid #dfe4ea;
  background: #f8fafc;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-radius: 12px;
}

.search-box .icon-search {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #666;
  border-radius: 50%;
  flex-shrink: 0;
}

.search-box .icon-search::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #666;
  bottom: -4px;
  right: -4px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.search-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #111;
}

.search-suggestions {
  padding: 0 14px 14px;
  display: grid;
  gap: 10px;
}

.search-suggestion {
  width: 100%;
  min-height: 52px;
  border: 1px solid #e4e8ee;
  background: #fff;
  border-radius: 12px;
  text-align: left;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #1c2026;
  cursor: pointer;
}

.main {
  padding: 16px 0 36px;
}

.page {
  display: none;
}

.page.active {
  display: block;
  animation: fadePage .25s ease;
}

@keyframes fadePage {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-card,
.article-card,
.news-card,
.headline-box {
  background: #ffffff;
  border: 1px solid #eceff3;
  border-radius: 14px;
  padding: 14px;
  box-shadow: none;
}

.home-video-card {
  margin-top: 12px;
  padding: 14px 0 14px;
}

.home-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.article-card.compact {
  padding: 14px;
}

.section-tag,
.section-kicker,
.headline-kicker,
.news-card-label,
.article-category {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.section-tag {
  margin-bottom: 8px;
}

.hero-card {
  text-align: center;
}

.hero-title {
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.2px;
  color: #111;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 12px;
}

.hero-text,
.article-text,
.source-text {
  font-size: 15px;
  line-height: 1.58;
  color: #404754;
}

.hero-text {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.article-text + .article-text {
  margin-top: 14px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #707784;
  font-size: 13px;
  font-weight: 700;
}

.hero-actions,
.page-actions,
.cta-wrap {
  margin-top: 14px;
}

.hero-actions,
.page-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.top-back-actions {
  margin-top: 0;
  margin-bottom: 10px;
}

.news-btn,
.join-btn,
.back-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.news-btn,
.back-btn {
  padding: 0 18px;
  background: #ffffff;
  color: #161a20;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
}

.news-btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.back-btn {
  min-height: 46px;
}

.text-link-btn {
  background: none;
  border: none;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  margin-top: 10px;
  cursor: pointer;
  padding: 0;
}

.section-head {
  margin-bottom: 12px;
  text-align: center;
}

.section-kicker,
.section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 28px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: #111;
  margin-top: 4px;
}

.article-title {
  font-size: 24px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #111;
  margin: 8px 0 10px;
}

.report-grid {
  display: grid;
  gap: 12px;
}

.report-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  background: #fff;
  border: 1px solid #eceff3;
  padding: 14px;
}

.report-num {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
}

.report-copy h3 {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
  color: #111319;
  margin-bottom: 6px;
}

.report-copy p {
  font-size: 14px;
  line-height: 1.58;
  color: #4d5768;
}

.report-proofs {
  margin-top: 14px;
}

.report-proofs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.report-proof-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.report-proof-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.report-proof-zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.news-card {
  background: #fff;
}

.news-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px 10px;
}

.news-card-label {
  width: 100%;
  text-align: center;
}

.news-card-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #4a5565;
}

.status-dot {
  display: none;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  background: #000;
  opacity: 0;
  transform: translateY(14px);
  transition: .35s ease;
  cursor: pointer;
}

.creative-video {
  width: 100%;
  display: block;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.play-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.play-btn-img {
  width: 86px;
  height: auto;
}

.video-caption {
  margin-top: 10px;
  padding: 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #4f5867;
  text-align: center;
}

.join-btn {
  width: calc(100% - 28px);
  margin: 0 14px;
  min-height: 58px;
  background: var(--telegram);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(34,158,217,0.20);
}

.join-btn img {
  width: 28px;
  height: 28px;
}

.headline-kicker {
  margin-bottom: 8px;
}

.headline-box {
  text-align: center;
}

.headline-box h3 {
  font-size: 24px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #111;
  margin-bottom: 12px;
}

.source-steps {
  max-width: 420px;
  margin: 22px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.source-step-text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #4f5867;
  font-weight: 800;
}

.source-step-text-second {
  margin-top: 18px;
  margin-bottom: 12px;
}

.source-play-link {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.source-play-banner {
  display: block;
  width: 100%;
  max-width: 300px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.source-play-banner:hover {
  transform: scale(1.03);
}

.source-offer-btn {
  width: 100%;
  max-width: 300px;
  min-height: 56px;
  margin: 0;
}

#reviews .section-head {
  text-align: center;
}

.reviews-cities {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-align: center;
}

.reviews-grid {
  display: grid;
  gap: 12px;
}

.review-card {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 12px;
  padding: 12px;
}

.review-video-wrapper {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 10px;
  cursor: pointer;
}

.review-video {
  width: 100%;
  display: block;
  background: #000;
  border-radius: 10px;
}

.review-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.review-play-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.review-play-btn-img {
  width: 72px;
  height: auto;
}

.review-title {
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 4px;
  color: #404754;
}

.review-text {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4f5867;
  font-weight: 600;
  text-align: center;
}

.reviews-cta-box {
  margin-top: 16px;
  text-align: center;
}

.reviews-cta-box h3 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.explained-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.explained-link-btn {
  width: 100%;
  min-height: 56px;
  border: 1px solid #dfe3ea;
  border-radius: 12px;
  background: #ffffff;
  color: #1a1d21;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  padding: 0 16px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.explained-link-btn:active {
  transform: scale(0.99);
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid #dfe3ea;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

.bottom-nav-item {
  min-height: 64px;
  min-width: 0;
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  color: #757575;
  overflow: hidden;
  position: relative;
}

.bottom-nav-item.active {
  color: var(--red);
}

.bottom-nav-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.bottom-label {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.bottom-nav-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-home {
  width: 28px;
  height: 22px;
}

.icon-home::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 15px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 65% 100%, 65% 55%, 35% 55%, 35% 100%, 0 100%);
}

.icon-home::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 28px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 65%, 88% 65%, 88% 100%, 12% 100%, 12% 65%, 0 65%);
}

.icon-live-bottom {
  width: 30px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.icon-live-bottom::before,
.icon-live-bottom::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 8px;
  height: 2px;
  background: currentColor;
}

.icon-live-bottom::before {
  left: 5px;
  transform: rotate(45deg);
}

.icon-live-bottom::after {
  right: 5px;
  transform: rotate(-45deg);
}

.icon-live-bottom span {
  font-size: 7px;
  font-weight: 900;
  color: #fff;
  background: var(--red);
  padding: 1px 4px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}

.icon-star {
  width: 26px;
  height: 26px;
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 71%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
}

.icon-channel {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  box-shadow: 0 0 0 0 rgba(85, 179, 92, 0.6);
  animation: channelPulse 1.5s infinite;
}

.icon-channel::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.icon-channel::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-color: #fff transparent transparent #fff;
  border-radius: 50%;
  transform: rotate(-45deg);
}

@keyframes channelPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(85, 179, 92, 0.6);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(85, 179, 92, 0);
    transform: scale(1.08);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(85, 179, 92, 0);
    transform: scale(1);
  }
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.image-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

.image-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 520px);
  max-height: 92dvh;
  margin: 4dvh auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-modal-close {
  position: absolute;
  top: -12px;
  right: -2px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  color: #111;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.image-modal-img {
  width: 100%;
  max-height: 78dvh;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}

.image-modal-hint {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 769px) {
  .container {
    max-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .topline-ticker-track {
    min-height: 28px;
    font-size: 11px;
    gap: 14px;
    padding: 0 24px;
  }

  .brand-bar-inner {
    min-height: 72px;
    gap: 14px;
    overflow: visible;
    justify-content: space-between;
  }

  .hamburger-btn {
    width: 42px;
    min-width: 42px;
    gap: 4px;
    margin-left: 0;
  }

  .hamburger-btn span {
    width: 26px;
    height: 3px;
  }

  .brand-logo {
    flex: 0 0 auto;
    font-size: 36px;
    letter-spacing: -1.2px;
    overflow: visible;
    text-overflow: unset;
    white-space: nowrap;
    margin-right: auto;
  }

  .brand-actions {
    margin-left: auto;
    display: flex;
    align-items: stretch;
    gap: 0;
    border-left: 1px solid #d9d9d9;
    overflow: visible;
  }

  .brand-action {
    width: 88px;
    min-width: 88px;
    min-height: 72px;
    padding: 6px 6px;
    gap: 6px;
    border-right: 1px solid #d9d9d9;
    background: #f8f8f8;
  }

  .brand-action-text {
    display: block;
    font-size: 11px;
  }

  .icon-magazine {
    width: 24px;
    height: 30px;
  }

  .icon-magazine::before {
    left: 5px;
    top: 4px;
    width: 6px;
    height: 19px;
  }

  .icon-magazine::after {
    right: 5px;
    top: 6px;
    width: 7px;
    height: 2px;
    box-shadow: 0 5px 0 #222, 0 10px 0 #222;
  }

  .icon-live-tv {
    width: 32px;
    height: 24px;
  }

  .icon-search {
    width: 24px;
    height: 24px;
    border-width: 3px;
  }

  .icon-search::after {
    width: 10px;
    height: 3px;
    right: -4px;
    bottom: -5px;
  }

  .main-nav {
    overflow: hidden;
  }

  .nav-inner {
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 22px;
    padding-left: 32px;
    padding-right: 32px;
    min-height: 52px;
  }

  .nav-link {
    font-size: 12px;
    padding: 10px 22px;
    border-width: 2px;
  }

  .main {
    padding-top: 18px;
  }

  .hero-card {
    padding: 16px;
    max-width: 820px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.04;
    max-width: 720px;
  }

  .hero-text {
    max-width: 640px;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  .article-meta {
    font-size: 12px;
  }

  .home-video-card {
    max-width: 700px;
    margin: 12px auto 0;
  }

  .news-card-head {
    padding: 0 18px 12px;
  }

  .video-wrapper {
    max-width: 560px;
    margin: 0 auto;
    border-radius: 12px;
  }

  .creative-video {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .video-caption {
    max-width: 620px;
    margin: 10px auto 0;
    padding: 0;
    font-size: 14px;
    text-align: center;
  }

  .cta-wrap {
    max-width: 620px;
    margin: 14px auto 0;
    display: flex;
    justify-content: center;
  }

  .join-btn {
    width: auto;
    min-width: 340px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    min-height: 58px;
    font-size: 16px;
  }

  .home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .article-title {
    font-size: 20px;
  }

  .article-text, 
  .source-text {
    font-size: 14px;
  }

  .section-head,
  .article-card,
  .report-grid,
  .headline-box,
  .page-actions,
  .reviews-grid,
  .report-proofs,
  .explained-links {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .reviews-cities {
    max-width: 980px;
    margin: 0 auto 14px;
    text-align: center;
  }

  .section-title {
    font-size: 24px;
  }

  .report-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .report-item {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 16px;
  }

  .report-num {
    margin-bottom: 6px;
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .report-copy h3 {
    font-size: 16px;
  }

  .report-copy p {
    font-size: 13px;
  }

  .report-proofs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .explained-link-btn {
    font-size: 14px;
  }

  .page-actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .news-btn,
  .back-btn {
    width: auto;
    min-width: 240px;
    min-height: 54px;
    font-size: 15px;
  }

  .headline-box {
    padding: 18px;
  }

  .headline-box h3 {
    font-size: 28px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .search-sheet {
    top: 70px;
    width: min(760px, calc(100vw - 80px));
  }

  .search-title {
    font-size: 20px;
  }

  .search-suggestion {
    font-size: 14px;
  }

  .side-drawer {
    width: 320px;
  }

  .bottom-nav {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .source-steps {
    margin-top: 24px;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .review-card {
    padding: 14px;
  }

  .review-text {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand-bar-inner {
    min-height: 60px;
    gap: 6px;
  }

  .hamburger-btn {
    width: 34px;
    min-width: 34px;
    gap: 4px;
  }

  .hamburger-btn span {
    width: 20px;
    height: 2px;
  }

  .brand-logo {
    font-size: 24px;
    letter-spacing: -0.8px;
  }

  .brand-actions {
    border-left: none;
    gap: 2px;
  }

  .brand-action {
    min-width: 52px;
    width: 52px;
    padding: 4px 2px;
    gap: 3px;
    border-right: none;
    background: transparent;
  }

  .brand-action-text {
    display: block;
    font-size: 9px;
    line-height: 1;
  }

  .brand-action:first-child {
    display: flex;
  }

  .icon-magazine {
    width: 16px;
    height: 20px;
  }

  .icon-magazine::before {
    left: 3px;
    top: 3px;
    width: 5px;
    height: 14px;
  }

  .icon-magazine::after {
    right: 3px;
    top: 4px;
    width: 5px;
    height: 2px;
    box-shadow: 0 4px 0 #222, 0 8px 0 #222;
  }

  .icon-live-tv {
    width: 22px;
    height: 16px;
  }

  .icon-live-tv::before,
  .icon-live-tv::after {
    top: -4px;
    width: 6px;
  }

  .live-tv-badge {
    min-width: 16px;
    height: 9px;
    font-size: 5px;
  }

  .icon-search {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .icon-search::after {
    width: 8px;
    height: 2px;
    right: -3px;
    bottom: -3px;
  }

  .nav-inner {
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 12px;
    border-width: 1px;
  }

  .search-sheet {
    top: 72px;
    width: calc(100vw - 20px);
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.05;
  }

  .hero-text,
  .article-text,
  .source-text {
    font-size: 14px;
  }

  .section-title,
  .headline-box h3,
  .article-title {
    font-size: 20px;
  }

  .play-btn-img {
    width: 64px;
  }

  .review-play-btn-img {
    width: 60px;
  }

  .hero-actions,
  .page-actions {
    flex-direction: column;
  }

  .news-btn {
    width: 100%;
  }

  .join-btn {
    width: calc(100% - 20px);
    margin: 0 10px;
  }

  .bottom-nav-item {
    min-height: 60px;
    gap: 2px;
  }

  .bottom-label {
    font-size: 9px;
  }

  .bottom-nav-icon {
    transform: scale(0.85);
  }

  .source-steps {
    max-width: 100%;
    margin-top: 18px;
  }

  .source-play-banner,
  .source-offer-btn {
    max-width: 260px;
  }

  .source-step-text {
    font-size: 13px;
  }

  .image-modal-dialog {
    width: min(94vw, 420px);
    margin-top: 6dvh;
  }

  .image-modal-img {
    max-height: 74dvh;
  }
}

@media (max-width: 480px) {
  .search-title {
    font-size: 20px;
  }

  .search-suggestion {
    font-size: 14px;
    line-height: 1.3;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: auto;
  }
}
