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

  :root {
    --bg:        #070B14;
    --surface:   #101827;
    --surface2:  #162033;
    --border:    #1E2D47;
    --border2:   #243149;
    --text:      #EAF0FF;
    --muted:     #9AA7BD;
    --dim:       #576880;
    --cyan:      #38BDF8;
    --violet:    #A78BFA;
    --green:     #22C55E;
    --amber:     #F59E0B;
    --red:       #EF4444;
    --lime:      #84CC16;
    --nav-bg:    #0D1525;
    --footer-bg: #060C18;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 13px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  a { text-decoration: none; color: inherit; }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ── NAV (shared) ── */
  .nav {
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
  }
  .nav-logo i { font-size: 18px; }
  .nav-links { display: flex; gap: 2px; }
  .nav-link {
    font-size: 11px;
    color: var(--muted);
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: color .15s, background .15s;
    font-weight: 500;
  }
  .nav-link:hover { color: var(--text); background: var(--surface2); }
  .nav-link.active { color: var(--cyan); background: var(--surface2); }
  .nav-right { display: flex; align-items: center; gap: 8px; }
  .nav-search-form {
    width: 184px;
    height: 30px;
    background: var(--surface2);
    border: 1px solid var(--border2);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 30px;
    align-items: center;
    overflow: hidden;
    transition: border-color .15s, background .15s, box-shadow .15s;
  }
  .nav-search-form:focus-within {
    border-color: rgba(56,189,248,0.58);
    background: var(--surface);
    box-shadow: 0 0 0 2px rgba(56,189,248,0.08);
  }
  .nav-search-input {
    width: 100%;
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    padding: 0 8px 0 10px;
  }
  .nav-search-input::placeholder { color: var(--dim); }
  .nav-search-btn {
    width: 30px;
    height: 30px;
    border: 0;
    border-left: 1px solid rgba(36,49,73,0.72);
    background: transparent;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: color .15s, background .15s;
  }
  .nav-search-btn:hover { color: var(--cyan); background: rgba(56,189,248,0.06); }

  /* ── PAGE LAYOUT ── */
  .page-wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

  /* ── BREADCRUMB (shared) ── */
  .breadcrumb {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    padding-top: 16px;
  }
  .breadcrumb i { font-size: 10px; color: var(--border2); }
  .breadcrumb a { color: var(--muted); transition: color .15s; }
  .breadcrumb a:hover { color: var(--cyan); }
  .breadcrumb-cur { color: var(--cyan); }

  /* ── ABOUT HERO ── */
  .about-hero {
    padding: 6px 0 26px;
    border-bottom: 1px solid var(--surface2);
    margin-bottom: 26px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
    align-items: center;
  }
  .about-kicker-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
  .about-kicker {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--cyan);
  }
  .about-freshness {
    font-size: 10px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px 10px;
  }
  .about-freshness b { color: var(--text); font-weight: 600; }
  .about-title {
    font-family: 'Syne', sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .about-title em { color: var(--cyan); font-style: normal; }
  .about-lede {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
  }
  .about-hero-shots {
    position: relative;
    height: 190px;
  }
  .about-shot {
    position: absolute;
    width: 62%;
    aspect-ratio: 16/10;
    border-radius: 10px;
    border: 1px solid var(--border2);
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  }
  .about-shot-1 { top: 0; left: 0; z-index: 2; }
  .about-shot-2 { bottom: 0; right: 0; z-index: 1; opacity: 0.85; }

  /* ── SECTION HEADING (shared pattern) ── */
  .section-h {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    padding-bottom: 7px;
    border-bottom: 1px solid var(--surface2);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .section-h::before {
    content: '';
    width: 3px; height: 16px;
    background: var(--cyan);
  }
  .section-p { font-size: 12px; color: var(--muted); line-height: 1.8; }
  .about-section { margin-bottom: 30px; }

  /* ── COVERAGE GRID ── */
  .cover-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }
  .cover-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--cc-color, var(--border2));
    border-radius: 8px;
    padding: 14px;
    transition: transform .15s, background .15s;
    display: block;
  }
  .cover-card:hover { transform: translateY(-2px); background: var(--surface2); }
  .cover-card-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
  .cover-card-desc { font-size: 11px; color: var(--muted); line-height: 1.65; }
  .cover-card-link { font-size: 10.5px; color: var(--cc-color, var(--cyan)); margin-top: 10px; font-weight: 600; }
  .cc-games  { --cc-color: var(--cyan); }
  .cc-codes  { --cc-color: var(--green); }
  .cc-guides { --cc-color: var(--violet); }
  .cc-news   { --cc-color: var(--amber); }

  /* ── RECENTLY COVERED STRIP ── */
  .recent-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .recent-empty {
    font-size: 11.5px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    grid-column: 1 / -1;
  }
  .recent-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: border-color .15s;
  }
  .recent-card:hover { border-color: var(--cyan); }
  .recent-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
  }
  .recent-body { padding: 10px 12px 12px; }
  .recent-tag { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
  .rt-codes  { color: var(--green); }
  .rt-guide  { color: var(--violet); }
  .rt-news   { color: var(--cyan); }
  .rt-game   { color: var(--amber); }
  .recent-title { font-size: 11.5px; color: var(--text); line-height: 1.4; }

  /* ── AUTHOR BOX ── */
  .author-box {
    display: flex;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
  }
  .author-box-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--cyan), #1B6E96);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #062231;
  }
  .author-box-avatar img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }
  .author-box-body { min-width: 0; flex: 1; }
  .author-box-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); }
  .author-box-role {
    font-size: 10px;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 2px;
  }
  .author-box-bio { font-size: 12px; color: var(--muted); line-height: 1.75; margin-top: 9px; }
  .author-box-links { display: flex; align-items: center; gap: 12px; margin-top: 11px; flex-wrap: wrap; }
  .author-box-link {
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan);
  }
  .author-box-link:hover { text-decoration: underline; }
  .author-box-sep { color: var(--border2); font-size: 11px; }
  .team-grid { display: flex; flex-direction: column; gap: 10px; }

  /* ── FAQ (native details/summary, no JS needed) ── */
  .faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 6px;
    overflow: hidden;
    background: var(--surface);
  }
  .faq-item summary {
    font-size: 12px;
    color: #C8D8EC;
    font-weight: 500;
    padding: 12px 14px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 15px;
    color: var(--cyan);
    flex-shrink: 0;
    transition: transform .18s ease;
    font-weight: 400;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item-a {
    font-size: 11.5px;
    color: var(--muted);
    padding: 0 14px 13px;
    line-height: 1.7;
  }

  /* ── CONTACT CTA ── */
  .cta-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .cta-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 5px; }
  .cta-desc { font-size: 11.5px; color: var(--muted); max-width: 420px; line-height: 1.6; }
  .cta-actions { display: flex; gap: 8px; flex-wrap: wrap; }
  .cta-btn {
    font-size: 11.5px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    transition: filter .15s, background .15s, color .15s, border-color .15s;
    white-space: nowrap;
  }
  .cta-btn-primary { background: var(--cyan); color: #051019; }
  .cta-btn-primary:hover { filter: brightness(1.08); }
  .cta-btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border2); }
  .cta-btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

  /* ── FOOTER (shared) ── */
  .footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--surface2);
    margin-top: 40px;
    padding: 28px 0 0;
  }
  .footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 0.9fr 0.9fr 0.9fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .footer-logo i { font-size: 17px; }
  .footer-desc { font-size: 11px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
  .footer-col-title {
    font-size: 10px; font-weight: 600; color: var(--text);
    text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px;
  }
  .footer-link {
    font-size: 11px; color: var(--muted);
    display: block; margin-bottom: 6px; cursor: pointer;
    transition: color .15s;
  }
  .footer-link:hover { color: var(--cyan); }
  .footer-bottom {
    border-top: 1px solid var(--surface2);
    padding: 12px 0;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 8px;
  }
  .footer-copy { font-size: 10px; color: var(--dim); }
  .footer-legal { display: flex; gap: 14px; flex-wrap: wrap; }
  .footer-disclaimer { padding: 12px 0 20px; border-top: 1px solid rgba(26,40,64,0.5); }
  .disclaimer-text { font-size: 10px; color: #3A4A60; line-height: 1.65; }

  .site-brand-logo { width: 22px; height: 22px; object-fit: contain; display: block; flex: 0 0 auto; }
  .footer-logo .site-brand-logo { width: 21px; height: 21px; }

  /* ── RESPONSIVE ── */
  @media (max-width: 760px) {
    .nav {
      height: auto;
      padding: 8px 0;
    }
    .nav .page-wrap {
      flex-wrap: wrap;
      gap: 8px;
      padding: 0 12px !important;
    }
    .nav-logo { font-size: 16px; }
    .nav-right { margin-left: auto; }
    .nav-search-form { width: min(46vw, 180px); }
    .nav-search-input { font-size: 10px; padding-left: 9px; }
    .nav-links {
      order: 3;
      width: 100%;
      overflow-x: auto;
      gap: 4px;
      padding: 2px 0 1px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-link {
      flex: 0 0 auto;
      padding: 5px 9px;
      white-space: nowrap;
    }
    .about-hero { grid-template-columns: 1fr; }
    .about-hero-shots { height: 150px; margin-top: 6px; }
    .cover-grid { grid-template-columns: 1fr 1fr; }
    .recent-strip { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 18px 16px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .author-box { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 480px) {
    .about-title { font-size: 22px; }
    .cover-grid { grid-template-columns: 1fr; }
    .recent-strip { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
  }

/* COSM-GAME MOBILE RESPONSIVE HARDENING v1 */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body,
  main,
  .page-wrap,
  .about-hero,
  .about-hero-copy,
  .about-hero-shots,
  .cover-grid,
  .recent-strip,
  .author-box {
    min-width: 0;
    max-width: 100%;
  }

  .page-wrap {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav {
    height: auto;
    padding: 8px 0;
  }

  .nav > .page-wrap {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 42vw);
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0 12px !important;
  }

  .nav-logo {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    font-size: 16px;
    white-space: nowrap;
  }

  .nav-right {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .nav-search-form {
    width: 100% !important;
    max-width: none;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 4px;
    padding: 2px 0 1px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar { display: none; }

  .nav-link {
    flex: 0 0 auto;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 6px 9px;
    white-space: nowrap;
  }

  .about-hero {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .about-title,
  .about-lede,
  .section-h,
  .section-p,
  .cover-title,
  .recent-title,
  .author-copy {
    overflow-wrap: anywhere;
  }

  .about-title {
    font-size: clamp(22px, 7vw, 27px);
    line-height: 1.22;
  }

  .about-hero-shots {
    width: 100%;
    height: 170px;
    margin-top: 2px;
  }

  .about-shot { max-width: 72%; }

  .cover-grid,
  .recent-strip {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .author-box {
    align-items: flex-start;
    flex-direction: column;
  }

  img,
  video,
  iframe,
  svg,
  canvas { max-width: 100%; }

  .footer-inner {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px;
  }

  .footer-grid > div:first-child { grid-column: auto; }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .nav > .page-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(110px, 40vw);
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .page-wrap,
  .footer-inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-logo { font-size: 15px; }
  .nav-search-input { font-size: 10px; }
  .about-title { font-size: 22px; }
  .about-hero-shots { height: 150px; }
}

