:root {
    --red: #D72B2B;
    --red-dark: #A01E1E;
    --yellow: #C49A00;
    --black: #F5F0EB;
    --dark: #EDE8E2;
    --mid: #D6CFC6;
    --light: #1A1A1A;
    --text: #1E1C19;
    --muted: #6B6560;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'PT Sans', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE ── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: .15;
  }

  /* ── HERO ── */
  .hero {
    background: var(--red);
    background-image:
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 18px,
        rgba(0,0,0,.08) 18px,
        rgba(0,0,0,.08) 20px
      );
    padding: 56px 24px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: heroIn .6s ease both;
  }

  @keyframes heroIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 32px;
    background: var(--black);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
  }

  .alert-badge {
    display: inline-block;
    background: var(--yellow);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
    animation: pulse 2.2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196,154,0,.5); }
    50%       { box-shadow: 0 0 0 10px rgba(196,154,0,0); }
  }

  .hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 8vw, 62px);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    text-shadow: 3px 3px 0 rgba(0,0,0,.25);
    max-width: 780px;
    margin: 0 auto 16px;
    letter-spacing: -.01em;
  }

  .hero h1 em {
    font-style: normal;
    color: #FFE566;
    display: block;
  }

  .hero-sub {
    font-size: clamp(17px, 3vw, 18px);
    color: rgba(255,255,255,.9);
    max-width: 560px;
    margin: 0 auto;
  }

  /* ── COURT VERDICT ── */
  .verdict {
    background: #FFFDF9;
    border-left: 5px solid var(--yellow);
    margin: 48px auto;
    max-width: 820px;
    padding: 32px 36px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.07);
    animation: fadeUp .5s .2s ease both;
  }

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

  .verdict-label {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 13px;
  }

  .verdict p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 14px;
  }

  .verdict-facts {
    list-style: none;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .verdict-facts li {
    background: var(--red-dark);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 8px 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .verdict-facts li::before { content: '✗'; font-size: 16px; }

  /* ── SECTION WRAPPER ── */
  .section {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 60px;
    animation: fadeUp .5s .3s ease both;
  }

  .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(22px, 5vw, 34px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: .02em;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--mid);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-title .icon {
    width: 36px; height: 36px;
    background: var(--red);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  /* ── WHY ILLEGAL ── */
  .reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 0;
  }

  .reason-card {
    background: #fff;
    border: 1px solid var(--mid);
    border-top: 3px solid var(--red);
    padding: 22px 20px;
    border-radius: 6px;
    transition: transform .2s, border-top-color .2s, box-shadow .2s;
  }

  .reason-card:hover {
    transform: translateY(-3px);
    border-top-color: var(--yellow);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
  }

  .reason-num {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--mid);
    line-height: 1;
    margin-bottom: 8px;
  }

  .reason-title {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
  }

  .reason-text {
    font-size: 14.5px;
    color: #666;
    line-height: 1.6;
  }

  /* ── ACTIONS ── */
  .actions {
    display: grid;
    gap: 14px;
  }

  .action-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--mid);
    border-radius: 8px;
    padding: 20px 22px;
    transition: border-color .2s, box-shadow .2s;
  }

  .action-item:hover {
    border-color: #bbb;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
  }

  .action-check {
    width: 30px; height: 30px;
    background: #e8f5e8;
    border: 2px solid #4caf50;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .action-title {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 5px;
  }

  .action-desc {
    font-size: 14.5px;
    color: #666;
    line-height: 1.6;
  }

  .action-desc strong {
    color: var(--red);
  }

  /* ── CTA ── */
  .cta-block {
    background: #fff;
    border: 1px solid var(--mid);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
  }

  .cta-block::before {
    display: none;
  }

  .cta-block h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
  }

  .cta-block p {
    color: #666;
    margin-bottom: 28px;
    font-size: 16px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .qr-placeholder {
    width: 150px; height: 150px;
    background: #f5f5f5;
    border: 1px solid var(--mid);
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* Fake QR pattern */
  .qr-placeholder svg {
    width: 130px; height: 130px;
  }

  .cta-label {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
  }

  .tg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #229ED9;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: background .2s, transform .15s;
  }

  .tg-btn:hover {
    background: #1a8bbf;
    transform: translateY(-2px);
  }

  /* ── INFO BANNERS ── */
  .info-banner {
    max-width: 820px;
    margin: 0 auto 16px;
    padding: 0 24px;
  }

  .info-card {
    border-radius: 10px;
    padding: 24px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }

  .info-card.green {
    background: #edf7ed;
    border: 1px solid #a5d6a7;
  }

  .info-card.orange {
    background: #fff8ee;
    border: 1px solid #ffcc80;
  }

  .info-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
  }

  .info-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
  }

  .info-card.green .info-card-title { color: #2e7d32; }
  .info-card.orange .info-card-title { color: #e65100; }

  .info-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
  }

  .info-card p strong { color: #222; }

  /* ── FOOTER ── */
  footer {
    background: #F4F2EE;
    border-top: 1px solid var(--mid);
    padding: 24px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
  }

  footer strong {
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    display: block;
    margin-bottom: 6px;
  }

  /* ── DIVIDER ── */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mid), transparent);
    margin: 0 24px 48px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    .verdict { padding: 24px 20px; margin: 32px 16px; }
    .section { padding: 0 16px 48px; }
    .cta-block { padding: 28px 20px; }
    .verdict-facts { flex-direction: column; gap: 10px; }
  }

  a {
    color: var(--red-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  a:hover {
    color: var(--red);
  }

  .section-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0;
}

.section-body strong {
  color: var(--red);
}