:root {
      --primary: #c0392b;
      --primary-dark: #922b21;
      --dark: #131524;
      --dark-2: #1a2036;
      --dark-3: #222a45;
      --card: #19213a;
      --text: #eceef5;
      --muted: #aab2c8;
      --line: rgba(255,255,255,0.08);
      --radius: 14px;
      --shadow: 0 18px 50px rgba(0,0,0,0.22);
      --notice-offset: 0px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Segoe UI", Arial, sans-serif;
      background:
        radial-gradient(circle at top right, rgba(192,57,43,0.18), transparent 30%),
        linear-gradient(180deg, #10131f 0%, #14192b 100%);
      color: var(--text);
      line-height: 1.75;
    }
    a { color: inherit; }
    .skip-link {
      position: absolute;
      left: 12px;
      top: -48px;
      z-index: 100;
      padding: 10px 14px;
      border-radius: 8px;
      background: #fff;
      color: #111;
      text-decoration: none;
      font-weight: 700;
      transition: top .2s ease;
    }
    .skip-link:focus {
      top: 12px;
    }
    header {
      position: sticky;
      top: var(--notice-offset);
      z-index: 10;
      backdrop-filter: blur(10px);
      background: rgba(17, 20, 33, 0.92);
      border-bottom: 1px solid var(--line);
      transition: top .18s ease;
    }
    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .logo {
      font-size: 28px;
      font-weight: 900;
      text-decoration: none;
      letter-spacing: -1px;
      color: #fff;
    }
    .logo span { color: var(--primary); }
    nav {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    nav a {
      text-decoration: none;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
    }
    nav a:hover { color: #fff; }
    .nav-cta {
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--primary);
      color: #fff;
      box-shadow: var(--shadow);
    }
    .nav-cta:hover { background: var(--primary-dark); }
    .breadcrumb {
      border-bottom: 1px solid var(--line);
      background: rgba(20,25,43,0.72);
    }
    .breadcrumb-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 12px 20px;
      font-size: 13px;
      color: var(--muted);
    }
    .breadcrumb a {
      color: var(--muted);
      text-decoration: none;
    }
    .breadcrumb a:hover { color: #fff; }
    .hero {
      padding: 76px 20px 64px;
      border-bottom: 1px solid var(--line);
    }
    .hero-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      gap: 28px;
    }
    .eyebrow {
      display: inline-block;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(192,57,43,0.12);
      border: 1px solid rgba(192,57,43,0.35);
      color: #ffb1a6;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    h1 {
      margin: 0;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: #fff;
    }
    .lead {
      max-width: 820px;
      margin: 0;
      color: var(--muted);
      font-size: 18px;
    }
    .hero-actions,
    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .chip,
    .button-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      text-decoration: none;
      color: #fff;
      background: rgba(255,255,255,0.04);
      font-weight: 700;
      font-size: 14px;
    }
    .chip:hover,
    .button-secondary:hover {
      border-color: rgba(192,57,43,0.6);
      background: rgba(192,57,43,0.14);
    }
    .button-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 999px;
      background: var(--primary);
      color: #fff;
      text-decoration: none;
      font-weight: 800;
      box-shadow: var(--shadow);
    }
    .button-primary:hover { background: var(--primary-dark); }
    .section {
      padding: 58px 20px;
    }
    .section-alt {
      background: rgba(255,255,255,0.03);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .section-inner {
      max-width: 1180px;
      margin: 0 auto;
    }
    .section-title {
      margin: 0 0 8px;
      font-size: 30px;
      color: #fff;
    }
    .section-sub {
      max-width: 780px;
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 16px;
    }
    .grid {
      display: grid;
      gap: 16px;
    }
    .city-grid {
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    .blog-grid {
      grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    }
    .stat-grid {
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .card,
    .city-card,
    .blog-card,
    .stat-card {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
      box-shadow: var(--shadow);
    }
    .city-card,
    .blog-card {
      display: block;
      text-decoration: none;
      color: inherit;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .city-card:hover,
    .blog-card:hover {
      transform: translateY(-2px);
      border-color: rgba(192,57,43,0.55);
      background: linear-gradient(180deg, rgba(192,57,43,0.12), rgba(255,255,255,0.02));
    }
    .city-card {
      padding: 18px;
      font-weight: 800;
      color: #fff;
    }
    .city-card small {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-weight: 600;
    }
    .blog-card-body {
      padding: 20px;
    }
    .blog-tag {
      color: #ffb1a6;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 800;
    }
    .blog-card h3 {
      margin: 10px 0 10px;
      color: #fff;
      font-size: 21px;
      line-height: 1.25;
    }
    .blog-card p,
    .muted {
      color: var(--muted);
    }
    .content {
      max-width: 860px;
    }
    .content h2 {
      margin: 0 0 14px;
      padding-top: 30px;
      border-top: 1px solid var(--line);
      color: #fff;
      font-size: 28px;
      line-height: 1.2;
    }
    .content h2:first-child {
      padding-top: 0;
      border-top: 0;
    }
    .content h3 {
      margin: 24px 0 10px;
      color: #fff;
      font-size: 20px;
    }
    .content p,
    .content li {
      color: var(--muted);
      font-size: 16px;
    }
    .content ul {
      margin: 0 0 18px;
      padding-left: 20px;
    }
    .content strong { color: #fff; }
    .info-box {
      margin: 26px 0;
      padding: 22px;
      border-radius: var(--radius);
      border: 1px solid rgba(192,57,43,0.32);
      background: rgba(192,57,43,0.08);
    }
    .info-box h4 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 16px;
    }
    .info-box p:last-child,
    .info-box ul:last-child { margin-bottom: 0; }
    .stat-card {
      padding: 18px;
    }
    .stat-card strong {
      display: block;
      margin-bottom: 4px;
      color: #fff;
      font-size: 28px;
    }
    .stat-card span {
      color: var(--muted);
      font-size: 14px;
    }
    .article-wrap {
      max-width: 860px;
      margin: 0 auto;
      padding: 58px 20px 80px;
    }
    .article-title {
      margin: 14px 0;
      font-size: clamp(30px, 4vw, 48px);
      color: #fff;
      line-height: 1.12;
    }
    .article-meta {
      margin-bottom: 24px;
      color: var(--muted);
      font-size: 14px;
    }
    .article-lead {
      margin-bottom: 30px;
      padding: 22px 24px;
      border-left: 4px solid var(--primary);
      border-radius: 0 var(--radius) var(--radius) 0;
      background: rgba(255,255,255,0.03);
      color: #fff;
      font-size: 18px;
    }
    .notice-bar {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 30;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      background:
        radial-gradient(circle at top right, rgba(192,57,43,0.16), transparent 36%),
        linear-gradient(180deg, rgba(25,29,46,0.98) 0%, rgba(18,22,35,0.96) 100%);
      box-shadow: 0 18px 50px rgba(0,0,0,0.28);
    }
    .notice-bar[hidden] {
      display: none;
    }
    .notice-bar-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 12px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px 18px;
    }
    .notice-copy {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      flex: 1 1 540px;
    }
    .notice-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 48px;
      height: 48px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(192,57,43,0.15);
      border: 1px solid rgba(192,57,43,0.42);
      color: #fff;
      font-weight: 900;
      font-size: 18px;
    }
    .notice-text strong,
    .consent-banner strong {
      display: block;
      color: #fff;
      font-size: 15px;
      line-height: 1.3;
    }
    .notice-text span,
    .consent-banner p {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }
    .notice-actions,
    .consent-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .notice-button,
    .consent-button,
    .consent-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      cursor: pointer;
      font: inherit;
      font-size: 14px;
      font-weight: 800;
      text-decoration: none;
      transition: background .18s ease, border-color .18s ease, color .18s ease;
    }
    .notice-button-primary,
    .consent-button-primary {
      background: var(--primary);
      border-color: transparent;
      color: #fff;
    }
    .notice-button-primary:hover,
    .consent-button-primary:hover {
      background: var(--primary-dark);
    }
    .notice-button-secondary,
    .consent-link {
      background: rgba(255,255,255,0.05);
      color: #fff;
    }
    .notice-button-secondary:hover,
    .consent-link:hover {
      background: rgba(255,255,255,0.11);
      border-color: rgba(255,255,255,0.18);
    }
    .consent-banner {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 24;
      width: min(430px, calc(100% - 40px));
      padding: 20px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.12);
      background:
        radial-gradient(circle at top right, rgba(192,57,43,0.13), transparent 34%),
        linear-gradient(180deg, rgba(22,26,41,0.98) 0%, rgba(15,18,29,0.98) 100%);
      box-shadow: 0 24px 60px rgba(0,0,0,0.34);
    }
    .consent-banner[hidden] {
      display: none;
    }
    .consent-banner p {
      margin: 10px 0 18px;
    }
    footer {
      border-top: 1px solid var(--line);
      background: rgba(13,16,27,0.95);
    }
    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 26px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 14px;
      font-size: 13px;
      color: var(--muted);
    }
    .footer-inner a {
      color: var(--muted);
      text-decoration: none;
      margin-left: 12px;
    }
    .footer-inner a:hover { color: #fff; }
    @media (max-width: 820px) {
      nav { display: none; }
      .hero { padding-top: 62px; }
      .footer-inner a { margin-left: 0; margin-right: 12px; }
    }
