/* ============ CNN TÜRK КЛОН ============ */
:root {
  --cnn-red: #cc0000;
  --cnn-red-dark: #a30000;
  --cnn-black: #181818;
  --cnn-dark: #2a2a2a;
  --cnn-gray: #6c6c6c;
  --cnn-light: #f4f4f4;
  --cnn-border: #e5e5e5;
  --link-blue: #0066cc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: 'CNN', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #1a1a1a;
  background: #fff;
  padding-bottom: 80px;
  overflow-x: hidden;
}

a { color: var(--link-blue); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* КЛИКАБЕЛЬНЫЕ УПОМИНАНИЯ ПЛАТФОРМЫ */
.link-platform {
  color: var(--link-blue);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}
.link-platform:hover { color: #003d7a; }

/* ============ ШАПКА CNN TÜRK ============ */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.header-top {
  background: var(--cnn-black);
  border-bottom: 4px solid var(--cnn-red);
}
.header-top-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.logo-cnn {
  background: var(--cnn-red);
  color: #fff;
  font-weight: 900;
  font-size: 26px;
  padding: 4px 10px;
  letter-spacing: -1px;
  font-family: 'Helvetica', sans-serif;
}
.logo-turk {
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ccc;
  font-size: 13px;
}
.header-top-right span { color: #ccc; }
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--cnn-red);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
  margin-right: 6px;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.login-btn {
  background: var(--cnn-red);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

.header-nav-strip {
  background: #fff;
  border-bottom: 1px solid var(--cnn-border);
}
.main-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.main-nav a {
  color: #1a1a1a;
  text-decoration: none;
  padding: 14px 14px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.main-nav a:hover, .main-nav a.active { border-bottom-color: var(--cnn-red); color: var(--cnn-red); }

.breadcrumb {
  background: #f8f8f8;
  border-bottom: 1px solid var(--cnn-border);
  font-size: 12px;
  color: #6c6c6c;
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 16px;
}
.breadcrumb a { color: #6c6c6c; }
.breadcrumb-sep { margin: 0 6px; color: #999; }

/* ============ ОСНОВНОЙ LAYOUT (2 КОЛОНКИ) ============ */
.page-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
}
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

.article { background: #fff; }

.article-category {
  display: inline-block;
  color: var(--cnn-red);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.article-title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 14px;
  color: #181818;
  letter-spacing: -0.3px;
}
@media (max-width: 640px) {
  .article-title { font-size: 26px; }
}
.article-subtitle {
  font-size: 19px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 18px;
  font-weight: 400;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #6c6c6c;
  border-top: 1px solid var(--cnn-border);
  border-bottom: 1px solid var(--cnn-border);
  padding: 12px 0;
  margin-bottom: 20px;
}
.meta-author { color: #181818; font-weight: 700; }

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.tag {
  background: #f0f0f0;
  color: #444;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 3px;
  text-decoration: none;
}

.article p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.7;
  color: #1a1a1a;
}
.article strong { font-weight: 700; }
.article figure { margin: 20px 0; }
.article figure img { width: 100%; border-radius: 4px; }
.article figcaption {
  font-size: 13px;
  color: #6c6c6c;
  padding: 8px 0;
  font-style: italic;
}

.dialog-line { margin-bottom: 14px; font-size: 17px; line-height: 1.7; }
.dialog-line strong { color: var(--cnn-red); }

.section-h {
  font-size: 24px;
  font-weight: 800;
  margin: 32px 0 16px;
  color: #181818;
  letter-spacing: -0.2px;
  border-left: 4px solid var(--cnn-red);
  padding-left: 12px;
}

/* ============ ВЕРИФИКАЦИОННЫЕ БЛОКИ ============ */
.verification-box {
  background: #f8f8f8;
  border-left: 4px solid var(--cnn-red);
  padding: 18px 20px;
  margin: 24px 0;
}
.verification-box .vbox-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--cnn-red);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.verification-box .vbox-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}
.verification-box ul { list-style: none; padding: 0; margin: 12px 0; }
.verification-box ul li { padding: 4px 0; font-size: 16px; color: #1a1a1a; }
.verification-box ul li::before {
  content: '✓ ';
  color: #1a8f3a;
  font-weight: 900;
  margin-right: 6px;
}
.verification-box .vbox-bottom {
  margin-top: 12px;
  font-size: 15px;
  color: #444;
  font-style: italic;
}

.denial-box {
  background: #fff8e6;
  border: 1px solid #f0c040;
  padding: 18px 20px;
  margin: 24px 0;
  border-radius: 4px;
}
.denial-box .dbox-label {
  font-size: 12px;
  font-weight: 800;
  color: #8a6300;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.denial-box .dbox-title { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.denial-box .dbox-punchline {
  margin-top: 12px;
  padding: 10px 14px;
  background: #fff;
  border-left: 3px solid var(--cnn-red);
  font-weight: 700;
}

.reaction-box {
  background: #1a1a1a;
  color: #fff;
  padding: 22px 24px;
  margin: 28px 0;
  border-radius: 4px;
}
.reaction-box .rbox-label {
  display: inline-block;
  background: var(--cnn-red);
  color: #fff;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.reaction-box .rbox-title { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: #fff; }
.reaction-box p { color: #e5e5e5; margin-bottom: 8px; }
.reaction-box .rbox-punch {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-top: 1px solid #444;
  padding-top: 12px;
}

/* ============ CTA БЛОКИ ============ */
.cta-block {
  text-align: center;
  margin: 24px 0;
  padding: 18px;
  background: #fff5f5;
  border: 1px dashed var(--cnn-red);
  border-radius: 4px;
}
.cta-button {
  display: inline-block;
  background: var(--cnn-red);
  color: #fff !important;
  font-size: 18px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 0 var(--cnn-red-dark);
  transition: transform 0.1s;
}
.cta-button:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--cnn-red-dark); }
.cta-subline { font-size: 14px; color: #555; margin-top: 10px; }

/* ============ КОММЕНТАРИИ ============ */
.comments-section { margin-top: 40px; border-top: 2px solid var(--cnn-border); padding-top: 24px; }
.comments-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.comments-title { font-size: 22px; font-weight: 800; color: #181818; }
.comments-count { font-size: 15px; color: #6c6c6c; }
.sort-row {
  font-size: 13px;
  color: #6c6c6c;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cnn-border);
}
.sort-row strong { color: #181818; }

.comment {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cnn-border);
}
.comment:last-child { border-bottom: none; }
.comment-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #5a6a7e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
}
.comment-avatar.av-red { background: #c44; }
.comment-avatar.av-blue { background: #4a6fa5; }
.comment-avatar.av-green { background: #4a8a5c; }
.comment-avatar.av-purple { background: #7c5b9b; }
.comment-avatar.av-orange { background: #c47a2b; }
.comment-avatar.av-teal { background: #3d8a8a; }
.comment-avatar.av-brown { background: #8a6a47; }
.comment-avatar.av-navy { background: #364a6e; }

.comment-body { flex: 1; min-width: 0; }
.comment-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  margin-bottom: 6px;
}
.comment-name { font-weight: 800; font-size: 16px; color: #181818; }
.comment-handle { color: #6c6c6c; font-size: 14px; }
.comment-time { color: #6c6c6c; font-size: 14px; }
.comment-text { font-size: 16px; line-height: 1.55; color: #1a1a1a; margin-bottom: 8px; }

.comment-bank-fake {
  background: linear-gradient(135deg, #fff 0%, #f5f8fc 100%);
  border: 1px solid #d8dee6;
  border-radius: 8px;
  padding: 14px 16px;
  max-width: 360px;
  margin: 8px 0 4px;
  font-family: 'Helvetica', 'Arial', sans-serif;
}
.comment-bank-fake .bank-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6c6c6c;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comment-bank-fake .bank-logo { color: #00643c; font-weight: 900; font-size: 14px; }
.comment-bank-fake .bank-name { font-size: 13px; color: #1a1a1a; margin-bottom: 2px; }
.comment-bank-fake .bank-amount {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 4px 0;
}
.comment-bank-fake .bank-status { font-size: 12px; color: #1a8f3a; font-weight: 700; }
.comment-bank-fake .bank-date { font-size: 11px; color: #6c6c6c; margin-top: 6px; }

.comment-actions {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #6c6c6c;
  margin-top: 6px;
}
.comment-actions span { display: inline-flex; align-items: center; gap: 4px; }

.show-more-comments {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  background: #f4f4f4;
  border: 1px solid var(--cnn-border);
  color: var(--cnn-red);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
}
.show-more-comments:hover { background: #ebebeb; }

/* ============ SIDEBAR ============ */
.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-block { margin-bottom: 24px; }
.sidebar-h {
  background: var(--cnn-black);
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 4px solid var(--cnn-red);
  margin-bottom: 12px;
}

.side-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cnn-border);
}
.side-item:last-child { border-bottom: none; }
.side-item-img {
  width: 80px;
  height: 60px;
  background: linear-gradient(135deg, #d0d0d0 0%, #a0a0a0 100%);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
  text-align: center;
  padding: 4px;
}
.side-item-content { flex: 1; min-width: 0; }
.side-item-cat {
  color: var(--cnn-red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.side-item-title { font-size: 14px; font-weight: 700; line-height: 1.3; color: #181818; }
.side-item-time { font-size: 11px; color: #6c6c6c; margin-top: 2px; }

.ad-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
  color: #fff;
  padding: 24px 16px;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 24px;
}
.ad-banner .ad-tag {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.ad-banner .ad-title { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.ad-banner .ad-cta {
  display: inline-block;
  background: var(--cnn-red);
  color: #fff !important;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 3px;
  margin-top: 8px;
}

/* ============ ФИНАЛЬНЫЙ CTA ============ */
.final-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  padding: 32px 24px;
  border-radius: 6px;
  text-align: center;
  margin: 32px 0;
}
.final-cta .final-text { color: #e5e5e5; font-size: 17px; margin-bottom: 18px; line-height: 1.6; }
.final-cta .cta-final {
  display: inline-block;
  background: var(--cnn-red);
  color: #fff !important;
  font-size: 20px;
  font-weight: 900;
  padding: 18px 40px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 0 #6b0000;
}
.timer-line { color: #f0c040; margin-top: 14px; font-size: 15px; font-weight: 700; }

/* ============ FLOATING ============ */
.floating-stack { position: fixed; top: 110px; right: 16px; z-index: 50; }
.floating-counter {
  background: rgba(204, 0, 0, 0.95);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.floating-counter .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1s infinite;
}
@media (max-width: 900px) { .floating-stack { display: none; } }

.floating-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--cnn-red);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(204,0,0,0.5);
  z-index: 60;
  text-decoration: none;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--cnn-black);
  color: #aaa;
  padding: 32px 16px 20px;
  margin-top: 40px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.footer-logo { display: inline-flex; align-items: center; gap: 4px; margin-bottom: 14px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 14px; }
.footer-nav a { color: #aaa; font-size: 13px; }
.copyright { font-size: 12px; color: #777; }
