@font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('/assets/fonts/inter-400.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 600;
      font-display: swap;
      src: url('/assets/fonts/inter-600.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Noto Sans KR';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('/assets/fonts/noto-sans-kr-400.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Noto Sans KR';
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url('/assets/fonts/noto-sans-kr-700.woff2') format('woff2');
    }
    @font-face {
      font-family: 'JetBrains Mono';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('/assets/fonts/jetbrains-mono-400.woff2') format('woff2');
    }
    :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --primary-light: #60a5fa;
      --bg: #f8fafc;
      --bg-light: #eff6ff;
      --glass-bg: rgba(255, 255, 255, 0.7);
      --glass-border: rgba(255, 255, 255, 0.5);
      --text: #0f172a;
      --text-light: #64748b;
      --border: #e2e8f0;
      --success: #10b981;
      --warning: #f59e0b;
      --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .fade-in {
      animation: fadeIn 0.5s ease-out forwards;
    }

    .stagger-1 { animation-delay: 0.1s; }
    .stagger-2 { animation-delay: 0.2s; }
    .stagger-3 { animation-delay: 0.3s; }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans KR', sans-serif;
      background: var(--bg);
      background-image: 
        radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(96, 165, 250, 0.05) 0px, transparent 50%);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
    }
    
    .container {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    header {
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--glass-border);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    
    header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .logo {
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--text);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      letter-spacing: -0.04rem;
    }
    
    .logo-text {
      background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .logo-tagline {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-light);
      letter-spacing: 0.01rem;
    }
    @media (max-width: 600px) {
      .logo { gap: 0.25rem; }
      .logo-tagline { display: none; }
    }
    
    .logo:hover {
      opacity: 0.85;
    }
    
    .logo-icon {
      color: var(--primary);
      width: 22px;
      height: 22px;
    }
    
    .lang-switch {
      padding: 0.375rem 0.75rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-light);
      text-decoration: none;
      border: 1px solid var(--border);
      border-radius: 6px;
      transition: all 0.2s;
    }
    
    .lang-switch:hover {
      color: var(--primary);
      border-color: var(--primary);
      background: #eff6ff;
    }

    .header-link:hover {
      color: var(--primary) !important;
    }
    
    main {
      padding: 2rem 0;
    }
    
    .search-form {
      margin-bottom: 2.5rem;
    }
    
    .search-form label {
      display: block;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.75rem;
      padding-left: 0.5rem;
    }
    
    .search-input-bar {
      background: var(--glass-bg);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 6px;
      border-radius: 20px;
      border: 1px solid var(--glass-border);
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      width: 100%;
      height: 64px;
    }
    
    .search-form:focus-within .search-input-bar {
      background: white;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), var(--shadow-lg);
    }
    
    .search-input-group {
      display: flex;
      align-items: center;
      gap: 0;
      width: 100%;
      height: 100%;
    }
    
    .search-input-group input {
      flex: 1;
      min-width: 0;
      height: 100%;
      padding: 0 1.25rem;
      border: none !important;
      background: transparent !important;
      font-size: 1rem;
      font-weight: 500;
      box-shadow: none !important;
      outline: none;
    }
    
    .search-input-group input:focus {
      outline: none;
    }
    
    .search-input-group button {
      padding: 0 1.5rem;
      height: 100%;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 14px;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
      flex-shrink: 0;
    }
    
    .search-input-group button:hover {
      background: var(--primary-dark);
      transform: scale(1.02);
    }

    .home-search {
      height: 72px;
      padding: 8px;
    }
    
    .home-search input {
      font-size: 1.15rem !important;
    }
    
    .home-search button {
      font-size: 1.1rem !important;
      padding: 0 2.5rem !important;
    }

    @media (max-width: 520px) {
      .home-search {
        height: 60px;
        padding: 6px;
      }
    }

    @media (max-width: 640px) {
      .home-hero {
        text-align: left;
      }
      .home-hero .home-tags {
        justify-content: flex-start;
      }
    }

    .results-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }
    
    .results-count {
      color: var(--text-light);
      font-size: 0.9rem;
    }
    
    .results-source {
      font-size: 0.8rem;
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
      background: #e0f2fe;
      color: #0369a1;
    }
    
    .results-source.fallback {
      background: #fef3c7;
      color: #92400e;
    }
    
    .address-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    
    .address-card {
      background: var(--glass-bg);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      border-radius: 20px;
      border: 1px solid var(--glass-border);
      box-shadow: var(--shadow-md);
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      overflow: hidden;
    }
    
    .address-card:hover {
      border-color: var(--primary-light);
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px) scale(1.01);
    }
    
    .card-body {
      padding: 2rem;
    }
    
    .addr-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.25rem;
      gap: 1rem;
    }
    
    .addr-eng-wrapper {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      align-items: flex-start;
    }
    
    .addr-english {
      font-size: 1.35rem;
      font-weight: 800;
      color: #0f172a;
      line-height: 1.3;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      margin: 0;
      letter-spacing: -0.02em;
    }
    
    .zip-badge {
      display: inline-flex;
      align-items: center;
      padding: 2px 8px;
      background-color: #f1f5f9;
      color: #475569;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: 0.02em;
      border: 1px solid #e2e8f0;
    }
    
    .divider {
      height: 1px;
      background: #f1f5f9;
      margin-bottom: 1.25rem;
    }
    
    .addr-korean-group {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .addr-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 0;
      border-bottom: 1px solid #f1f5f9;
    }
    .addr-row:last-child { border-bottom: none; }
    
    .addr-details {
      margin-top: 0;
    }
    
    .addr-detail {
      color: #94a3b8;
      font-size: 0.9rem;
    }
    
    .copy-icon-btn {
      background: transparent;
      border: none;
      color: #94a3b8;
      padding: 0.4rem;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    
    .copy-icon-btn:hover {
      background: #f1f5f9;
      color: var(--primary);
    }
    
    .copy-icon-btn.small {
      padding: 0.25rem;
      color: #cbd5e1;
    }
    
    .copy-icon-btn.small:hover {
      color: #64748b;
    }
    
    .copy-icon-btn.copied {
      background: #f0fdf4;
    }

    .shipping-section {
      background: white;
      border-radius: 16px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      margin-top: 1.5rem;
    }
    .shipping-header {
      padding: 1.25rem 1.75rem;
      font-size: 0.95rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .shipping-summary-preview {
      font-size: 0.8rem;
      font-weight: 400;
      color: #94a3b8;
      margin-left: 0.5rem;
    }
    .shipping-body {
      padding: 0 1.75rem 1.75rem;
      border-top: 1px solid #f1f5f9;
    }
    .addr-eng-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 0;
      border-bottom: 1px solid #f1f5f9;
    }
    .addr-eng-row:last-child { border-bottom: none; }
    .addr-eng-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: #64748b;
      min-width: 115px;
    }
    .addr-eng-value { flex: 1; font-size: 0.95rem; color: #1e293b; }
    .unit-input-row {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.5rem 0;
      border-bottom: 1px solid #f1f5f9;
    }
    .unit-input-wrap { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
    .unit-input {
      flex: 1;
      max-width: 280px;
      padding: 0.4rem 0.6rem;
      font-size: 0.9rem;
      border: 1px solid #e2e8f0;
      border-radius: 6px;
      font-family: inherit;
    }
    .unit-input:focus { outline: none; border-color: var(--primary); }
    .unit-hint { font-size: 0.7rem; color: #94a3b8; }

    .addr-extra-info {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      padding-top: 1rem;
      margin-top: 0.75rem;
      border-top: 1px solid #f1f5f9;
    }
    
    .info-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.25rem 0.625rem;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 6px;
      font-size: 0.8rem;
      color: #64748b;
    }
    
    .info-tag .tag-label {
      font-weight: 600;
      color: #94a3b8;
      font-size: 0.7rem;
    }

    .map-container {
      background: white;
      padding: 1.5rem;
      border-radius: 16px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    
    .map-container iframe {
      display: block;
      width: 100%;
      border: 0;
      border-radius: 12px;
    }

    .warning-banner {
      background: #fffbeb;
      border: 1px solid #fef3c7;
      color: #92400e;
      padding: 1rem 1.25rem;
      border-radius: 12px;
      margin-bottom: 2rem;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    
    .no-results {
      text-align: center;
      padding: 4rem 1rem;
      color: var(--text-light);
    }
    
    @media (max-width: 640px) {
      .addr-eng-wrapper {
        align-items: flex-start; /* 모바일에서도 왼쪽 정렬 유지 */
      }
      
      .addr-english {
        font-size: 1.1rem;
      }
      
      .addr-row {
        gap: 0.5rem;
        font-size: 0.9rem;
      }
      
      .addr-type {
        width: 40px;
        font-size: 0.7rem;
      }
    }

    .adsense-area {
      margin: 2.5rem 0;
      min-height: 100px;
      background: #f8fafc;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: #94a3b8;
      border: 1px dashed #cbd5e1;
    }

    .copy-toast {
      position: fixed;
      top: 0;
      left: 50%;
      transform: translate(-50%, -100%);
      z-index: 9999;
      padding: 0.75rem 1.25rem;
      background: var(--text, #1e293b);
      color: #fff;
      font-size: 0.9rem;
      font-weight: 500;
      border-radius: 0.5rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      transition: transform 0.25s ease-out, opacity 0.2s ease-out;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
    }
    .copy-toast.show {
      transform: translate(-50%, 1rem);
      opacity: 1;
      visibility: visible;
    }
    
    .copy-all-btn:hover {
      background: #1d4ed8 !important;
    }
    
    .stories-banner-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px -2px rgba(37,99,235,0.1);
    }
    
    #error-reload-btn:hover {
      background: #1d4ed8 !important;
    }
    
    .error-home-link:hover {
      background: #eff6ff !important;
      border-color: #1d4ed8 !important;
    }
    
    .landmark-link:hover {
      border-color: var(--primary-light) !important;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md) !important;
      background: var(--bg-light) !important;
    }
    
    .btn-primary {
      background: var(--primary);
      color: white !important;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 1.75rem;
      border-radius: 14px;
      font-weight: 800;
      font-size: 1rem;
      transition: all 0.2s ease;
      box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.25);
      border: none;
      cursor: pointer;
    }
    
    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 15px -3px rgba(37, 99, 235, 0.3);
      color: white !important;
    }

    /* ── 홈 주소 가이드 탭 (address-guide.ts) ── */
    .address-guide {
      margin-top: 2.5rem;
      padding: 2rem;
      background: white;
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    }
    .ag-heading {
      font-size: 1.35rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 1.5rem;
      color: var(--text);
    }
    .ag-tab-list {
      display: flex;
      gap: 0.25rem;
      border-bottom: 2px solid var(--border);
      margin-bottom: 1.5rem;
      overflow-x: auto;
    }
    .ag-tab {
      padding: 0.6rem 1.1rem;
      border: none;
      background: transparent;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-light);
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      white-space: nowrap;
      transition: color 0.2s, border-color 0.2s;
      border-radius: 0;
    }
    .ag-tab--active,
    .ag-tab:hover {
      color: var(--primary);
      border-bottom-color: var(--primary);
    }
    .ag-tab-content {
      color: var(--text);
      line-height: 1.85;
      font-size: 0.95rem;
    }
    .ag-panel p { margin-bottom: 0.9rem; }
    .ag-panel ul { margin: 0.5rem 0 0.9rem 1.4rem; }
    .ag-panel li { margin-bottom: 0.35rem; }
    .ag-panel strong { color: var(--text); }
    .example-box {
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0.9rem 1.1rem;
      margin: 0.75rem 0;
      font-size: 0.9rem;
      line-height: 1.75;
    }
    /* ── Featured Articles ─────────────────────────────── */
    .featured-articles { margin: 3rem 0 1.5rem; }
    .fa-heading { font-size: 1.25rem; font-weight: 800; margin-bottom: 1.25rem; color: var(--text); }
    .fa-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
    @media (min-width: 640px) { .fa-grid { grid-template-columns: repeat(3, 1fr); } }
    .fa-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; display: flex; flex-direction: column; transition: box-shadow 0.2s; }
    .fa-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    .fa-date { font-size: 0.78rem; color: var(--text-light); margin: 0 0 0.4rem; }
    .fa-title { font-size: 0.97rem; font-weight: 700; margin: 0 0 0.6rem; line-height: 1.4; }
    .fa-title a { color: var(--text); text-decoration: none; }
    .fa-title a:hover { color: var(--primary); }
    .fa-desc { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; flex: 1; margin: 0 0 0.9rem; }
    .fa-link { font-size: 0.85rem; font-weight: 600; color: var(--primary); text-decoration: none; }
    .fa-footer { margin-top: 1rem; text-align: right; }
    .fa-all-link { font-size: 0.9rem; font-weight: 600; color: var(--primary); text-decoration: none; }
    /* ── Featured Stories ──────────────────────────────── */
    .featured-stories { margin: 2rem 0; }
    .fs-heading { font-size: 1.25rem; font-weight: 800; margin-bottom: 1.25rem; color: var(--text); }
    .fs-grid { display: flex; flex-direction: column; gap: 1rem; }
    @media (min-width: 640px) { .fs-grid { display: grid; grid-template-columns: repeat(3, 1fr); } }
    .fs-card { background: white; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s; }
    .fs-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    .fs-img-wrap { flex: 0 0 auto; height: 140px; overflow: hidden; background: #f8fafc; }
    .fs-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .fs-body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
    .fs-title { font-size: 0.95rem; font-weight: 700; margin: 0 0 0.5rem; line-height: 1.4; }
    .fs-title a { color: var(--text); text-decoration: none; }
    .fs-title a:hover { color: var(--primary); }
    .fs-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; flex: 1; margin: 0 0 0.75rem; }
    .fs-link { font-size: 0.85rem; font-weight: 600; color: var(--primary); text-decoration: none; }
    .fs-footer { margin-top: 1rem; text-align: right; }
    .fs-all-link { font-size: 0.9rem; font-weight: 600; color: var(--primary); text-decoration: none; }
    /* ── FAQ Block ─────────────────────────────────────── */
    .faq-block { margin: 2.5rem 0; }
    .faq-heading { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; color: var(--text); }
    .faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 0.6rem; overflow: hidden; }
    .faq-q { display: block; padding: 0.85rem 1rem; cursor: pointer; font-weight: 600; font-size: 0.95rem; background: #f8fafc; list-style: none; }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::before { content: '+ '; color: var(--primary); font-weight: 700; }
    details[open] .faq-q::before { content: '− '; }
    .faq-a { padding: 0.85rem 1rem; font-size: 0.93rem; line-height: 1.7; color: var(--text); border-top: 1px solid var(--border); }
    .faq-a p { margin: 0; }
    /* ── Related Articles ──────────────────────────────── */
    .related-articles { margin: 2rem 0; padding: 1.25rem; background: #f8fafc; border-radius: 10px; border: 1px solid var(--border); }
    .related-heading { font-size: 1rem; font-weight: 700; margin: 0 0 0.75rem; color: var(--text); }
    .related-articles ul { margin: 0; padding-left: 1.25rem; }
    .related-articles li { margin-bottom: 0.4rem; font-size: 0.92rem; }
    .related-articles a { color: var(--primary); text-decoration: none; font-weight: 500; }
    .related-articles a:hover { text-decoration: underline; }

/* ===== home stats ===== */
.sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0,0,0,0);
        border: 0;
      }
      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
      }
      @keyframes slideUpFade {
        from { opacity: 0; transform: translateY(8px); }
        to { opacity: 1; transform: translateY(0); }
      }
      .home-tag {
        color: var(--text-light);
        text-decoration: none;
        padding: 0.25rem 0.5rem;
        border-radius: 6px;
        background: var(--border);
        transition: color 0.2s, background 0.2s;
      }
      .home-tag:hover {
        color: var(--primary);
        background: #e0f2fe;
      }
      /* Rotating Ticker Styles */
      .home-ticker-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.6rem 1.25rem;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 999px;
        text-decoration: none;
        color: var(--text);
        font-weight: 500;
        box-shadow: 0 1px 2px rgba(0,0,0,0.03);
        transition: transform 0.2s, box-shadow 0.2s;
        white-space: nowrap;
        animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .home-ticker-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.08);
        border-color: #cbd5e1;
      }
      .ticker-badge {
        background: var(--primary); /* Blue to match site theme */
        color: white;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 0.15rem 0.5rem;
        border-radius: 99px;
        white-space: nowrap;
      }
      .ticker-rank {
        font-weight: 800;
        color: var(--primary);
        font-size: 1rem;
      }
      .ticker-change.up {
        color: #ef4444;
        font-weight: 700;
        font-size: 0.85rem;
      }
      .ticker-change.down {
        color: #3b82f6;
        font-weight: 700;
        font-size: 0.85rem;
      }
      .ticker-change.new {
        color: #ef4444;
        font-weight: 700;
        font-size: 0.75rem;
      }
      
      /* Ranking Slider Styles */
      .ranking-slider {
        scroll-behavior: smooth;
      }
      .ranking-slider::-webkit-scrollbar {
        height: 6px;
      }
      .ranking-slider::-webkit-scrollbar-track {
        background: transparent;
      }
      .ranking-slider::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 3px;
      }
      .ranking-slider::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
      }
      .region-slide {
        min-width: 100%;
      }
      
      /* Stories Banner Link Hover */
      .stories-banner-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px -2px rgba(37,99,235,0.1);
      }
      
      /* Ranking Item Hover Effects */
      .ranking-item:hover {
        background: #f8fafc;
        transform: translateX(4px);
        border-bottom-color: #e2e8f0;
      }
      
      /* Copy All Button Hover */
      .copy-all-btn:hover {
        background: #1d4ed8 !important;
      }
      
      /* Mobile Responsive Styles */
      @media (max-width: 640px) {
        .site-stats-bar {
          gap: 1.5rem !important;
          padding: 0 1rem;
        }
        .stat-item {
          min-width: 0 !important;
          flex: 1 1 calc(50% - 0.75rem) !important;
          max-width: calc(50% - 0.75rem);
        }
        .stats-divider {
          display: none !important;
        }
        #today-v, #total-v {
          font-size: 1.1rem !important;
          max-width: 100%;
        }
        #today-v-inc, #total-v-inc {
          font-size: 0.75rem !important;
        }
        .home-ticker-item {
          gap: 0.5rem;
          padding: 0.5rem 1rem;
          font-size: 0.85rem;
        }
        .ticker-rank {
          font-size: 0.9rem;
        }
        .ticker-badge {
          font-size: 0.65rem;
          padding: 0.1rem 0.4rem;
        }
        .ticker-change {
          font-size: 0.75rem !important;
        }
        .ranking-item {
          padding: 0.6rem 0.75rem !important;
        }
        .ranking-slider {
          padding-left: 1rem !important;
          padding-right: 1rem !important;
        }
      }
      
      @media (max-width: 480px) {
        .site-stats-bar {
          gap: 1rem !important;
          flex-direction: column !important;
        }
        .stat-item {
          flex: 1 1 100% !important;
          max-width: 100% !important;
          width: 100% !important;
        }
        .stats-divider {
          display: block !important;
          width: 100% !important;
          height: 1px !important;
          margin: 0.5rem 0 !important;
        }
        #today-v, #total-v {
          font-size: 1rem !important;
        }
      }
