 /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Nunito', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; }
    ul { list-style: none; }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

    /* ===== HEADER / NAV ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 0 24px;
    }
    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      gap: 16px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .logo img {
      height: 48px;
      width: auto;
      border-radius: 8px;
    }
    .logo-text {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      background: linear-gradient(135deg, var(--orange), var(--yellow));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
    }
    .logo-sub {
      font-size: 0.65rem;
      color: var(--text-muted);
      display: block;
      font-weight: 500;
      -webkit-text-fill-color: var(--text-muted);
    }
    nav.main-nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    nav.main-nav a {
      padding: 8px 14px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.875rem;
      color: var(--text-muted);
      transition: all 0.2s;
    }
    nav.main-nav a:hover { background: var(--bg3); color: var(--white); }
    .btn-publish {
      background: linear-gradient(135deg, var(--orange), #ff9800);
      color: var(--white) !important;
      padding: 10px 20px !important;
      border-radius: 50px !important;
      font-weight: 700 !important;
      font-size: 0.875rem !important;
      box-shadow: 0 4px 16px rgba(255,111,0,0.35);
      transition: transform 0.2s, box-shadow 0.2s !important;
    }
    .btn-publish:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255,111,0,0.5) !important;
      background: linear-gradient(135deg, #ff9800, var(--orange)) !important;
    }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      background: var(--bg3);
      border: 1px solid var(--border);
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 12px 24px 20px;
    }
    .mobile-menu a {
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-weight: 600;
      color: var(--text);
      font-size: 0.95rem;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu.open { display: flex; }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(160deg, #0d1117 0%, #0f1923 40%, #12151e 100%);
      padding: 80px 24px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(255,111,0,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--orange), var(--yellow), var(--green), var(--blue), transparent);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,111,0,0.12);
      border: 1px solid rgba(255,111,0,0.3);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--orange-light);
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.15;
      max-width: 800px;
      margin: 0 auto 20px;
    }
    .hero h1 span { color: var(--orange); }
    .hero p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--text-muted);
      max-width: 580px;
      margin: 0 auto 36px;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--orange), #ff9800);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      box-shadow: 0 6px 24px rgba(255,111,0,0.4);
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      border: none;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(255,111,0,0.55); }
    .btn-secondary {
      background: transparent;
      color: var(--text);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      border: 1.5px solid var(--border);
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }
    .btn-secondary:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,111,0,0.05); }

    /* ===== STATS BAR ===== */
    .stats-bar {
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      padding: 20px 24px;
    }
    .stats-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .stat {
      text-align: center;
    }
    .stat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--orange);
    }
    .stat-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 600;
    }

    /* ===== SECTION WRAPPER ===== */
    .section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 60px 24px;
    }
    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-sub {
      color: var(--text-muted);
      margin-bottom: 32px;
      font-size: 0.95rem;
    }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 32px;
    }
    .see-all {
      font-weight: 700;
      font-size: 0.875rem;
      color: var(--orange);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .see-all:hover { gap: 10px; }

    /* ===== REGIONS GRID ===== */
    .regions-section {
      background: var(--bg2);
      padding: 60px 24px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .regions-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .regions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
    }
    .region-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      padding: 28px 20px;
      border-radius: var(--radius);
      border: 1.5px solid var(--border);
      background: var(--card-bg);
      cursor: pointer;
      transition: all 0.3s;
      text-align: center;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      color: var(--text);
    }
    .region-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--rc-color, var(--orange));
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }
    .region-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--rc-color, var(--orange)); }
    .region-card:hover::before { transform: scaleX(1); }
    .region-card:hover .region-icon { transform: scale(1.15); }
    .region-icon {
      font-size: 2.8rem;
      transition: transform 0.3s;
      line-height: 1;
    }
    .region-name {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
    }
    .region-count {
      font-size: 0.78rem;
      color: var(--text-muted);
      background: rgba(255,255,255,0.06);
      padding: 3px 10px;
      border-radius: 50px;
    }

    /* ===== PUBLICATIONS ===== */
    .publications-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .pub-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .pub-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--pub-color, var(--orange));
      border-radius: 4px 0 0 4px;
    }
    .pub-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-2px); box-shadow: var(--shadow); }
    .pub-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }
    .pub-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .pub-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1rem;
      flex-shrink: 0;
      color: white;
    }
    .pub-author-info { line-height: 1.3; }
    .pub-author-name { font-weight: 700; font-size: 0.9rem; }
    .pub-date { font-size: 0.78rem; color: var(--text-muted); }
    .pub-region-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 700;
      border: 1px solid currentColor;
      white-space: nowrap;
    }
    .pub-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.4;
      cursor: pointer;
      transition: color 0.2s;
    }
    .pub-title:hover { color: var(--orange); }
    .pub-body {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .pub-video {
      border-radius: var(--radius-sm);
      overflow: hidden;
      margin-bottom: 16px;
      background: #000;
      aspect-ratio: 16/9;
    }
    .pub-video iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    .pub-video-thumb {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: var(--radius-sm);
      margin-bottom: 16px;
      cursor: pointer;
      position: relative;
    }
    .pub-footer {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .pub-action {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      padding: 6px 12px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: transparent;
      transition: all 0.2s;
    }
    .pub-action:hover { background: var(--bg3); color: var(--text); border-color: rgba(255,255,255,0.15); }
    .pub-action.respond:hover { color: var(--orange); border-color: var(--orange); background: rgba(255,111,0,0.07); }
    .pub-action.like.active { color: var(--red); border-color: var(--red); background: rgba(229,57,53,0.07); }
    .pub-expand { margin-left: auto; font-size: 0.82rem; color: var(--orange); font-weight: 700; cursor: pointer; }
    .pub-expand:hover { text-decoration: underline; }

    /* Comment section inside card */
    .pub-comments {
      display: none;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }
    .pub-comments.open { display: block; }
    .comment {
      display: flex;
      gap: 10px;
      margin-bottom: 16px;
    }
    .comment-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.75rem;
      flex-shrink: 0;
      color: white;
    }
    .comment-body {
      background: var(--bg3);
      border-radius: 0 12px 12px 12px;
      padding: 12px 16px;
      flex: 1;
    }
    .comment-name { font-weight: 700; font-size: 0.82rem; margin-bottom: 4px; }
    .comment-text { font-size: 0.87rem; color: var(--text-muted); }
    .comment-date { font-size: 0.72rem; color: var(--text-muted); margin-top: 6px; }
    .comment-form {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-top: 12px;
    }
    .comment-form textarea {
      flex: 1;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 16px;
      color: var(--text);
      font-family: 'Nunito', sans-serif;
      font-size: 0.87rem;
      resize: none;
      rows: 2;
      transition: border-color 0.2s;
      min-height: 52px;
    }
    .comment-form textarea:focus { outline: none; border-color: var(--orange); }
    .comment-form button {
      background: var(--orange);
      color: white;
      border: none;
      border-radius: 10px;
      padding: 12px 18px;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .comment-form button:hover { background: var(--orange-light); }

    /* ===== MODAL ===== */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(6px);
      z-index: 999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      width: 100%;
      max-width: 580px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      animation: slideUp 0.3s ease;
    }
    @keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--bg3);
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    .modal-close:hover { background: var(--red); border-color: var(--red); }
    .modal h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .modal p.modal-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 16px;
      color: var(--text);
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem;
      transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { outline: none; border-color: var(--orange); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group select option { background: var(--bg2); }
    .form-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--orange), #ff9800);
      color: white;
      border: none;
      border-radius: 12px;
      padding: 14px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s;
      font-family: 'Nunito', sans-serif;
    }
    .form-submit:hover { box-shadow: 0 6px 24px rgba(255,111,0,0.4); transform: translateY(-1px); }
    .video-options {
      display: flex;
      gap: 10px;
      margin-bottom: 16px;
    }
    .video-tab {
      flex: 1;
      padding: 10px;
      border-radius: 10px;
      border: 1.5px solid var(--border);
      background: var(--bg3);
      color: var(--text-muted);
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      text-align: center;
      transition: all 0.2s;
    }
    .video-tab.active { border-color: var(--orange); color: var(--orange); background: rgba(255,111,0,0.07); }

    /* ===== SIDEBAR ===== */
    .main-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 32px;
      max-width: 1280px;
      margin: 0 auto;
      padding: 60px 24px;
      align-items: start;
    }
    .sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 24px; }
    .sidebar-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
    }
    .sidebar-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
    }
    .quick-regions { display: flex; flex-direction: column; gap: 8px; }
    .quick-region {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--bg3);
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      color: var(--text);
    }
    .quick-region:hover { border-color: var(--qr-color, var(--orange)); background: rgba(255,255,255,0.04); }
    .quick-region-icon { font-size: 1.3rem; }
    .quick-region-name { font-weight: 600; font-size: 0.875rem; flex: 1; }
    .quick-region-count { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
    .tips-list { display: flex; flex-direction: column; gap: 10px; }
    .tip {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    .tip-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--black);
      border-top: 1px solid var(--border);
      padding: 60px 24px 30px;
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }
    .footer-brand img { height: 52px; margin-bottom: 16px; border-radius: 8px; }
    .footer-brand p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
    .footer-col h4 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--orange);
      margin-bottom: 16px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      color: var(--text-muted);
      font-size: 0.875rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--orange); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: gap;
      gap: 16px;
    }
    .footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
    .footer-rainbow {
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple), var(--pink));
      margin-bottom: 0;
      border-radius: 0 0 4px 4px;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
    .pub-card { animation: fadeIn 0.4s ease both; }
    .pub-card:nth-child(1) { animation-delay: 0.05s; }
    .pub-card:nth-child(2) { animation-delay: 0.1s; }
    .pub-card:nth-child(3) { animation-delay: 0.15s; }
    .pub-card:nth-child(4) { animation-delay: 0.2s; }
    .pub-card:nth-child(5) { animation-delay: 0.25s; }
    .region-card { animation: fadeIn 0.4s ease both; }
    .region-card:nth-child(1) { animation-delay: 0.05s; }
    .region-card:nth-child(2) { animation-delay: 0.1s; }
    .region-card:nth-child(3) { animation-delay: 0.15s; }
    .region-card:nth-child(4) { animation-delay: 0.2s; }
    .region-card:nth-child(5) { animation-delay: 0.25s; }
    .region-card:nth-child(6) { animation-delay: 0.3s; }
    .region-card:nth-child(7) { animation-delay: 0.35s; }
    .region-card:nth-child(8) { animation-delay: 0.4s; }
    .region-card:nth-child(9) { animation-delay: 0.45s; }
    .region-card:nth-child(10) { animation-delay: 0.5s; }

    /* ===== TOAST ===== */
    .toast {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: var(--bg2);
      border: 1px solid var(--orange);
      border-radius: 12px;
      padding: 14px 20px;
      font-weight: 600;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 9999;
      transform: translateY(100px);
      opacity: 0;
      transition: all 0.3s;
      box-shadow: var(--shadow);
    }
    .toast.show { transform: translateY(0); opacity: 1; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .main-layout { grid-template-columns: 1fr; }
      .sidebar { position: static; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      nav.main-nav { display: none; }
      .hamburger { display: flex; }
      .hero { padding: 60px 20px 48px; }
      .regions-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr; gap: 28px; }
      .form-row { grid-template-columns: 1fr; }
      .pub-header { flex-direction: column; align-items: flex-start; }
      .stats-inner { gap: 24px; }
    }
    @media (max-width: 480px) {
      .regions-grid { grid-template-columns: repeat(2, 1fr); }
      .modal { padding: 24px 20px; }
      .hero-actions { flex-direction: column; align-items: center; }
      .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    }