  /* =========================================================
     VNVault — Ana Stil Dosyası (Dark Theme)
     ========================================================= */
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html {
    scrollbar-gutter: stable;
  }
  
  :root {
    --bg:        #0d0d0d;
    --bg2:       #1a1a1a;
    --bg3:       #222222;
    --bg4:       #2a2a2a;
    --red:       #e63946;
    --red-dark:  #b02a35;
    --cyan:      #00bcd4;
    --gold:      #ffd700;
    --text:      #e0e0e0;
    --muted:     #888;
    --border:    #2e2e2e;
    --radius:    6px;
    --transition: .2s ease;
    --rank-bronze:   #cd7f32;
    --rank-silver:   #c0c0c0;
    --rank-gold:     #ffd700;
    --rank-platinum: #e5e4e2;
    --rank-elite:    #ff0055;
  }
  
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    min-height: 100vh;
  }

  body.page-sticky-footer {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }

  body.page-sticky-footer .site-main {
    flex: 1 0 auto;
    width: 100%;
    min-width: 0;
  }

  /* İçerik alanı dikey uzasın diye yalnızca gerekli sayfalarda flex kolon */
  body.page-sticky-footer.settings-page-sticky .site-main,
  body.page-sticky-footer.search-page-sticky .site-main,
  body.page-sticky-footer.collection-page-sticky .site-main,
  body.page-sticky-footer:has(.my-games-page) .site-main {
    display: flex;
    flex-direction: column;
  }

  body.page-sticky-footer .site-main > .container {
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }

  body.page-sticky-footer .site-footer {
    flex-shrink: 0;
    margin-top: auto;
  }

  body.page-sticky-footer.search-page-sticky .search-page-sticky-shell {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  body.page-sticky-footer.search-page-sticky .search-page-sticky-shell .main-grid {
    flex: 1;
    align-items: stretch;
    margin-top: 0;
  }

  body.page-sticky-footer.search-page-sticky .search-page-sticky-shell .content,
  body.page-sticky-footer.search-page-sticky .search-page-sticky-shell .sidebar {
    min-height: 100%;
  }

  /* ---- Page navigation loader ---- */
  .page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .page-loader.is-active {
    opacity: 1;
    visibility: visible;
  }
  .page-loader-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.12);
    backdrop-filter: none;
  }
  .page-loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red) 0%, #ff6b6b 45%, var(--cyan) 100%);
    box-shadow: 0 0 8px rgba(230, 57, 70, 0.45);
    transition: width 0.12s ease-out;
  }
  @media (prefers-reduced-motion: reduce) {
    .page-loader-bar {
      transition: width 0.15s linear;
    }
    .page-loader-overlay {
      backdrop-filter: none;
    }
  }
  
  a { color: inherit; text-decoration: none; transition: color var(--transition); }
  a:hover { color: var(--red); }
  
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg2); }
  ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

  /* Screenshot scrollbar styling */
  .screenshot-scroll::-webkit-scrollbar {
    height: 8px;
  }
  .screenshot-scroll::-webkit-scrollbar-track {
    background: var(--bg3);
    border-radius: 4px;
  }
  .screenshot-scroll::-webkit-scrollbar-thumb {
    background: #b02a35;
    border-radius: 4px;
  }
  .screenshot-scroll::-webkit-scrollbar-thumb:hover {
    background: #8a2028;
  }
  
  /* =========================================================
     NAVBAR
     ========================================================= */
  .navbar {
    background: var(--bg2);
    border-bottom: 2px solid var(--red);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.4);
  }
  .navbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    padding: 0 16px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    color: var(--red);
    text-decoration: none;
    flex-shrink: 0;
    grid-column: 1;
    width: 140px;
    min-width: 140px;
    margin-right: 0;
  }
  .nav-logo-img {
    display: block;
    height: 30px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    object-position: left center;
  }
  .nav-logo .s-icon {
    width: 30px; height: 30px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 16px; color: #fff;
    box-shadow: 0 0 8px rgba(230,57,70,.4);
  }
  .nav-links {
    display: flex;
    gap: 2px;
    align-items: center;
    min-width: 0;
    grid-column: 2;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius);
    color: #ccc;
    font-size: 13px;
    line-height: 1.2;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
  }
  .nav-links a i {
    flex-shrink: 0;
    width: 1.1em;
    text-align: center;
    line-height: 1;
  }
  .nav-links a:hover, .nav-links a.active { background: var(--bg3); color: #fff; }
  .nav-links a.vip-link { color: var(--gold); }
  .nav-links a.vip-link:hover,
  .nav-links a.vip-link.active { background: rgba(255,215,0,.12); color: var(--gold); }
  .nav-inline-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 17px;
    height: 17px;
    padding: 0 5px;
    margin-left: 4px;
    border-radius: 10px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    grid-column: 3;
    justify-self: end;
  }
  .nav-profile-link { display: inline-flex; align-items: center; gap: 8px; overflow: visible; line-height: 1; }
  .nav-user-avatar-slot { display: inline-flex; flex-shrink: 0; line-height: 0; align-items: center; }
  .nav-user-row { display: flex; align-items: center; gap: 8px; flex-shrink: 1; min-width: 0; }
  .nav-settings-btn { flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; line-height: 1; }
  .nav-admin-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    border-color: rgba(230, 57, 70, 0.45);
    color: var(--red);
  }
  .nav-admin-btn:hover,
  .nav-admin-btn.is-active {
    background: rgba(230, 57, 70, 0.12);
    color: #fff;
    border-color: var(--red);
  }
  .nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .nav-right .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1;
    flex-shrink: 0;
  }
  .nav-right .btn i,
  .nav-settings-btn i {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-right .btn .nav-label,
  .nav-settings-btn .nav-label {
    line-height: 1;
  }
  .nav-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--red);
    cursor: pointer;
    transition: border-color var(--transition), transform var(--transition);
  }
  .nav-avatar:hover { border-color: var(--cyan); transform: scale(1.08); }
  .nav-username:not(.username-color) { color: var(--cyan); font-weight: 600; font-size: 13px; line-height: 1.2; }
  .nav-points-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform .15s ease, filter .15s ease;
  }
  .nav-points-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
  }
  .nav-points-link:focus-visible {
    outline: 2px solid rgba(255, 215, 0, 0.45);
    outline-offset: 2px;
    border-radius: 999px;
  }
  .nav-points { color: var(--gold); font-size: 11px; font-weight: 700; background: rgba(255,215,0,.1); padding: 2px 7px; border-radius: 20px; border: 1px solid rgba(255,215,0,.25); display: inline-flex; align-items: center; gap: 4px; }
  .nav-points-wallet-label { display: none; }
  
  /* Mobile hamburger — hidden on desktop */
  .nav-hamburger {
    display: none !important;
    visibility: hidden;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
    position: absolute;
    pointer-events: none;
    background: none;
    color: #ccc;
    font-size: 14px;
  }
  @media (max-width: 992px) {
    .nav-hamburger {
      display: inline-flex !important;
      visibility: visible;
      position: static;
      width: 44px;
      height: 44px;
      padding: 0;
      margin-left: auto;
      border: none;
      border-radius: 8px;
      overflow: visible;
      pointer-events: auto;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      cursor: pointer;
      -webkit-appearance: none;
      appearance: none;
      font-family: inherit;
      background: var(--red);
      color: #fff;
      transition: background var(--transition), transform var(--transition);
      grid-column: 3;
      justify-self: end;
      margin-left: 0;
    }
    .nav-hamburger:hover {
      background: var(--red-dark);
    }
    .nav-hamburger:active {
      transform: scale(0.95);
    }
    .nav-hamburger i {
      font-size: 20px;
    }
    .navbar-inner {
      grid-template-columns: auto 1fr auto;
      column-gap: 8px;
    }
    .nav-logo {
      width: auto;
      min-width: 0;
      max-width: calc(100% - 56px);
      margin-right: 0;
    }
    .nav-logo-img {
      height: 20px !important;
      width: auto !important;
      max-width: min(100px, calc(100vw - 96px)) !important;
    }
    .nav-links {
      display: none;
      position: fixed;
      top: 50px;
      left: 0;
      right: 0;
      grid-column: 1 / -1;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      flex-direction: column;
      padding: 12px;
      gap: 6px;
      z-index: 999;
      box-shadow: 0 8px 24px rgba(0,0,0,.5);
      max-height: calc(100vh - 50px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .nav-links.nav-open { display: flex; }
    body.nav-mobile-open {
      overflow: hidden;
      position: fixed;
      width: 100%;
      left: 0;
      right: 0;
      touch-action: none;
    }
    body.nav-mobile-open .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1001;
    }
    .nav-mobile-backdrop {
      display: none;
      position: fixed;
      top: 50px;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 998;
      background: rgba(0, 0, 0, 0.45);
      -webkit-tap-highlight-color: transparent;
    }
    .nav-mobile-backdrop.is-visible {
      display: block;
    }
    .nav-links > a {
      width: 100%;
      box-sizing: border-box;
      padding: 12px 14px;
      min-height: 44px;
      border-radius: var(--radius);
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      text-align: left;
      background: var(--bg3);
      border: 1px solid transparent;
      transition: background var(--transition), border-color var(--transition);
    }
    .nav-links > a:hover,
    .nav-links > a.active {
      background: var(--bg4);
      border-color: var(--border);
      color: #fff;
    }
    .nav-links > a.vip-link.active {
      background: rgba(255,215,0,.12);
      border-color: rgba(255,215,0,.25);
      color: var(--gold);
    }
    .nav-links > a i {
      width: 20px;
      flex-shrink: 0;
      text-align: center;
      font-size: 15px;
    }
    .nav-links .nav-inline-badge {
      margin-left: auto;
    }
    .nav-links .nav-right {
      margin-top: 10px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      gap: 8px;
    }
    .nav-right {
      display: none;
      flex-direction: column;
      gap: 8px;
      align-items: stretch;
      width: 100%;
    }
    .nav-right.nav-open { display: flex; }
    .nav-right .nav-user-row {
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-areas:
        "profile profile"
        "points notif";
      gap: 8px;
      width: 100%;
    }
    .nav-right .nav-profile-link {
      grid-area: profile;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      width: 100%;
      box-sizing: border-box;
      padding: 12px 14px;
      min-height: 44px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .nav-right .nav-points-link {
      grid-area: points;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 10px 14px;
      box-sizing: border-box;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .nav-right .nav-notif-wrap {
      grid-area: notif;
      margin-left: 0;
    }
    .nav-right .nav-notif-btn {
      width: 44px;
      height: 44px;
      min-height: 44px;
      justify-content: center;
      padding: 0;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .nav-right .nav-notif-btn i {
      font-size: 16px;
    }
    .nav-right .nav-avatar {
      width: 32px;
      height: 32px;
    }
    .nav-right .nav-username {
      font-size: 14px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .nav-right .nav-points {
      font-size: 13px;
      padding: 4px 10px;
      flex-wrap: wrap;
      justify-content: center;
      gap: 4px 6px;
    }
    .nav-right .nav-points-wallet-label {
      display: inline;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.01em;
      color: var(--gold);
    }
    .nav-right .nav-shop-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: var(--radius);
      background: var(--bg3);
      border: 1px solid var(--border);
      flex-shrink: 0;
    }
    .nav-right .btn {
      width: 100%;
      box-sizing: border-box;
      justify-content: center;
      min-height: 44px;
      padding: 10px 14px;
      font-size: 14px;
    }
    .nav-right .nav-actions {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 8px;
    }
    .nav-right .nav-notif-dropdown {
      position: fixed !important;
      top: 50px !important;
      left: 12px !important;
      right: 12px !important;
      width: auto !important;
      max-width: none !important;
      margin: 0;
      z-index: 1100;
    }
    .nav-right .nav-settings-btn .nav-label {
      display: inline;
    }
  }
  
  /* =========================================================
     BUTTONS
     ========================================================= */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background var(--transition), transform .1s, box-shadow var(--transition);
  }
  .btn:active { transform: scale(.97); }
  .btn-red     { background: var(--red); color: #fff; }
  .btn-red:hover { background: var(--red-dark); color: #fff; box-shadow: 0 2px 8px rgba(230,57,70,.3); }
  .btn-outline { background: transparent; border: 1px solid var(--red); color: var(--red); }
  .btn-outline:hover { background: var(--red); color: #fff; }
  .btn.btn-vip-link {
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: var(--gold);
  }
  .btn.btn-vip-link:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.45);
    color: var(--gold);
    box-shadow: none;
  }
  .btn-dark    { background: var(--bg3); color: var(--text); }
  .btn-dark:hover { background: var(--bg4); }
  .btn-cyan    { background: var(--cyan); color: #000; }
  .btn-cyan:hover { opacity: .9; }
  .btn-sm      { padding: 4px 10px; font-size: 12px; }
  .btn-block   { display: flex; width: 100%; text-align: center; }
  
  /* =========================================================
     HERO
     ========================================================= */
  .hero {
    background: linear-gradient(180deg, #1a0a0a 0%, #0d0d0d 100%);
    text-align: center;
    padding: 36px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
  }
  .hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 150px;
    margin: 0 auto 20px;
    padding: 0 16px;
    line-height: 0;
    box-sizing: border-box;
    overflow: visible;
  }
  .hero-logo::before {
    content: '';
    position: absolute;
    z-index: 0;
    pointer-events: none;
    left: max(16px, calc(50% - 195px));
    top: 50%;
    width: 118px;
    height: 64px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(230, 57, 70, 0.55) 0%, rgba(230, 57, 70, 0.18) 48%, transparent 72%);
    animation: hero-vn-glow-pulse 3s ease-in-out infinite;
  }
  .hero-logo-img {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 550px;
    height: 100px;
    object-fit: cover;
    object-position: center center;
  }
  @keyframes hero-vn-glow-pulse {
    0%, 100% {
      opacity: 0.5;
      transform: translateY(-50%) scale(0.94);
      filter: blur(10px);
    }
    50% {
      opacity: 1;
      transform: translateY(-50%) scale(1.08);
      filter: blur(18px);
    }
  }
  .hero-title    { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: 1px; }
  .hero-subtitle {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
    padding: 4px 16px 16px;
    width: 100%;
    flex-shrink: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.92) 35%);
  }
  
  /* =========================================================
     ANNOUNCEMENT
     ========================================================= */
  .announcement-bar {
    background: #1a1200;
    border-top: 1px solid #3d2e00;
    border-bottom: 1px solid #3d2e00;
    padding: 8px 16px;
    text-align: center;
    font-size: 13px;
    color: var(--gold);
  }
  .announcement-bar a { color: var(--gold); text-decoration: underline; }
  
  /* =========================================================
     LAYOUT
     ========================================================= */
  .container { max-width: 1300px; margin: 0 auto; padding: 0 16px; }
  .container--category { padding-top: 24px; }
  .main-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    align-items: start;
    margin-top: 20px;
  }
  @media (min-width: 901px) {
    .main-grid--featured {
      grid-template-areas:
        "featured featured"
        "content sidebar";
      grid-template-columns: minmax(0, 1fr) 300px;
    }
    .main-grid--featured .featured-steam-section {
      grid-area: featured;
    }
    .main-grid--featured .content {
      grid-area: content;
    }
    .main-grid--featured .sidebar {
      grid-area: sidebar;
    }
  }
  @media (max-width: 900px) {
    .main-grid { grid-template-columns: 1fr; }
    .main-grid--featured {
      grid-template-areas: none;
    }
    .sidebar { display: none; }
  }
  
  /* =========================================================
     TAB NAV
     ========================================================= */
  .tab-nav { display: flex; gap: 6px; padding: 14px 0 10px; flex-wrap: wrap; }
  .tab-nav a {
    padding: 8px 18px;
    border-radius: 30px;
    background: var(--bg3);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
  }
  @media (hover: hover) {
    .tab-nav a:hover { background: var(--bg4); color: var(--text); }
  }
  .tab-nav a.active { background: var(--red); color: #fff; }
  
  /* =========================================================
     SECTION HEADER
     ========================================================= */
  .section-header {
    background: #222222;
    border-left: 4px solid var(--red);
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
  }
  .section-header::after {
    content: '';
    position: absolute;
    right: 10px;
    color: rgba(255,255,255,.05);
    font-size: 20px;
    letter-spacing: 8px;
    pointer-events: none;
  }
  
  /* =========================================================
     POST LIST / POST ROW
     ========================================================= */
  .post-list {
    background: var(--bg2);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
  }
  .search-user-row {
    text-decoration: none;
    color: inherit;
  }
  .search-user-main {
    flex: 1;
    min-width: 0;
  }
  .search-user-name:not(.username-color) {
    color: var(--cyan);
    font-weight: 600;
    font-size: 14px;
  }
  .search-user-row:hover .search-user-name:not(.username-color) {
    color: #fff;
  }
  .search-user-row:hover .search-user-name.username-color {
    filter: brightness(1.15);
  }
  .search-user-bio {
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.45;
  }
  .search-user-link {
    color: var(--muted);
    flex-shrink: 0;
    padding-left: 8px;
  }
  .search-user-row:hover .search-user-link {
    color: var(--red);
  }
  .post-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
  }
  .post-row:last-child  { border-bottom: none; }
  @media (hover: hover) {
    .post-row:hover { background: var(--bg3); }
  }
  .post-row-vip         { border-left: 2px solid rgba(255,215,0,.3); }
  
  /* -- VIP LOCKED ROW -- */
  .post-row-vip-locked {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    border-left: 2px solid rgba(255,215,0,.35);
    position: relative;
  }
  @media (hover: hover) {
    .post-row-vip-locked:hover { background: var(--bg3); }
  }
  .post-row-vip-locked:last-child { border-bottom: none; }
  .post-title-vip-visible {
    flex: 1;
    color: #fff !important;
    font-weight: 600;
    filter: none !important;
  }
  .post-title-vip-visible:hover { color: var(--gold) !important; }
  .vip-locked-hint {
    color: var(--muted);
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .vip-locked-hint i { color: var(--gold); margin-right: 4px; }
  .post-row-vip-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .post-meta-vip-locked {
    font-size: 12px;
    flex-wrap: wrap;
  }
  .post-meta-vip-locked .author:not(.username-color) { color: var(--cyan); font-weight: 600; }
  .post-badge-vip-locked {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    background: var(--gold);
    color: #000;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .section-header--muted {
    border-left-color: var(--bg4);
    background: #222222;
  }
  .section-header--daily-top {
    border-left-color: yellow;
  }
  .section-header--comments-closed {
    border-left-color: #e55353;
    background: rgba(229, 83, 83, 0.12);
    color: #ff8a8a;
  }
  .comments-closed-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: var(--radius);
    background: rgba(229, 83, 83, 0.1);
    border: 1px solid rgba(229, 83, 83, 0.45);
    color: #ffb4b4;
    font-size: 13px;
    line-height: 1.55;
  }
  .comments-closed-notice i {
    color: #ff6b6b;
    margin-top: 2px;
    flex-shrink: 0;
  }
  .comments-closed-notice--game {
    margin-top: 0;
    margin-bottom: 14px;
  }
  .btn-vip-unlock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #b8860b, var(--gold));
    color: #000;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    transition: opacity var(--transition), transform .1s;
  }
  .btn-vip-unlock:hover { opacity: .85; color: #000; transform: scale(1.04); }
  
  .post-avatar   { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
  .post-row-top  { display: flex; align-items: center; gap: 6px; flex-shrink: 0; min-width: 0; }
  .post-row-top .post-badge { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .post-row-top .pin-icon { flex-shrink: 0; }
  .post-row-body {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .post-row-body .post-row-top { flex-shrink: 0; }
  .post-row-body .post-title-link { flex: 1; min-width: 0; }
  .post-row-body .post-meta { flex-shrink: 0; }
  .post-row-body--vip-locked {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .post-row-body--vip-locked .post-row-vip-main {
    flex: 1;
    min-width: 0;
  }
  .post-meta-author {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  .post-meta-stats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .post-badge    { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: .5px; color: #fff; flex-shrink: 0; }
  .post-title-link { color: var(--text); font-size: 14px; font-weight: 500; flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .post-title-link:hover { color: var(--red); }
  .post-meta     { display: flex; align-items: center; gap: 8px; flex-shrink: 0; color: var(--muted); font-size: 12px; white-space: nowrap; }
  .post-meta .author:not(.username-color),
  .post-meta-author:not(.username-color) { color: var(--cyan); font-weight: 600; }
  .like-info     { display: flex; align-items: center; gap: 4px; color: var(--muted); font-size: 12px; }
  .like-info .like-num { color: #fff; font-weight: 700; }
  .pin-icon      { color: var(--red); font-size: 11px; }
  .vip-crown-icon { color: var(--gold) !important; }
  .section-block { margin-bottom: 0px; }
  .content > .create-bar + .games-tab-content,
  .content > .create-bar + .section-block,
  .content > .games-tab-content + .section-block,
  .content > .section-block + .section-block {
    margin-top: 20px;
  }
  .games-tab-content .section-block {
    margin-top: 0;
  }
  .games-tab-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  .game-section-body {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 14px 16px 16px;
  }
  .game-section-body .game-library-grid {
    padding-top: 0;
  }
  .game-section-body .trending-games-grid {
    padding: 0;
  }
  .game-section-body .game-filters-bar {
    margin-bottom: 14px;
    padding: 12px;
    background: var(--bg3);
    border-radius: 8px;
  }
  .game-section-body .empty-state {
    margin: 0;
    padding: 24px 12px;
  }
  .section-block:has(#featured-carousel-forum) .featured-showcase-frame .widget { border-radius: 0 !important; }
  .section-block:has(#featured-carousel-forum) .featured-showcase-frame .widget-body { border-radius: 0 !important; }
  .section-block:has(#featured-carousel) .featured-showcase-frame .widget { border-radius: 0 !important; }
  .section-block:has(#featured-carousel) .featured-showcase-frame .widget-body { border-radius: 0 !important; }

  /* Featured carousel — full container border for VIP / points games */
  .featured-showcase-frame {
    border-radius: var(--radius);
    overflow: hidden;
  }
  .featured-showcase-frame .widget {
    margin-bottom: 0;
  }
  .featured-showcase-frame:has(.carousel-slide.game-showcase--vip.is-active),
  .featured-showcase-frame:has(.carousel-slide-forum.game-showcase--vip.is-active) {
    border: 2px solid rgba(255, 215, 0, 0.48);
    box-shadow:
      0 0 0 1px rgba(255, 215, 0, 0.12),
      0 0 28px rgba(255, 215, 0, 0.16);
  }
  .featured-showcase-frame:has(.carousel-slide.game-showcase--points.is-active),
  .featured-showcase-frame:has(.carousel-slide-forum.game-showcase--points.is-active) {
    border: 2px solid rgba(255, 160, 40, 0.44);
    box-shadow:
      0 0 0 1px rgba(255, 140, 0, 0.1),
      0 0 24px rgba(255, 120, 0, 0.14);
  }
  .featured-showcase-frame:has(.carousel-slide.game-showcase--vip.game-showcase--points.is-active),
  .featured-showcase-frame:has(.carousel-slide-forum.game-showcase--vip.game-showcase--points.is-active) {
    border: 2px solid rgba(255, 200, 60, 0.52);
    box-shadow:
      0 0 0 1px rgba(255, 215, 0, 0.14),
      0 0 32px rgba(255, 180, 0, 0.18);
  }
  .featured-showcase-frame:has(.carousel-slide.is-active[class*="game-showcase--"]) .section-header,
  .featured-showcase-frame:has(.carousel-slide-forum.is-active[class*="game-showcase--"]) .section-header {
    border-left-color: transparent;
    border-radius: 0;
  }
  .featured-showcase-frame:has(.carousel-slide.is-active[class*="game-showcase--"]) .widget,
  .featured-showcase-frame:has(.carousel-slide-forum.is-active[class*="game-showcase--"]) .widget {
    border: none;
    border-radius: 0;
  }
  .featured-showcase-frame:has(.carousel-slide.is-active[class*="game-showcase--"]) .featured-slide-layout,
  .featured-showcase-frame:has(.carousel-slide-forum.is-active[class*="game-showcase--"]) .featured-slide-layout {
    box-shadow: none;
  }

  /* ---- Featured carousel (Öne Çıkanlar ve Tavsiye Edilenler) ---- */
  .featured-carousel-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .featured-carousel {
    position: relative;
    width: 100%;
    min-height: clamp(320px, 38vw, 490px);
  }
  .carousel-slide,
  .carousel-slide-forum {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(22px);
    transition:
      opacity 0.62s ease-in-out,
      visibility 0.62s ease-in-out,
      transform 0.62s ease-in-out;
    z-index: 1;
    will-change: opacity, transform;
  }
  .carousel-slide.from-prev,
  .carousel-slide-forum.from-prev {
    transform: translateX(-22px);
  }
  .carousel-slide.from-next,
  .carousel-slide-forum.from-next {
    transform: translateX(22px);
  }
  .carousel-slide.is-active,
  .carousel-slide-forum.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
  }
  @media (prefers-reduced-motion: reduce) {
    .carousel-slide,
    .carousel-slide-forum {
      transition: opacity 0.2s ease, visibility 0.2s ease;
      transform: none;
    }
    .carousel-slide.from-prev,
    .carousel-slide-forum.from-prev,
    .carousel-slide.from-next,
    .carousel-slide-forum.from-next {
      transform: none;
    }
  }
  .featured-slide-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    width: 100%;
    height: clamp(320px, 38vw, 490px);
    min-height: 340px;
    max-height: 510px;
    align-items: stretch;
    overflow: hidden;
  }
  .featured-slide-media {
    position: relative;
    min-width: 0;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    background: var(--bg3);
  }
  .featured-slide-cover-link {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
  }
  .featured-slide-media .game-main-viewer,
  .featured-slide-media .featured-cover-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100%;
  }
  .featured-slide-media .game-main-viewer {
    display: block;
  }
  .featured-slide-media .featured-main-image,
  .featured-slide-media .featured-main-image-forum,
  .featured-slide-media .spoiler-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .featured-cover-placeholder {
    background: linear-gradient(135deg, var(--bg3), var(--bg2));
  }
  .featured-slide-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    min-height: 0;
    height: 100%;
    padding: 18px 20px 22px;
    background: var(--bg2);
    border-left: 1px solid var(--border);
    overflow: hidden;
  }
  .featured-slide-title {
    display: block;
    flex: none;
    width: 100%;
    overflow: visible;
    text-overflow: unset;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
    white-space: normal;
    word-break: break-word;
  }
  .featured-slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    flex-shrink: 0;
  }
  .featured-tag {
    padding: 4px 10px;
    background: var(--bg3);
    color: var(--muted);
    border-radius: 20px;
    font-size: 11px;
    line-height: 1.2;
  }
  .featured-tag-status {
    background: var(--cyan);
    color: #fff;
    font-weight: 600;
  }
  .featured-tag-vip {
    background: var(--gold);
    color: #000;
    font-weight: 600;
  }
  .featured-tag-points {
    background: rgba(255, 140, 0, 0.18);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.35);
    font-weight: 600;
  }
  .featured-slide-platforms {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    pointer-events: none;
  }
  .featured-slide-desc {
    flex-shrink: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    margin: 0 0 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
  }
  .featured-screenshots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 10px;
    flex-shrink: 0;
  }
  .featured-screenshot-thumb {
    aspect-ratio: 460 / 215;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: var(--bg3);
    min-height: 0;
  }
  .featured-screenshot-thumb .spoiler-container,
  .featured-screenshot-thumb img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .featured-screenshot-empty {
    cursor: default;
    opacity: 0.35;
  }
  .featured-slide-bottom {
    margin-top: auto;
    flex-shrink: 0;
  }
  .featured-slide-meta {
    position: static;
    padding: 0;
    background: none;
    border: none;
    margin-bottom: 10px;
    font-size: 12px;
  }
  .featured-slide-progress {
    margin-bottom: 10px;
    flex-shrink: 0;
  }
  .featured-slide-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .featured-slide-progress-track {
    height: 6px;
    background: var(--bg3);
    border-radius: 999px;
    overflow: hidden;
  }
  .featured-slide-progress-track > div {
    height: 100%;
    background: var(--cyan);
    border-radius: 999px;
  }

  /* Shared translation progress bar (cards, trending, featured) */
  .game-progress {
    margin-bottom: 8px;
    flex-shrink: 0;
  }
  .game-progress-labels {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .game-progress-track {
    height: 6px;
    background: var(--bg3);
    border-radius: 999px;
    overflow: hidden;
  }
  .game-progress-track > div {
    height: 100%;
    background: var(--cyan);
    border-radius: 999px;
    max-width: none !important;
  }
  .game-card-progress {
    margin-top: 4px;
  }
  .trending-game-card-progress {
    margin-bottom: 10px;
  }

  .featured-slide-actions {
    flex-shrink: 0;
  }
  .featured-slide-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ---- Steam-style featured showcase (red/black peek carousel) ---- */
  .featured-steam-section {
    --steam-peek-strip: 124px;
    --steam-peek-gap: 10px;
    --steam-peek-reference: 86px;
    --steam-peek-scale: 0.86;
    --steam-center-narrow: 0px;
    --steam-peek-bleed: calc((var(--steam-peek-strip) - var(--steam-peek-reference)) * 2 - var(--steam-center-narrow));
    --steam-peek-gutter: calc((var(--steam-peek-strip) * 2) + (var(--steam-peek-gap) * 2));
    margin: 0 0 22px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  @media (min-width: 901px) {
    .featured-steam-section:has(.featured-carousel-shell--steam:not(.featured-carousel-shell--single)) {
      width: calc(100% + var(--steam-peek-bleed));
      max-width: calc(100% + var(--steam-peek-bleed));
      margin-left: calc(var(--steam-peek-bleed) / -2);
      margin-right: calc(var(--steam-peek-bleed) / -2);
    }
  }
  .featured-steam-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 calc(var(--steam-peek-strip) + var(--steam-peek-gap));
  }
  .featured-steam-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
  }
  .featured-steam-title i {
    color: var(--red);
    margin-right: 8px;
    font-size: 12px;
  }
  .featured-showcase-frame--steam {
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .featured-carousel-shell--steam {
    --steam-slide-w: 100%;
    --steam-cover-h: clamp(300px, 34vw, 470px);
    --steam-cover-ratio: 65%;
    --steam-details-ratio: 35%;
    position: relative;
    width: 100%;
    padding: 0 0 34px;
    background: transparent;
    overflow: hidden;
  }
  .featured-carousel-shell--steam:not(.featured-carousel-shell--single) {
    --steam-slide-w: min(10000px, max(280px, calc(100% - var(--steam-peek-gutter))));
  }
  .featured-carousel-shell--steam.featured-carousel-shell--single {
    padding-bottom: 0;
  }
  .featured-carousel-shell--steam:not([data-carousel-ready]) .featured-carousel--steam .featured-carousel-track,
  .featured-carousel-shell--steam:not([data-carousel-ready]) .featured-carousel--steam .carousel-slide,
  .featured-carousel-shell--steam:not([data-carousel-ready]) .featured-carousel--steam .carousel-slide-forum,
  .featured-carousel-shell--steam:not([data-carousel-ready]) .featured-steam-slide {
    transition: none !important;
  }
  .featured-carousel-shell--instant .featured-carousel--steam .featured-carousel-track,
  .featured-carousel-shell--instant .featured-carousel--steam .carousel-slide,
  .featured-carousel-shell--instant .featured-carousel--steam .carousel-slide-forum,
  .featured-carousel-shell--instant .featured-carousel--steam .featured-steam-slide {
    transition: none !important;
  }
  .featured-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .featured-carousel--steam {
    width: 100%;
    min-height: var(--steam-cover-h);
    overflow: hidden;
  }
  .featured-carousel--steam .featured-carousel-track {
    display: flex;
    align-items: center;
    gap: var(--steam-peek-gap);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .featured-carousel--steam .carousel-slide,
  .featured-carousel--steam .carousel-slide-forum {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    flex: 0 0 var(--steam-slide-w);
    max-width: var(--steam-slide-w);
    opacity: 0.55;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    z-index: 1;
    cursor: pointer;
    transition:
      opacity 0.55s ease,
      visibility 0.55s ease;
  }
  .featured-carousel--steam .carousel-slide:not(.is-active),
  .featured-carousel--steam .carousel-slide-forum:not(.is-active) {
    filter: brightness(0.78);
  }
  .featured-carousel--steam .carousel-slide.is-active,
  .featured-carousel--steam .carousel-slide-forum.is-active {
    opacity: 1;
    filter: none;
    transform: none;
    z-index: 3;
    cursor: default;
  }
  .featured-carousel--steam .carousel-slide.is-prev,
  .featured-carousel--steam .carousel-slide.is-next,
  .featured-carousel--steam .carousel-slide-forum.is-prev,
  .featured-carousel--steam .carousel-slide-forum.is-next {
    opacity: 1;
    filter: brightness(0.48);
    z-index: 2;
  }
  .featured-carousel--steam .carousel-slide:not(.is-active):not(.is-prev):not(.is-next),
  .featured-carousel--steam .carousel-slide-forum:not(.is-active):not(.is-prev):not(.is-next) {
    opacity: 0.28;
    filter: brightness(0.62);
  }
  .featured-carousel--steam .carousel-slide:only-child,
  .featured-carousel--steam .carousel-slide-forum:only-child {
    flex: 0 0 100%;
    max-width: 100%;
    opacity: 1;
    transform: none;
  }
  .featured-carousel--steam .carousel-slide:not(.is-active) .featured-steam-details,
  .featured-carousel--steam .carousel-slide-forum:not(.is-active) .featured-steam-details {
    visibility: hidden;
    overflow: hidden;
    flex: 0 0 0 !important;
    max-width: 0 !important;
    min-width: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    border-left-width: 0 !important;
    opacity: 0;
    pointer-events: none;
  }
  .featured-carousel--steam .carousel-slide.is-active .featured-steam-details,
  .featured-carousel--steam .carousel-slide-forum.is-active .featured-steam-details {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
  .featured-steam-details.featured-steam-details--primed {
    position: fixed !important;
    left: -10000px !important;
    top: 0 !important;
    display: flex !important;
    visibility: hidden !important;
    width: 320px !important;
    min-width: 260px !important;
    max-width: 35% !important;
    height: var(--steam-cover-h) !important;
    opacity: 1 !important;
    flex: none !important;
    overflow: hidden !important;
    pointer-events: none !important;
    padding: 14px 14px 12px !important;
    border-left-width: 1px !important;
  }
  .featured-steam-slide {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: var(--steam-cover-h);
    background: #161616;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .carousel-slide--steam.is-active .featured-steam-slide,
  .carousel-slide-forum.carousel-slide--steam.is-active .featured-steam-slide {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: none;
  }
  .carousel-slide--steam.is-prev .featured-steam-slide,
  .carousel-slide-forum.carousel-slide--steam.is-prev .featured-steam-slide,
  .carousel-slide--steam.is-next .featured-steam-slide,
  .carousel-slide-forum.carousel-slide--steam.is-next .featured-steam-slide {
    transform: scale(var(--steam-peek-scale));
    height: var(--steam-cover-h);
  }
  .carousel-slide--steam.is-prev .featured-steam-slide,
  .carousel-slide-forum.carousel-slide--steam.is-prev .featured-steam-slide {
    transform-origin: right center;
  }
  .carousel-slide--steam.is-next .featured-steam-slide,
  .carousel-slide-forum.carousel-slide--steam.is-next .featured-steam-slide {
    transform-origin: left center;
  }
  .featured-steam-cover {
    position: relative;
    flex: 1 1 var(--steam-cover-ratio);
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: var(--bg3);
  }
  .carousel-slide--steam:not(.is-active) .featured-steam-cover,
  .carousel-slide-forum.carousel-slide--steam:not(.is-active) .featured-steam-cover {
    flex: 1 1 auto;
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
  }
  .carousel-slide--steam.is-prev .featured-steam-cover,
  .carousel-slide--steam.is-next .featured-steam-cover,
  .carousel-slide-forum.carousel-slide--steam.is-prev .featured-steam-cover,
  .carousel-slide-forum.carousel-slide--steam.is-next .featured-steam-cover {
    border-radius: 2px;
    box-shadow: none;
    overflow: hidden;
  }
  .carousel-slide--steam.is-prev .featured-steam-cover::after,
  .carousel-slide--steam.is-next .featured-steam-cover::after,
  .carousel-slide-forum.carousel-slide--steam.is-prev .featured-steam-cover::after,
  .carousel-slide-forum.carousel-slide--steam.is-next .featured-steam-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    pointer-events: none;
    z-index: 3;
  }
  .carousel-slide--steam.is-prev .featured-steam-cover .game-main-viewer,
  .carousel-slide--steam.is-next .featured-steam-cover .game-main-viewer,
  .carousel-slide-forum.carousel-slide--steam.is-prev .featured-steam-cover .game-main-viewer,
  .carousel-slide-forum.carousel-slide--steam.is-next .featured-steam-cover .game-main-viewer,
  .carousel-slide--steam.is-prev .featured-steam-cover .spoiler-container,
  .carousel-slide--steam.is-next .featured-steam-cover .spoiler-container,
  .carousel-slide-forum.carousel-slide--steam.is-prev .featured-steam-cover .spoiler-container,
  .carousel-slide-forum.carousel-slide--steam.is-next .featured-steam-cover .spoiler-container {
    border-radius: 3px;
    opacity: 1;
  }
  .carousel-slide--steam.is-prev .featured-steam-cover .featured-main-image,
  .carousel-slide--steam.is-prev .featured-steam-cover .spoiler-image,
  .carousel-slide-forum.carousel-slide--steam.is-prev .featured-steam-cover .featured-main-image-forum {
    object-position: 82% center;
  }
  .carousel-slide--steam.is-next .featured-steam-cover .featured-main-image,
  .carousel-slide--steam.is-next .featured-steam-cover .spoiler-image,
  .carousel-slide-forum.carousel-slide--steam.is-next .featured-steam-cover .featured-main-image-forum {
    object-position: 18% center;
  }
  .featured-steam-cover .featured-slide-cover-link,
  .featured-steam-cover .game-main-viewer,
  .featured-steam-cover .featured-cover-placeholder {
    display: block;
    width: 100%;
    height: 100%;
  }
  .featured-steam-cover .featured-main-image,
  .featured-steam-cover .featured-main-image-forum,
  .featured-steam-cover .spoiler-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .featured-steam-details {
    flex: 0 0 var(--steam-details-ratio);
    max-width: var(--steam-details-ratio);
    min-width: 260px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 14px 12px;
    background: linear-gradient(165deg, #1c1c1c 0%, #121212 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
  }
  .featured-steam-details .featured-slide-subtitle {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .featured-slide-tags--steam {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin: 0;
    flex-shrink: 0;
  }
  .featured-steam-details .featured-slide-title {
    font-size: 18px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 4px;
    flex-shrink: 0;
  }
  .featured-steam-details .featured-slide-title:hover {
    color: var(--red);
  }
  .featured-slide-subtitle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.4;
  }
  .featured-slide-subtitle > span:first-child {
    color: var(--red);
  }
  .featured-slide-subtitle-sep {
    color: rgba(255, 255, 255, 0.22);
  }
  .featured-screenshots--steam {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    width: 100%;
    margin: 0;
    flex-shrink: 0;
    align-self: stretch;
  }
  .featured-screenshots--steam .featured-screenshot-thumb {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 460 / 215;
    min-height: 0;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  }
  .featured-screenshots--steam .featured-screenshot-thumb .spoiler-container,
  .featured-screenshots--steam .featured-screenshot-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  .featured-screenshots--steam .featured-screenshot-thumb:hover,
  .featured-screenshots--steam .featured-screenshot-thumb.is-preview-active {
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
    opacity: 1;
  }
  .featured-screenshots--steam .featured-screenshot-empty {
    pointer-events: none;
    opacity: 0.28;
    border-style: dashed;
  }
  .featured-slide-tags--steam .featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    line-height: 1.2;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0;
  }
  .featured-slide-tags--steam .featured-tag-progress {
    background: rgba(230, 57, 70, 0.14);
    color: #ff9aa2;
    border-color: rgba(230, 57, 70, 0.22);
  }
  .featured-slide-tags--steam .featured-tag-complete {
    background: rgba(46, 204, 113, 0.14);
    color: #5dde8e;
    border-color: rgba(46, 204, 113, 0.28);
  }
  .featured-slide-tags--steam .featured-tag-vip {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    border-color: rgba(255, 215, 0, 0.28);
  }
  .featured-slide-tags--steam .featured-tag-points {
    background: rgba(255, 140, 0, 0.12);
    color: #ffb84d;
    border-color: rgba(255, 160, 40, 0.28);
  }
  .featured-tag-progress {
    background: rgba(230, 57, 70, 0.18);
    color: #ff8a94;
  }
  .featured-slide-genres--steam {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .featured-slide-genres-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    margin: 0;
  }
  .featured-slide-genres--steam .game-genre-badges {
    display: flex !important;
    flex-wrap: wrap;
    gap: 5px !important;
  }
  .featured-slide-genres--steam .game-genre-badge {
    display: inline-flex !important;
    align-items: center;
    padding: 4px 8px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    border-radius: 2px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.72) !important;
  }
  .featured-slide-desc--steam {
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    padding-right: 2px;
    color: rgba(255, 255, 255, 0.58);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    line-clamp: 7;
  }
  .featured-carousel--steam .carousel-slide--clone:not(.is-active) .featured-steam-details,
  .featured-carousel--steam .carousel-slide-forum.carousel-slide--clone:not(.is-active) .featured-steam-details {
    display: none !important;
  }
  .featured-carousel--steam .carousel-slide--clone,
  .featured-carousel--steam .carousel-slide-forum.carousel-slide--clone {
    pointer-events: auto;
  }
  .featured-slide-bottom--steam {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
    margin-top: 0;
    flex-shrink: 0;
  }
  .featured-slide-bottom--steam .featured-slide-progress {
    margin-bottom: 0;
  }
  .featured-slide-bottom--steam .game-progress-labels {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
  }
  .featured-slide-bottom--steam .game-progress-track {
    background: rgba(255, 255, 255, 0.1);
    height: 5px;
  }
  .featured-slide-bottom--steam .game-progress-track > div {
    background: linear-gradient(90deg, var(--red-dark), var(--red));
  }
  .featured-slide-btn--steam,
  .featured-steam-details a.featured-slide-btn--steam.btn-red {
    width: auto;
    min-width: 132px;
    padding: 10px 18px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    background: var(--red) !important;
    border: 1px solid var(--red-dark) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: #fff !important;
  }
  .featured-slide-btn--steam.btn-outline,
  .featured-steam-details a.featured-slide-btn--steam.btn-outline {
    background: transparent !important;
    border-color: var(--red) !important;
    color: var(--red) !important;
  }
  @media (hover: hover) {
    .featured-slide-btn--steam:hover,
    .featured-steam-details a.featured-slide-btn--steam:hover {
      background: var(--red-dark) !important;
      border-color: var(--red-dark) !important;
      color: #fff !important;
      transform: translateY(-1px);
    }
    .featured-slide-btn--steam.btn-outline:hover,
    .featured-steam-details a.featured-slide-btn--steam.btn-outline:hover {
      background: var(--red) !important;
      color: #fff !important;
    }
  }
  .featured-carousel-shell--steam .featured-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 6;
  }
  .featured-carousel-shell--steam .featured-carousel-nav {
    position: absolute;
    top: 0;
    transform: none;
    width: calc(var(--steam-peek-strip) + var(--steam-peek-gap));
    height: var(--steam-cover-h);
    border-radius: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    opacity: 1;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  }
  .featured-carousel-shell--steam .featured-carousel-nav i {
    transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
  }
  .featured-carousel-shell--steam .featured-carousel-nav.prev {
    left: 0;
  }
  .featured-carousel-shell--steam .featured-carousel-nav.next {
    right: 0;
  }
  @media (hover: hover) {
    .featured-carousel-shell--steam .featured-carousel-nav:hover {
      transform: none;
    }
    .featured-carousel-shell--steam .featured-carousel-nav:hover i {
      color: #fff;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.45), 0 1px 6px rgba(0, 0, 0, 0.8);
      transform: scale(1.12);
    }
  }
  .featured-carousel-shell--steam .featured-carousel-nav:active {
    transform: none;
  }
  .featured-carousel-shell--steam .featured-carousel-nav:active i {
    color: var(--red);
    transform: scale(1.06);
  }
  .featured-carousel-shell--steam .carousel-dot,
  .featured-carousel-shell--steam .carousel-dot-forum {
    width: 12px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.18);
  }
  .featured-carousel-shell--steam .carousel-dot.is-active,
  .featured-carousel-shell--steam .carousel-dot-forum.is-active {
    background: var(--red);
    width: 18px;
  }
  .featured-showcase-frame--steam:has(.carousel-slide.game-showcase--vip.is-active),
  .featured-showcase-frame--steam:has(.carousel-slide-forum.game-showcase--vip.is-active) {
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.08);
  }
  .featured-showcase-frame--steam:has(.carousel-slide.game-showcase--points.is-active),
  .featured-showcase-frame--steam:has(.carousel-slide-forum.game-showcase--points.is-active) {
    border-color: rgba(255, 160, 40, 0.32);
  }

  /* Çeviri Kütüphanesi game grid */
  .game-library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 14px;
    padding-top: 12px;
  }
  .game-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }
  .game-card-cover-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
  }
  .game-card-cover,
  .game-card-cover-wrap .spoiler-container {
    width: 100%;
    aspect-ratio: 460 / 215;
    display: block;
  }
  .game-card-cover,
  .game-card-cover-wrap img.spoiler-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .game-card-cover--empty {
    background: var(--bg3);
  }
  .game-card-platforms {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    pointer-events: none;
  }
  .game-platform-badges {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .game-platform-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
  }
  .game-platform-badge--windows {
    color: #00a4ef;
  }
  .game-platform-badge--android {
    color: #3ddc84;
  }
  .game-card-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 148px;
  }
  .game-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
  }
  .game-card-title:hover {
    color: var(--cyan);
  }
  .game-card-meta {
    font-size: 11px;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .game-card-footer {
    margin-top: auto;
    padding-top: 8px;
  }
  .game-card-actions {
    margin-top: 8px;
  }

  /* Game showcase variants — VIP gold glow / points amber glow */
  .game-showcase-ribbons {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    pointer-events: none;
  }
  .game-showcase-ribbons--right {
    left: auto;
    right: 8px;
    align-items: flex-end;
  }
  .game-showcase-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    backdrop-filter: blur(6px);
    white-space: nowrap;
  }
  .game-showcase-ribbon--vip {
    background: rgba(255, 215, 0, 0.92);
    color: #1a1200;
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.45);
  }
  .game-showcase-ribbon--points {
    background: rgba(18, 12, 0, 0.84);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.28);
  }

  .game-card.game-showcase--vip,
  .trending-game-card.game-showcase--vip {
    border: 2px solid rgba(255, 215, 0, 0.42);
    box-shadow:
      0 0 0 1px rgba(255, 215, 0, 0.1),
      0 0 22px rgba(255, 215, 0, 0.14),
      inset 0 1px 0 rgba(255, 215, 0, 0.08);
  }
  .game-card.game-showcase--points,
  .trending-game-card.game-showcase--points {
    border: 2px solid rgba(255, 160, 40, 0.38);
    box-shadow:
      0 0 0 1px rgba(255, 140, 0, 0.08),
      0 0 20px rgba(255, 120, 0, 0.12),
      inset 0 1px 0 rgba(255, 160, 40, 0.06);
  }
  .game-card.game-showcase--vip.game-showcase--points,
  .trending-game-card.game-showcase--vip.game-showcase--points {
    border: 2px solid rgba(255, 200, 60, 0.48);
    box-shadow:
      0 0 0 1px rgba(255, 215, 0, 0.14),
      0 0 26px rgba(255, 180, 0, 0.18),
      inset 0 0 14px rgba(255, 215, 0, 0.04);
  }
  @media (hover: hover) {
    .game-card.game-showcase--vip:hover,
    .trending-game-card.game-showcase--vip:hover {
      box-shadow:
        0 0 0 1px rgba(255, 215, 0, 0.18),
        0 0 28px rgba(255, 215, 0, 0.22),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    }
    .game-card.game-showcase--points:hover,
    .trending-game-card.game-showcase--points:hover {
      box-shadow:
        0 0 0 1px rgba(255, 140, 0, 0.12),
        0 0 24px rgba(255, 120, 0, 0.16),
        inset 0 1px 0 rgba(255, 160, 40, 0.08);
    }
    .game-card.game-showcase--vip.game-showcase--points:hover,
    .trending-game-card.game-showcase--vip.game-showcase--points:hover {
      box-shadow:
        0 0 0 1px rgba(255, 215, 0, 0.2),
        0 0 32px rgba(255, 190, 0, 0.24),
        inset 0 0 16px rgba(255, 215, 0, 0.06);
    }
  }

  .carousel-slide.game-showcase--vip .featured-slide-info,
  .carousel-slide-forum.game-showcase--vip .featured-slide-info {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.04) 0%, transparent 100%);
  }
  .carousel-slide.game-showcase--points .featured-slide-info,
  .carousel-slide-forum.game-showcase--points .featured-slide-info {
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.05) 0%, transparent 100%);
  }

  .game-card-title .game-card-points-icon,
  .trending-game-card-title .game-card-points-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 2px;
    font-size: 10px;
  }
  .trending-game-card-title .game-card-points-icon {
    font-size: 12px;
  }

  .btn.btn-sm.game-card-btn,
  a.btn.btn-sm.game-card-btn,
  .btn.btn-sm.trending-game-card-btn,
  a.btn.btn-sm.trending-game-card-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 28px;
    min-height: 28px;
    max-height: 28px;
    padding: 0 10px;
    line-height: 1;
    font-size: 12px;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
  }
  .btn.btn-sm.game-card-btn.btn-outline,
  a.btn.btn-sm.game-card-btn.btn-outline,
  .btn.btn-sm.trending-game-card-btn.btn-outline,
  a.btn.btn-sm.trending-game-card-btn.btn-outline {
    border-color: var(--red);
  }

  /* Trending games (Bu Hafta Popüler) */
  .trending-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 12px 0;
  }
  .trending-game-card {
    background: var(--bg2);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
  }
  .trending-game-card-cover-wrap {
    position: relative;
    flex-shrink: 0;
  }
  .trending-game-card-cover-link {
    display: block;
    height: 160px;
  }
  .trending-game-card-cover-wrap .spoiler-container {
    height: 160px;
  }
  .trending-game-card-cover-wrap .spoiler-container .spoiler-image,
  .trending-game-card-cover-wrap .spoiler-container img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
  }
  .trending-game-card-cover {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
  }
  .trending-game-card-cover--empty {
    background: var(--bg3);
  }
  .trending-game-card-rank {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #1a1a1a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
  }
  .trending-game-card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 168px;
  }
  .trending-game-card-top {
    flex: 1;
  }
  .trending-game-card-title {
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--text);
    text-decoration: none;
  }
  .trending-game-card-title:hover {
    color: var(--cyan);
  }
  .trending-game-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
  }
  .trending-game-card-tag {
    padding: 4px 8px;
    background: var(--bg3);
    color: var(--muted);
    border-radius: 12px;
    font-size: 11px;
  }
  .trending-game-card-footer {
    margin-top: auto;
    padding-top: 4px;
  }
  .trending-game-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--muted);
  }
  .trending-game-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .trending-game-card-actions {
    margin-top: 8px;
  }

  /* Game page feedback tabs (comments / bug reports) */
  .game-feedback-section {
    margin-top: 20px;
  }
  .game-download-bar {
    margin: 0;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
  }
  .game-download-bar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    border-left: 3px solid var(--red);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }
  .game-download-bar-header i {
    color: var(--red);
    font-size: 14px;
  }
  .game-download-bar-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
  }
  .link {
    color: inherit;
    text-decoration: none;
  }
  .link.link--external.has-favicon,
  .btn.link.link--external.has-favicon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .link.link--external.has-favicon::before,
  .btn.link.link--external.has-favicon::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-image: var(--link-favicon);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
  }
  .game-download-bar-body--grouped {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .game-download-platform-group + .game-download-platform-group {
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .game-download-platform-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--platform-accent, #fff);
  }
  .game-download-platform-title i {
    font-size: 16px;
  }
  .game-download-platform-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .game-download-platform-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .game-download-platform-form {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.15);
  }
  .game-download-platform-form__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
  }
  .game-download-platform-form__add {
    margin-top: 8px;
  }
  .game-download-bar-admin {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 14px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
  }
  .game-download-bar-header + .game-download-bar-admin {
    border-top: none;
    background: transparent;
  }
  .game-download-bar-body + .game-download-bar-admin {
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
    padding-top: 10px;
  }
  .game-info-widget {
    margin-top: 0;
    margin-bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .game-info-widget .widget-body {
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .section-block > .widget + .game-download-bar {
    margin-top: -1px;
  }
  .game-feedback-widget {
    margin-bottom: 0;
  }
  .game-page-tabs > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .game-page-tab-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 14px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
  }
  .game-page-tab-buttons label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: color var(--transition), background var(--transition), box-shadow var(--transition);
    border: 1px solid transparent;
  }
  .game-page-tab-buttons label i {
    font-size: 14px;
    opacity: 0.85;
  }
  .game-page-tab-buttons label:hover {
    color: #fff;
    background: rgba(255,255,255,.04);
  }
  .game-page-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }
  #game-tab-comments:checked ~ .game-page-tab-buttons label[for="game-tab-comments"] {
    color: #fff;
    background: var(--bg2);
    border-color: var(--border);
    box-shadow: inset 3px 0 0 var(--red);
  }
  #game-tab-reports:checked ~ .game-page-tab-buttons label[for="game-tab-reports"] {
    color: #fff;
    background: var(--bg2);
    border-color: var(--border);
    box-shadow: inset 3px 0 0 var(--red);
  }
  #game-tab-comments:checked ~ .game-page-tab-buttons label[for="game-tab-comments"] .game-page-tab-count {
    background: rgba(230,57,70,.2);
    color: #ff8a8a;
  }
  #game-tab-reports:checked ~ .game-page-tab-buttons label[for="game-tab-reports"] .game-page-tab-count {
    background: rgba(230,57,70,.2);
    color: #ff8a8a;
  }
  .game-page-tab-buttons label.game-page-tab--closed {
    color: #ff8a8a;
    border: 1px solid rgba(229, 83, 83, 0.45);
    background: rgba(229, 83, 83, 0.1);
  }
  .game-page-tab-buttons label.game-page-tab--closed i {
    color: #ff6b6b;
  }
  #game-tab-comments:checked ~ .game-page-tab-buttons label.game-page-tab--closed {
    color: #fff;
    background: rgba(229, 83, 83, 0.28);
    border-color: rgba(229, 83, 83, 0.65);
    box-shadow: inset 3px 0 0 #e55353;
  }
  .game-page-tab-panel { display: none; }
  #game-tab-comments:checked ~ .game-page-tab-panel--comments,
  #game-tab-reports:checked ~ .game-page-tab-panel--reports {
    display: block;
  }
  .game-page-tab-inner {
    padding: 16px;
    background: var(--bg2);
  }
  .game-feedback-alert {
    margin-bottom: 14px;
  }
  .game-feedback-compose {
    margin-bottom: 18px;
    padding: 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .game-feedback-compose-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .game-feedback-compose-label + .game-feedback-select,
  .game-feedback-compose-label + .game-feedback-textarea {
    margin-bottom: 12px;
  }
  .game-feedback-compose-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .game-feedback-textarea,
  .game-feedback-select {
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
  }
  .game-feedback-textarea:focus,
  .game-feedback-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(230,57,70,.12);
  }
  .game-feedback-textarea {
    resize: vertical;
    min-height: 96px;
  }
  .game-feedback-select {
    min-height: 42px;
  }
  .game-feedback-login-hint,
  .game-feedback-info-box {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    line-height: 1.5;
  }
  .game-feedback-login-hint {
    background: var(--bg3);
    border: 1px dashed var(--border);
    color: var(--muted);
    text-align: center;
  }
  .game-feedback-login-hint a {
    color: var(--cyan);
    font-weight: 600;
  }
  .game-feedback-info-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(0,188,212,.08);
    border: 1px solid rgba(0,188,212,.2);
    color: #b8e8ef;
  }
  .game-feedback-info-box i {
    color: var(--cyan);
    margin-top: 2px;
    flex-shrink: 0;
  }
  .game-feedback-info-box p {
    margin: 0;
  }
  .game-feedback-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .game-comments-load-more-wrap {
    margin-top: 10px;
    padding-top: 2px;
  }
  .game-feedback-item {
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg3);
    transition: border-color var(--transition);
  }
  .game-feedback-item--comment {
    border-left: 3px solid var(--red);
  }
  .game-feedback-item--report {
    border-left: 3px solid var(--red);
  }
  .game-feedback-item--edit {
    background: var(--bg2);
    border: 2px solid var(--red);
    border-left: 3px solid var(--red);
  }
  .game-feedback-item--comment,
  .game-feedback-item--report {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .game-feedback-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 0;
    width: 100%;
  }
  .game-feedback-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .game-feedback-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    flex-shrink: 0;
  }
  .game-feedback-meta {
    flex: 1;
    min-width: 0;
  }
  .game-feedback-meta-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
  }
  .game-feedback-author:not(.username-color) {
    color: var(--cyan);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
  }
  .game-feedback-author.username-color:hover {
    filter: brightness(1.12);
  }
  .game-feedback-author:not(.username-color):hover {
    color: #fff;
  }
  .game-feedback-date {
    color: var(--muted);
    font-size: 11px;
  }
  .game-feedback-meta-top .post-edited-tag {
    font-size: 11px;
  }
  .game-feedback-body {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    white-space: pre-wrap;
    word-break: break-word;
  }
  .game-feedback-body.post-rich-content {
    white-space: normal;
  }
  .game-feedback-body.post-rich-content p { margin: 0 0 8px; }
  .game-feedback-body.post-rich-content p:last-child { margin-bottom: 0; }
  .game-feedback-body.post-rich-content .post-spoiler--block { margin: 8px 0; }
  .game-feedback-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
  }
  .game-feedback-actions form {
    display: inline;
  }
  .game-feedback-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--muted);
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    text-decoration: none;
  }
  .game-feedback-action-btn:hover {
    color: #fff;
    border-color: var(--red);
    background: rgba(230,57,70,.12);
  }
  .game-report-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(230,57,70,.12);
    border: 1px solid rgba(230,57,70,.28);
    color: #ffb4b4;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .game-report-priority-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(255,193,7,.12);
    border: 1px solid rgba(255,193,7,.28);
    color: #ffd966;
    font-size: 10px;
    font-weight: 700;
  }
  .game-report-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .game-report-status-badge i {
    font-size: 10px;
  }
  .game-report-status--pending {
    background: rgba(255,193,7,.12);
    border: 1px solid rgba(255,193,7,.28);
    color: #ffd966;
  }
  .game-report-status--accepted {
    background: rgba(76,175,80,.12);
    border: 1px solid rgba(76,175,80,.28);
    color: #9be7a3;
  }
  .game-report-status--fixed {
    background: rgba(0,188,212,.12);
    border: 1px solid rgba(0,188,212,.28);
    color: #8de7f3;
  }
  .game-report-status--rejected {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--muted);
  }
  .game-feedback-item--report-pending {
    border-left-color: #ffc107;
  }
  .game-feedback-item--report-accepted {
    border-left-color: #4caf50;
  }
  .game-feedback-item--report-fixed {
    border-left-color: var(--cyan);
  }
  .game-feedback-item--report-rejected {
    opacity: 0.82;
  }
  .game-report-review-form {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
  }
  .game-report-review-form--inline {
    padding-top: 10px;
  }
  .game-report-review-fields {
    margin-bottom: 10px;
    max-width: 220px;
  }
  .game-report-review-select {
    min-height: 38px;
  }
  .game-report-review-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .game-feedback-empty {
    padding: 28px 16px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    background: rgba(255,255,255,.02);
  }
  .game-feedback-empty i {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
    opacity: 0.45;
  }
  .game-feedback-empty p {
    margin: 0;
    font-size: 14px;
  }
  .game-feedback-footer-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .featured-carousel-shell:not(.featured-carousel-shell--steam) .featured-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.82;
    transition: background 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
  }
  .featured-carousel-shell:not(.featured-carousel-shell--steam) .featured-carousel-nav:hover {
    background: rgba(0, 0, 0, 0.88);
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
  }
  .featured-carousel-shell:not(.featured-carousel-shell--steam) .featured-carousel-nav:active {
    transform: translateY(-50%) scale(0.94);
  }
  .featured-carousel-shell:not(.featured-carousel-shell--steam) .featured-carousel-nav.prev { left: 10px; }
  .featured-carousel-shell:not(.featured-carousel-shell--steam) .featured-carousel-nav.next { right: 10px; }
  .featured-carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  .featured-carousel-dots .carousel-dot,
  .featured-carousel-dots .carousel-dot-forum {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.32s ease, transform 0.32s ease, box-shadow 0.32s ease;
  }
  .featured-carousel-dots .carousel-dot.is-active,
  .featured-carousel-dots .carousel-dot-forum.is-active {
    background: var(--cyan);
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.45);
  }
  .featured-carousel-dots .carousel-dot:hover,
  .featured-carousel-dots .carousel-dot-forum:hover {
    background: rgba(255, 255, 255, 0.7);
  }
  .featured-carousel-shell--steam .featured-carousel-dots .carousel-dot,
  .featured-carousel-shell--steam .featured-carousel-dots .carousel-dot-forum {
    width: 12px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.18);
    transform: none;
    box-shadow: none;
  }
  .featured-carousel-shell--steam .featured-carousel-dots .carousel-dot.is-active,
  .featured-carousel-shell--steam .featured-carousel-dots .carousel-dot-forum.is-active {
    background: var(--red);
    width: 18px;
    height: 4px;
    transform: none;
    box-shadow: none;
  }

  .create-bar    { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
  
  /* =========================================================
     SIDEBAR
     ========================================================= */
  .sidebar { display: flex; flex-direction: column; gap: 16px; }
  .widget {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  .widget-header {
    background: var(--bg3);
    border-left: 3px solid var(--red);
    padding: 10px 14px;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
  }
  .widget-body { padding: 12px 14px; }
  .quick-login-turnstile {
    width: 100%;
    margin-bottom: 12px;
    overflow: hidden;
    height: 65px;
  }
  .quick-login-turnstile__inner {
    width: 300px;
    height: 65px;
    transform-origin: top left;
  }
  .quick-login-turnstile .cf-turnstile {
    width: 300px;
    height: 65px;
  }
  
  .user-stat { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
  .user-stat:last-child { border-bottom: none; }
  .user-stat .val { color: var(--cyan); font-weight: 700; }
  
  .top-user-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--border); }
  .top-user-row:last-child { border-bottom: none; }
  .top-user-row img    { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
  .top-user-row .tu-name:not(.username-color) { color: var(--cyan); font-size: 13px; font-weight: 600; }
  .top-user-row .tu-pts  { color: var(--gold); font-size: 12px; margin-left: auto; display: inline-flex; align-items: center; gap: 4px; }
  .top-user-row .tu-time { color: var(--cyan); font-size: 12px; margin-left: auto; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }

  .widget-active-tabs {
    display: flex;
    gap: 8px;
    margin: 12px 14px 10px;
    padding: 0;
    background: transparent;
  }
  .widget-active-tab {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg3);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    padding: 8px 10px;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition);
  }
  .widget-active-tab.is-active {
    color: #fff;
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.12);
    box-shadow: inset 0 0 0 1px rgba(230, 57, 70, 0.25);
  }
  .widget-active-tab:hover:not(.is-active) {
    color: #ddd;
    border-color: #444;
    background: #161616;
  }
  .widget-active-panel[hidden] {
    display: none !important;
  }
  #topActiveUsersWidget .widget-active-panel {
    padding-top: 4px;
  }
  .widget-active-empty {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
  }
  
  .cat-list-item { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
  .cat-list-item:last-child { border-bottom: none; }
  .cat-list-item.is-active a,
  .cat-list-item a.is-active { color: var(--red); font-weight: 700; }
  .cat-dot   { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
  .cat-count { color: var(--muted); font-size: 12px; }

  .widget-discord-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px;
  }
  .widget-discord-text {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }
  .widget-discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-color: rgba(88, 101, 242, 0.45);
    color: #dbe1ff;
  }
  .widget-discord-btn .fab.fa-discord {
    color: #5865f2;
  }
  @media (hover: hover) {
    .widget-discord-btn:hover {
      background: rgba(88, 101, 242, 0.15);
      border-color: rgba(88, 101, 242, 0.6);
      color: #fff;
    }
  }

  .category-grid-wrap {
    padding: 14px;
  }
  .category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .category-grid-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: inherit;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition);
  }
  /* Center lone card on last row (7 categories → VIP in middle column) */
  .category-grid-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
  @media (max-width: 820px) {
    .category-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .category-grid-card:last-child:nth-child(3n + 1) {
      grid-column: auto;
    }
    .category-grid-card:last-child:nth-child(2n + 1) {
      grid-column: 1 / -1;
      width: calc(50% - 5px);
      justify-self: center;
    }
  }
  @media (max-width: 560px) {
    .category-grid {
      grid-template-columns: 1fr;
    }
    .category-grid-card:last-child:nth-child(2n + 1) {
      grid-column: auto;
      width: auto;
      justify-self: stretch;
    }
  }
  .category-grid-card:hover,
  .category-grid-card.is-active {
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.08);
  }
  .category-grid-card--vip {
    border-color: rgba(255, 215, 0, 0.22);
  }
  .category-grid-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
  }
  .category-grid-body {
    flex: 1;
    min-width: 0;
  }
  .category-grid-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
  }
  .category-grid-desc {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: var(--muted);
  }
  .category-grid-count {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px 8px;
    align-self: center;
  }
  .post-badge-link {
    color: inherit;
    text-decoration: none;
  }
  .post-badge-link:hover {
    color: #fff;
  }
  .post-row--profile .post-title-link {
    flex: 1;
    min-width: 0;
  }
  .post-row--profile .post-meta {
    flex-shrink: 0;
  }

  /* Category view */
  .category-view {
    margin-bottom: 8px;
  }
  .category-view-intro {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px 16px;
    margin-bottom: 20px;
  }
  .category-view-intro .category-breadcrumb {
    margin-bottom: 14px;
  }
  .category-view-intro .category-page-header {
    margin-bottom: 8px;
  }
  .section-block-body {
    background: var(--bg2);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
  }
  .section-block-body .post-list {
    margin-bottom: 0;
    border-radius: 0;
  }
  .category-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--muted);
  }
  .category-breadcrumb a {
    color: var(--muted);
    transition: color var(--transition);
  }
  .category-breadcrumb a:hover {
    color: var(--red);
  }
  .category-breadcrumb-sep {
    color: #555;
    font-size: 11px;
  }
  .category-breadcrumb-current {
    color: #fff;
    font-weight: 600;
  }
  .category-page-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
  }
  .category-page-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(255,255,255,.04);
  }
  .category-page-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
  .category-page-desc {
    margin: 0 0 20px 30px;
    max-width: 720px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
  }
  .category-auto-feed-note {
    margin: 0 0 0 30px;
    max-width: 720px;
    padding: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
  }
  .popular-feed-subtitle {
    color: var(--muted);
    font-size: 12px;
    padding: 12px 16px 10px;
    margin: 0;
    border-bottom: 1px solid var(--border);
  }
  .popular-feed-empty {
    padding: 18px 16px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
  }
  .popular-score { color: #ffcc00 !important; }
  .popular-feed-section { margin-bottom: 8px; }
  
  /* =========================================================
     AUTH FORMS
     ========================================================= */
  .auth-wrapper { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 50px); padding: 30px 16px; }
  .auth-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; width: 100%; max-width: 420px; padding: 36px 32px; }
  .auth-logo { text-align: center; margin-bottom: 24px; }
  .auth-logo-img {
    display: block;
    width: min(220px, 80vw);
    height: auto;
    margin: 0 auto 12px;
  }
  .auth-logo .s-icon { width: 60px; height: 60px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 900; color: #fff; margin: 0 auto 10px; }
  .auth-logo h2 { font-size: 20px; color: #fff; margin-top: 4px; }
  .auth-logo p  { color: var(--muted); font-size: 13px; margin-top: 4px; }
  .auth-form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin: 4px 0 16px;
  }
  .auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    user-select: none;
  }
  .auth-remember input { margin: 0; }
  .auth-forgot-link {
    font-size: 13px;
    color: var(--cyan);
    text-decoration: none;
    white-space: nowrap;
  }
  .auth-forgot-link:hover { text-decoration: underline; }
  
  .form-group { margin-bottom: 16px; }
  .form-group > label { display: block; margin-bottom: 6px; font-size: 13px; color: #ccc; }
  .form-group input:not([type="checkbox"]):not([type="radio"]),
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
  }
  .form-group input[type="checkbox"],
  .form-group input[type="radio"] {
    width: auto;
    padding: 0;
    margin: 0;
  }
  .form-group input:focus:not([type="checkbox"]):not([type="radio"]),
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(230,57,70,.15); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-hint { font-size: 11px; color: var(--muted); margin-top: 4px; }

  /* =========================================================
     MAINTENANCE MODE
     ========================================================= */
  .maintenance-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background:
      radial-gradient(ellipse 80% 60% at 50% -10%, rgba(230, 57, 70, 0.12), transparent 55%),
      var(--bg);
  }
  .maintenance-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 32px 28px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  }
  .maintenance-card__logo {
    display: block;
    width: min(200px, 70vw);
    height: auto;
    margin: 0 auto 20px;
  }
  .maintenance-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.12);
    border: 1px solid rgba(230, 57, 70, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 22px;
  }
  .maintenance-card__title {
    margin: 0 0 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
  }
  .maintenance-card__lead {
    margin: 0 0 24px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
  }
  .maintenance-card__form {
    margin-top: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .maintenance-card__form .form-group {
    margin-bottom: 14px;
  }
  .maintenance-card__form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #ddd;
  }
  .maintenance-card__form .form-group label i {
    color: var(--red);
    width: 14px;
    text-align: center;
  }
  .maintenance-card__form input {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
  }
  .maintenance-card__form input::placeholder {
    color: #666;
    text-transform: none;
    letter-spacing: normal;
    font-size: 13px;
  }
  .maintenance-card__form input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
  }
  .maintenance-card__ip {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
  }
  .maintenance-card__ip span {
    color: #ddd;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: 0.02em;
  }
  .maintenance-card__submit {
    width: 100%;
    margin-top: 4px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
  }
  .maintenance-card__hint {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.55;
    color: var(--muted);
    text-align: center;
  }
  .maintenance-card__footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    text-align: center;
  }
  .maintenance-card__admin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color var(--transition);
  }
  .maintenance-card__admin-link:hover {
    color: #fff;
  }
  .maintenance-card .alert {
    margin-bottom: 16px;
    text-align: left;
  }
  @media (max-width: 480px) {
    .maintenance-card {
      padding: 28px 20px 22px;
    }
    .maintenance-card__title {
      font-size: 21px;
    }
  }

  .password-req-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.6;
  }
  .password-req-list li {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .password-req-list li::before {
    content: '○';
    color: var(--muted);
    font-size: 10px;
    flex-shrink: 0;
  }
  .password-req-list li.met { color: #7dcea0; }
  .password-req-list li.met::before { content: '●'; color: #2ecc71; }
  .age-confirm-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg3);
    font-size: 13px;
    line-height: 1.5;
  }
  .age-confirm-label input { width: auto; margin-top: 3px; flex-shrink: 0; }
  .age-confirm-label a {
    color: var(--cyan);
    text-decoration: underline;
  }
  .age-confirm-label a:hover {
    color: #fff;
  }
  
  .alert { padding: 10px 14px; border-radius: var(--radius); font-size: 13px; margin-bottom: 16px; }
  .alert-error   { background: rgba(230,57,70,.12); border: 1px solid var(--red);  color: #ff8a8a; }
  .alert-success { background: rgba(76,175,80,.12);  border: 1px solid #4caf50;    color: #a5d6a7; }
  .alert-info    { background: rgba(0,188,212,.1);   border: 1px solid var(--cyan); color: var(--cyan); }
  
  .join-team-page { padding-top: 40px; max-width: 960px; margin: 0 auto; }
  .join-team-hero {
    text-align: center; padding: 32px 24px; margin-bottom: 24px;
    background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  }
  .join-team-hero h1 { color: var(--text); margin-bottom: 8px; font-size: 28px; }
  .join-team-hero p { color: var(--muted); font-size: 15px; max-width: 560px; margin: 0 auto; }
  .join-team-section-body { padding: 16px; color: var(--text); line-height: 1.6; }
  .join-team-section-body p { margin: 0 0 12px; }
  .join-team-callout {
    background: var(--bg3); padding: 16px; border-radius: var(--radius);
    border: 1px solid var(--border); margin-top: 16px;
  }
  .join-team-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .join-team-info-grid--facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .join-team-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg3);
    min-height: 100%;
  }
  .join-team-info-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.14);
    border: 1px solid rgba(230, 57, 70, 0.35);
    color: var(--red);
    font-size: 22px;
    flex-shrink: 0;
  }
  .join-team-info-card-icon--cyan {
    background: rgba(0, 188, 212, 0.12);
    border-color: rgba(0, 188, 212, 0.35);
    color: var(--cyan);
  }
  .join-team-info-card-icon--gold {
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.35);
    color: #ffc107;
  }
  .join-team-info-card-icon--green {
    background: rgba(107, 203, 119, 0.12);
    border-color: rgba(107, 203, 119, 0.35);
    color: #6bcb77;
  }
  .join-team-info-card-icon--discord {
    background: rgba(88, 101, 242, 0.16);
    border-color: rgba(88, 101, 242, 0.45);
    color: #5865f2;
  }
  .join-team-info-card-icon--cevirmen {
    background: rgba(52, 152, 219, 0.16);
    border-color: rgba(52, 152, 219, 0.45);
    color: #9fd4ff;
  }
  .join-team-info-card-icon--editor {
    background: rgba(155, 89, 182, 0.16);
    border-color: rgba(155, 89, 182, 0.45);
    color: #d9b3ff;
  }
  .join-team-info-card-icon--redaktor {
    background: rgba(230, 126, 34, 0.16);
    border-color: rgba(230, 126, 34, 0.45);
    color: #ffc58a;
  }
  .join-team-info-card--cevirmen {
    border-color: rgba(52, 152, 219, 0.28);
  }
  .join-team-info-card--editor {
    border-color: rgba(155, 89, 182, 0.28);
  }
  .join-team-info-card--redaktor {
    border-color: rgba(230, 126, 34, 0.28);
  }
  .join-team-info-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--text);
  }
  .join-team-info-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
  }
  .join-team-form { max-width: 100%; }
  .join-team-form label .fab.fa-discord {
    color: #5865f2;
  }
  .join-team-info-card-icon .fab.fa-discord {
    font-size: 24px;
  }

  .auth-switch a { color: var(--cyan); }
  .totp-code-input {
    font-size: 22px;
    letter-spacing: 0.25em;
    text-align: center;
    font-weight: 700;
  }
  .totp-setup-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-top: 12px;
  }
  .totp-qr-image {
    border-radius: 8px;
    background: #fff;
    padding: 8px;
  }
  .totp-secret-key {
    display: inline-block;
    padding: 8px 10px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    word-break: break-all;
  }
  .totp-backup-codes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    margin: 12px 0 0;
  }
  .totp-backup-codes code {
    display: block;
    padding: 8px 10px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    font-size: 13px;
  }
  .totp-disable-form { margin-top: 8px; max-width: 420px; }
  
  /* =========================================================
     AVATAR UPLOAD
     ========================================================= */
  .avatar-upload-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
  .avatar-preview     { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--red); }
  
  /* =========================================================
     POST VIEW
     ========================================================= */
  .post-breadcrumb-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  .post-breadcrumb {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
  }
  .post-breadcrumb a {
    color: var(--cyan);
    text-decoration: none;
  }
  .post-breadcrumb a:hover {
    color: #fff;
  }
  .post-breadcrumb-actions {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
  }
  .post-breadcrumb-delete-form {
    display: inline-flex;
    margin: 0;
  }
  .post-deleted-staff-banner {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 16px;
    background: rgba(38, 18, 12, 0.97);
    border-bottom: 1px solid rgba(255, 87, 34, 0.45);
    color: #ffab91;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
  }
  .post-deleted-staff-banner__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    text-align: center;
  }
  .post-deleted-staff-banner__main i {
    margin-right: 6px;
    opacity: 0.9;
  }
  .post-deleted-staff-banner__meta {
    color: #ffccbc;
    white-space: nowrap;
  }
  body.post-deleted-staff-view .container {
    padding-top: calc(24px + var(--post-deleted-banner-offset, 44px)) !important;
  }
  .post-card { background: var(--bg2); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; }
  .post-card-header  { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
  .post-card-avatar-link { flex-shrink: 0; }
  .post-card-avatar  { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red); }
  .post-card-author-block {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .post-card-author-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .post-card-author-identity {
    flex: 1;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .post-card-author-actions {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
  }
  .post-card-author-actions .game-share {
    display: inline-flex;
  }
  .post-card-delete-btn {
    color: var(--red);
    border-color: var(--red);
  }
  .post-card-author-name:not(.username-color) { color: var(--cyan); font-weight: 700; font-size: 15px; }
  .post-card-meta {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
  }
  .post-card-title   { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.4; }
  .post-card-body    { line-height: 1.8; color: #ccc; font-size: 14px; word-break: break-word; }
  .post-rich-content p { margin: 0 0 12px; }
  .post-rich-content p:last-child { margin-bottom: 0; }
  .post-h { color: #fff; font-weight: 700; line-height: 1.35; margin: 18px 0 10px; }
  .post-h--main { font-size: 1.35em; }
  .post-h--sub  { font-size: 1.15em; color: #eee; }
  .post-h:first-child { margin-top: 0; }
  .post-rich-content ul.post-rich-list,
  .post-rich-content ol.post-rich-list {
    margin: 8px 0 14px 0;
    padding-left: 0;
    list-style: none;
  }
  .post-rich-content ul.post-rich-list li {
    position: relative;
    padding-left: 1.15em;
    margin-bottom: 6px;
  }
  .post-rich-content ul.post-rich-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 1px rgba(230, 57, 70, 0.25);
  }
  .post-rich-content ol.post-rich-list--ordered {
    counter-reset: post-ol;
  }
  .post-rich-content ol.post-rich-list--ordered li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 6px;
    counter-increment: post-ol;
  }
  .post-rich-content ol.post-rich-list--ordered li::before {
    content: counter(post-ol) '.';
    position: absolute;
    left: 0;
    top: 0;
    min-width: 1.2em;
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.95em;
  }
  .post-quote {
    margin: 12px 0;
    padding: 10px 14px;
    border-left: 3px solid var(--cyan);
    background: rgba(0, 212, 255, 0.06);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: #bbb;
  }
  .post-quote p { margin: 0; }
  .post-hr { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
  .post-rich-content a { color: var(--cyan); text-decoration: underline; }
  .post-rich-content a.mention-link {
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
  }
  .post-rich-content a.mention-link:hover { text-decoration: underline; }
  .post-edited-tag { color: var(--muted); font-style: italic; }

  /* Post text spoilers (dashed box, click to reveal — no blur / no label) */
  .post-rich-content .post-spoiler {
    cursor: pointer;
    border-radius: 3px;
    max-width: 100%;
    vertical-align: baseline;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }
  .post-rich-content .post-spoiler:focus,
  .post-rich-content .post-spoiler:focus-visible {
    outline: none;
    box-shadow: none;
  }
  .post-rich-content .post-spoiler--block {
    display: block;
    margin: 8px 0;
  }
  .post-rich-content .post-spoiler-content {
    display: inline;
    color: transparent;
    background: rgba(0, 0, 0, 0.42);
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: 3px;
    padding: 0 5px;
    user-select: none;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
  .post-rich-content .post-spoiler--block .post-spoiler-content {
    display: block;
    padding: 5px 8px;
    min-height: 1.35em;
  }
  .post-rich-content .post-spoiler.revealed .post-spoiler-content {
    color: inherit;
    background: transparent;
    border-color: transparent;
    user-select: text;
    padding: 0;
  }
  .post-rich-content .post-spoiler.revealed.post-spoiler--block .post-spoiler-content {
    min-height: 0;
  }
  .post-rich-content .post-spoiler-mask { display: none !important; }

  /* Post content editor toolbar */
  .post-editor { display: flex; flex-direction: column; gap: 8px; }
  .post-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .post-editor-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    font-size: 12px;
    color: var(--text);
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }
  .post-editor-btn:hover { background: rgba(230,57,70,.12); border-color: var(--red); color: #fff; }
  .post-editor-btn:focus { outline: none; }
  .post-editor-btn:focus-visible {
    outline: 2px solid rgba(0, 212, 255, 0.4);
    outline-offset: 1px;
  }
  @media (hover: none) {
    .post-editor-btn:hover {
      background: var(--bg2);
      border-color: var(--border);
      color: var(--text);
    }
    .post-editor-btn:active {
      background: rgba(230,57,70,.12);
      border-color: var(--red);
      color: #fff;
    }
  }
  .post-editor-btn--spoiler {
    font-size: 11px;
    padding: 4px 9px;
  }
  .post-editor-btn--mention { color: var(--cyan); }
  .post-editor-btn--mention:hover { color: #fff; }
  .post-editor-btn--locked {
    opacity: 0.45;
    cursor: not-allowed;
  }
  .post-editor-btn--locked:hover {
    background: transparent;
    border-color: var(--border);
    color: var(--muted);
  }

  .profile-cover-gate {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 204, 0, 0.25);
    color: #ffcc00;
    font-size: 12px;
    font-weight: 600;
  }
  .profile-cover-gate i { margin-right: 6px; }

  .level-feature-grid { display: grid; gap: 12px; }
  .level-feature-card {
    background: var(--bg3);
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
  }
  .level-feature-card.is-unlocked { border-color: rgba(46, 204, 113, 0.28); }
  .level-feature-card.is-locked { border-color: rgba(255, 204, 0, 0.18); }
  .level-feature-card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .level-feature-card-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    color: var(--cyan);
  }
  .level-feature-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
  }
  .level-feature-card-meta {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .level-feature-card-desc {
    font-size: 12px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
  }
  .level-feature-status-panel {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 212, 255, 0.22);
    background: rgba(0, 212, 255, 0.05);
    font-size: 13px;
    color: var(--text);
  }
  .post-editor-textarea {
    border-radius: 0 0 var(--radius) var(--radius);
    border-top: none;
  }
  .post-editor-hint code {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 11px;
    color: var(--cyan);
  }
  .post-draft-status {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
  }
  .post-draft-restore {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .post-draft-restore-btn,
  .post-draft-discard-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
    color: inherit;
  }
  .post-draft-restore-btn:hover,
  .post-draft-discard-btn:hover {
    opacity: 0.85;
  }
  .post-draft-discard-btn {
    color: var(--muted);
  }
  .post-card-image   { margin-top: 16px; max-width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }
  .post-card-footer  { display: flex; align-items: center; gap: 16px; margin-top: 20px; padding: 14px 0; border-top: 1px solid var(--border); flex-wrap: wrap; }
  .post-card-share-mobile {
    display: none;
  }

  /* VIP locked post preview */
  .post-card-vip-preview {
    border-color: rgba(255, 215, 0, 0.22);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.04) 0%, var(--bg2) 120px);
  }
  .post-card-vip-preview .post-card-title {
    margin-bottom: 18px;
  }
  .vip-content-gate {
    text-align: center;
    padding: 32px 24px 36px;
    border-radius: var(--radius);
    background:
      radial-gradient(ellipse at top, rgba(255, 215, 0, 0.12) 0%, transparent 55%),
      var(--bg3);
    border: 1px solid rgba(255, 215, 0, 0.22);
  }
  .vip-gate-lock-ring {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.12);
    font-size: 26px;
    color: var(--gold);
  }
  .vip-gate-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
  }
  .vip-gate-desc {
    max-width: 460px;
    margin: 0 auto 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
  }
  .vip-gate-desc strong {
    color: var(--gold);
    font-weight: 700;
  }
  .vip-gate-perks {
    list-style: none;
    margin: 0 auto 24px;
    padding: 0;
    max-width: 520px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    text-align: center;
  }
  .vip-gate-perks li {
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
  }
  .vip-gate-perks li::before {
    content: '•';
    color: var(--gold);
    margin-right: 6px;
  }
  .vip-gate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffe066 0%, #ffb300 100%);
    color: #1a1200;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(255, 179, 0, 0.22);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  }
  @media (hover: hover) {
    .vip-gate-btn:hover {
      color: #1a1200;
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(255, 179, 0, 0.32);
      filter: brightness(1.03);
    }
  }
  .game-points-gate {
    padding: 28px 24px;
    text-align: center;
    border: 1px dashed rgba(255, 215, 0, 0.35);
    border-radius: var(--radius);
    background: rgba(255, 215, 0, 0.05);
  }
  .game-points-gate-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    font-size: 22px;
  }
  .game-points-gate-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
  }
  .game-points-gate-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .game-points-gate-desc strong {
    color: var(--gold);
  }
  .game-points-gate-form {
    margin: 0;
  }
  .game-points-gate-btn {
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .game-points-gate-btn--insufficient {
    opacity: 0.88;
  }
  .game-points-gate-alert {
    margin-top: 14px;
    text-align: left;
  }
  .game-points-gate-hint {
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
  }
  .vip-comments-locked {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding: 18px 16px;
    text-align: center;
    background: var(--bg2);
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
  }
  .vip-comments-locked i {
    color: var(--gold);
    font-size: 16px;
  }
  .vip-comments-locked a {
    color: var(--gold);
    font-weight: 700;
  }
  @media (hover: hover) {
    .vip-comments-locked a:hover { color: #ffe066; }
  }

  .like-btn {
    display: flex; align-items: center; gap: 6px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 6px 16px;
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
  }
  .like-btn:hover, .like-btn.liked { background: rgba(230,57,70,.15); border-color: var(--red); color: var(--red); }
  .like-btn .like-count { font-weight: 700; }
  .like-stat {
    display: flex; align-items: center; gap: 6px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 6px 16px;
    color: var(--muted);
    font-size: 14px;
    cursor: default;
  }
  .like-stat .like-count { font-weight: 700; }
  .views-info { color: var(--muted); font-size: 13px; }
  
  /* =========================================================
     COMMENTS
     ========================================================= */
  .comments-section { margin-bottom: 30px; }
  .comment-row   { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .comment-row:last-child { border-bottom: none; }
  .comment-avatar  { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
  .comment-author:not(.username-color)  { color: var(--cyan); font-weight: 600; font-size: 13px; }
  .comment-time    { color: var(--muted); font-size: 11px; }
  .comment-meta    { flex: 1; min-width: 0; }
  .comment-body    {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .comment-head    {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }
  .comment-meta-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
  }
  .comment-meta-top .post-edited-tag { font-size: 11px; }
  .comment-badges,
  .game-feedback-badges,
  .profile-badge-line,
  .team-member-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
  }
  .comment-badges,
  .game-feedback-badges {
    margin-top: 2px;
  }
  .profile-badge-line {
    margin-top: 5px;
  }
  .comment-badges:empty,
  .game-feedback-badges:empty { display: none; }
  .comment-text    { color: #ccc; font-size: 14px; margin: 0; line-height: 1.6; }
  .comment-text.post-rich-content p { margin: 0 0 8px; }
  .comment-text.post-rich-content p:last-child { margin-bottom: 0; }
  .comment-text .post-h--main { font-size: 1.1em; margin: 10px 0 6px; }
  .comment-text .post-h--sub  { font-size: 1.02em; margin: 8px 0 6px; }
  .comment-text .post-rich-list { margin: 6px 0 10px 0; }
  .comment-text .post-spoiler--block { margin: 8px 0; }
  .comment-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
  }
  .comment-actions form { display: inline; }
  .comment-row--edit { flex-direction: column; }
  .comment-edit-form { width: 100%; }
  .comment-form    { background: var(--bg2); border-radius: var(--radius); padding: 20px; }
  .comment-form h4 { margin-bottom: 12px; font-size: 15px; color: #fff; }
  .comment-form .post-editor--comment,
  .comment-row--edit .post-editor--comment {
    gap: 10px;
  }
  .comment-form .post-editor--comment .post-editor-toolbar,
  .comment-row--edit .post-editor--comment .post-editor-toolbar {
    padding: 6px;
    gap: 4px;
    border-radius: var(--radius);
  }
  .comment-form .post-editor--comment .post-editor-btn,
  .comment-row--edit .post-editor--comment .post-editor-btn {
    padding: 4px 8px;
    font-size: 11px;
  }
  .comment-form .post-editor--comment .post-editor-textarea,
  .comment-row--edit .post-editor--comment .post-editor-textarea {
    min-height: 100px !important;
    max-height: 220px;
    border-radius: var(--radius);
    border-top: 1px solid var(--border);
  }
  .comment-form .post-editor--comment .post-editor-textarea:focus,
  .comment-row--edit .post-editor--comment .post-editor-textarea:focus {
    border-color: var(--red);
    box-shadow: none;
  }

  .game-feedback-compose .post-editor--comment {
    gap: 8px;
    margin-bottom: 12px;
  }
  .game-feedback-compose .post-editor--comment .post-editor-toolbar {
    padding: 6px;
    gap: 4px;
    border-radius: var(--radius);
    background: var(--bg2);
    border: 1px solid var(--border);
  }
  .game-feedback-compose .post-editor--comment .post-editor-btn {
    padding: 4px 8px;
    font-size: 11px;
  }
  .game-feedback-compose .post-editor--comment .post-editor-textarea {
    width: 100%;
    box-sizing: border-box;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    border-top: 1px solid var(--border);
    padding: 12px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    min-height: 90px !important;
    max-height: 220px;
    resize: vertical;
    outline: none;
  }
  .game-feedback-compose .post-editor--comment .post-editor-textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(230,57,70,.12);
  }
  
  /* =========================================================
     CREATE POST
     ========================================================= */
  .create-post-wrap { max-width: 860px; margin: 30px auto; padding: 0 16px; }

  /* Game create / edit form */
  .game-form-page .page-title {
    margin-bottom: 6px;
  }
  .game-form-lead {
    color: var(--muted);
    font-size: 13px;
    margin: -4px 0 20px;
    line-height: 1.55;
  }
  .game-form-lead a {
    color: var(--cyan);
  }
  .game-form-section {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
  }
  .game-form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .game-form-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
  }
  .game-form-section__title i {
    color: var(--cyan);
    opacity: 0.9;
  }
  .game-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  @media (max-width: 640px) {
    .game-form-grid-2 {
      grid-template-columns: 1fr;
    }
  }
  .game-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }
  .game-form-actions--split {
    justify-content: space-between;
    align-items: center;
  }
  .game-form-actions__group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .game-form-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 18px;
    margin-bottom: 16px;
  }
  .game-form-card .card {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
  }
  .game-upload-zone {
    position: relative;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    transition: border-color 0.2s, background 0.2s;
  }
  .game-upload-zone:hover,
  .game-upload-zone.has-files {
    border-color: rgba(0, 212, 255, 0.38);
    background: rgba(0, 212, 255, 0.05);
  }
  .game-upload-zone.has-files .game-upload-zone__hint {
    display: none;
  }
  .game-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
  }
  .game-upload-zone__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    pointer-events: none;
  }
  .game-upload-zone__hint i {
    color: var(--cyan);
    font-size: 20px;
  }
  .game-upload-zone__label {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: var(--cyan);
    text-align: center;
    word-break: break-all;
  }
  .game-cover-preview-wrap {
    margin-top: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg3);
    max-width: 100%;
  }
  .game-cover-preview-wrap[hidden] {
    display: none !important;
  }
  .game-cover-preview {
    display: block;
    margin: 0;
    max-width: 100%;
    max-height: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .game-form .form-group > .game-form-check-row {
    margin-top: 10px;
    width: fit-content;
  }
  .game-form .game-form-check-row {
    position: static;
  }
  .game-form-grid-2 > .form-group {
    min-width: 0;
  }
  .game-cover-existing {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .game-cover-existing img {
    display: block;
    max-height: 220px;
    max-width: 100%;
  }
  .game-delete-cover-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.85);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.15s, transform 0.15s;
  }
  .game-delete-cover-btn:hover {
    background: rgba(255, 40, 40, 0.95);
    transform: scale(1.05);
  }
  .game-screenshots-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 12px;
  }
  .game-screenshots-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 12px;
  }
  .game-screenshot-preview-item {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg2);
  }
  .game-screenshot-preview-item img {
    width: 100%;
    aspect-ratio: 460 / 215;
    object-fit: cover;
    display: block;
  }
  .game-screenshot-preview-item .spoiler-toggle-label,
  .game-screenshot-sortable-item .spoiler-toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    font-size: 12px;
    background: var(--bg3);
    cursor: pointer;
    color: var(--text);
    margin: 0;
    position: static;
    bottom: auto;
    left: auto;
  }
  .game-download-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .game-download-link-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
  }
  .game-download-link-row input[type="text"],
  .game-download-link-row input[type="url"] {
    flex: 1 1 140px;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg3);
    color: var(--text);
    font-size: 14px;
  }
  .game-download-link-row input[type="url"] {
    flex: 2 1 200px;
  }
  .game-form-check-row {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s;
  }
  .game-form-check-row:hover {
    background: var(--bg3);
    border-color: var(--border);
  }
  .game-upload-overlay {
    position: fixed;
    inset: 0;
    z-index: 10100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 10, 16, 0.82);
    backdrop-filter: blur(4px);
  }
  .game-upload-overlay[hidden] {
    display: none !important;
  }
  .game-upload-overlay__card {
    width: min(420px, 100%);
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px 22px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  }
  .game-upload-overlay__icon {
    font-size: 36px;
    color: var(--cyan);
    margin-bottom: 12px;
  }
  .game-upload-overlay__title {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
  }
  .game-upload-overlay__sub {
    margin: 0 0 18px;
    font-size: 13px;
    color: var(--muted);
  }
  .game-upload-overlay__bar {
    height: 10px;
    border-radius: 999px;
    background: var(--bg4);
    overflow: hidden;
    margin-bottom: 10px;
  }
  .game-upload-overlay__fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--red));
    transition: width 0.15s ease;
  }
  .game-upload-overlay.is-indeterminate .game-upload-overlay__fill {
    width: 35% !important;
    animation: game-upload-indeterminate 1.1s ease-in-out infinite alternate;
  }
  @keyframes game-upload-indeterminate {
    from { transform: translateX(-30%); }
    to { transform: translateX(220%); }
  }
  .game-upload-overlay__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
  }
  .game-upload-overlay__pct {
    font-weight: 700;
    color: var(--cyan);
    font-size: 15px;
  }

  .post-quota-panel {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 16px;
  }
  .post-quota-panel--blocked {
    border-color: rgba(255, 204, 0, 0.35);
    background: rgba(255, 204, 0, 0.06);
  }
  .post-quota-panel-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    justify-content: space-between;
  }
  .post-quota-rank {
    font-size: 13px;
    font-weight: 700;
  }
  .post-quota-count {
    font-size: 13px;
    color: var(--text);
  }
  .post-quota-count strong {
    font-size: 18px;
    color: var(--cyan);
  }
  .post-quota-count--unlimited {
    color: #2ecc71;
    font-weight: 600;
  }
  .post-quota-used {
    color: var(--muted);
    font-size: 12px;
    margin-left: 4px;
  }
  .post-quota-note {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--text);
    line-height: 1.5;
  }
  .post-quota-note--muted {
    color: var(--muted);
  }
  .post-quota-note--warn {
    color: #ffcc00;
  }
  .post-quota-countdown {
    font-weight: 700;
    color: var(--cyan);
  }
  .post-quota-note--vip {
    color: var(--gold);
  }
  .post-quota-vip-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
  }

  .post-image-upload-box {
    position: relative;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    padding: 18px 16px;
    transition: border-color 0.2s, background 0.2s;
  }
  .post-image-upload-box:hover {
    border-color: rgba(0, 212, 255, 0.35);
    background: rgba(0, 212, 255, 0.04);
  }
  .post-image-upload-box input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
  }
  .post-image-upload-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    pointer-events: none;
  }
  .post-image-upload-hint i {
    color: var(--cyan);
    font-size: 18px;
  }
  .post-image-current {
    margin-bottom: 12px;
  }
  .post-image-current img {
    display: block;
    max-width: 240px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
  }
  .post-image-remove {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--muted);
  }
  .post-image-upload .img-preview {
    margin-top: 12px;
  }

  .post-image-gate {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 204, 0, 0.22);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.07) 0%, rgba(0, 212, 255, 0.04) 100%);
  }
  .post-image-gate-icon {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
  }
  .post-image-gate-icon-main {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
  }
  .post-image-gate-icon-main i {
    display: block;
    line-height: 1;
  }
  .post-image-gate-lock {
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg2);
    border: 1px solid rgba(255, 204, 0, 0.4);
    color: #ffcc00;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
  }
  .post-image-gate-lock i {
    display: block;
    font-size: 7px;
    line-height: 1;
  }
  .post-image-gate-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
  }
  .post-image-gate-text {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text);
  }
  .post-image-gate-text strong {
    color: var(--cyan);
  }
  .post-image-gate-vip {
    color: var(--gold) !important;
  }
  .post-image-gate-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .post-image-gate-meta span {
    color: #fff;
    font-weight: 700;
  }
  .post-image-gate-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
  }
  .post-image-gate-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.28);
    font-size: 9px;
    line-height: 1;
  }
  .post-image-gate-link:hover {
    color: #ffe066;
  }

  .page-title { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 20px; border-left: 4px solid var(--red); padding-left: 12px; }
  .card { background: var(--bg2); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
  
  /* =========================================================
     PROFILE
     ========================================================= */
  .premium-profile-card {
    position: relative;
    padding-bottom: 20px;
    background: var(--bg2);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 4px;
  }

  .site-main > .container:has(.premium-profile-card) {
    padding-bottom: 36px;
  }
  
  /* Cover banner — 3:1 (1500×500 style) so crop matches display */
  .profile-cover-banner {
    width: 100%;
    aspect-ratio: 3 / 1;
    max-height: 320px;
    min-height: 140px;
    background: linear-gradient(135deg, #1a0505, #0d0d1a, #000);
    position: relative;
    overflow: hidden;
  }
  .profile-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 0;
  }
  .profile-cover-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.6) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .cover-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.12);
    pointer-events: none;
  }
  .cover-actions {
    position: absolute;
    right: 14px;
    top: 12px;
    display: flex;
    gap: 8px;
    z-index: 25;
    pointer-events: auto;
  }
  .cover-file-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .cover-action-btn {
    background: rgba(0,0,0,.65);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), color var(--transition);
    backdrop-filter: blur(4px);
    -webkit-appearance: none;
    appearance: none;
  }
  .cover-action-btn:hover {
    background: rgba(230,57,70,.75);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-1px);
  }
  .cover-action-btn--danger {
    border-color: rgba(230,57,70,.5);
    color: #ffc9c9;
  }
  .cover-action-btn--danger:hover {
    background: rgba(230,57,70,.4);
    border-color: var(--red);
    color: #fff;
  }
  
  /* Avatar with online dot */
  .profile-meta-row {
    display: flex;
    align-items: flex-end;
    padding: 0 24px;
    margin-top: -55px;
    gap: 20px;
    z-index: 10;
    position: relative;
    margin-bottom: 16px;
    pointer-events: none;
  }
  .profile-meta-row > * {
    pointer-events: auto;
  }
  .profile-avatar-container {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg2);
    box-shadow: 0 4px 16px rgba(0,0,0,.6);
    background: #222;
  }
  .profile-avatar-container.has-avatar-border {
    overflow: visible;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }
  .profile-avatar-container.has-avatar-border .profile-user-avatar-slot,
  .profile-avatar-container.has-avatar-border .avatar-frame-wrap {
    width: 110px;
    height: 110px;
  }
  .profile-avatar-container.has-avatar-border .avatar-frame-wrap {
    display: block;
    position: relative;
    transition: filter var(--transition);
  }
  .profile-avatar-container.has-avatar-border .avatar-frame-border {
    z-index: 3;
  }
  .profile-avatar-container.has-avatar-border .avatar-upload-form {
    inset: 0;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
    pointer-events: none;
  }
  .profile-avatar-container.has-avatar-border .avatar-change-overlay {
    pointer-events: auto;
    font-size: 10px;
    padding: 6px 4px;
    gap: 2px;
  }
  .profile-avatar-container.has-avatar-border .avatar-change-overlay i {
    font-size: 18px;
  }
  .profile-avatar-container.has-avatar-border .avatar-change-overlay span {
    max-width: 72px;
    line-height: 1.15;
  }
  .profile-user-avatar-slot {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
  }
  .profile-avatar-container.is-editable.has-avatar-border:hover .profile-user-avatar-slot .avatar-frame-wrap {
    filter: none;
  }
  .profile-avatar-container:not(.has-avatar-border) .profile-user-avatar-slot > img,
  .profile-avatar-container:not(.has-avatar-border) > img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: none;
    background: #222;
    box-shadow: none;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: filter var(--transition);
  }
  .profile-avatar-container.is-editable:not(.has-avatar-border):hover .profile-user-avatar-slot > img,
  .profile-avatar-container.is-editable:not(.has-avatar-border):hover > img {
    filter: brightness(.75);
  }
  .profile-avatar-container .avatar-upload-form {
    position: absolute;
    inset: 0;
    z-index: 3;
    margin: 0;
  }
  .profile-avatar-container .avatar-change-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(0,0,0,.55);
    color: #fff;
    opacity: 0;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity var(--transition), background var(--transition);
    text-align: center;
    padding: 8px;
  }
  .profile-avatar-container .avatar-change-overlay i {
    font-size: 22px;
    color: var(--red);
    transition: transform var(--transition), color var(--transition);
  }
  .profile-avatar-container.is-editable:hover .avatar-change-overlay {
    opacity: 1;
    background: rgba(0,0,0,.65);
  }
  .profile-avatar-container.is-editable:hover .avatar-change-overlay i {
    transform: scale(1.1);
    color: #fff;
  }
  .profile-name-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 5px;
  }
  .profile-settings-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
  .profile-cover-banner:hover .cover-actions {
    opacity: 1;
  }
  .cover-actions {
    opacity: .85;
    transition: opacity var(--transition);
  }
  .profile-cover-banner .cover-actions:hover {
    opacity: 1;
  }
  .profile-name-details { padding-bottom: 10px; }
  .profile-username     { font-size: 24px; font-weight: bold; color: #fff; margin-bottom: 5px; }
  
  .profile-status-bar {
    background: #09090c;
    border-top: 1px solid #1c1c24;
    padding: 10px 24px;
    font-family: monospace;
    color: #aaa;
    font-size: 13px;
  }
  .status-symbol { color: var(--red); font-weight: bold; }

  .profile-discord-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 24px 16px;
    border-top: 1px solid #1c1c24;
    background: #0b0b0f;
  }
  .profile-discord-row--empty {
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-discord-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(88, 101, 242, 0.12);
    border: 1px solid rgba(88, 101, 242, 0.35);
    color: #dbe1ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
  }
  .profile-discord-link:hover {
    background: rgba(88, 101, 242, 0.22);
    border-color: rgba(88, 101, 242, 0.55);
    color: #fff;
  }
  .profile-discord-link .fab.fa-discord {
    color: #5865f2;
    font-size: 18px;
  }
  .profile-discord-unlink-form {
    margin: 0;
  }
  .profile-discord-connect-btn .fab.fa-discord {
    color: #5865f2;
  }

  .profile-discord-inline-link {
    color: #5865f2;
    text-decoration: none;
    font-weight: 600;
  }
  .profile-discord-inline-link:hover {
    color: #7289da;
    text-decoration: underline;
  }
  .profile-discord-inline-empty {
    color: #666;
    font-size: 13px;
  }

  .profile-info-discord {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #1c1c24;
  }
  .profile-info-discord-head .lbl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .profile-info-discord-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
  }
  .profile-info-discord-hint {
    margin: 0;
    line-height: 1.5;
  }
  .profile-info-discord-empty {
    color: #666;
    font-size: 13px;
  }

  .widget-body .profile-vip-card,
  .profile-vip-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #3d3414 0%, #221e0d 100%);
    border: 1px solid #ffd70055;
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 215, 0, 0.12);
  }
  .profile-vip-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.16);
    border: 1px solid #ffd70066;
    color: #ffd700;
    font-size: 18px;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.18);
  }
  .profile-vip-card-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }
  .profile-vip-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffe566;
  }
  .profile-vip-card-remaining {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.15;
  }
  .profile-vip-card-remaining strong {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(255, 215, 0, 0.25);
  }
  .profile-vip-card-remaining span {
    font-size: 13px;
    font-weight: 700;
    color: #ffd700;
  }
  .profile-vip-card-remaining--lifetime strong {
    font-size: 20px;
    color: #ffd700;
  }
  .profile-vip-card-remaining--lifetime span {
    color: #d9d9d9;
    font-weight: 500;
  }
  .profile-vip-card-meta {
    font-size: 11px;
    color: #a8a8a8;
    margin-top: 2px;
  }

  /* Account settings page */
  .settings-page-wrap {
    max-width: 640px;
    margin: 16px auto 0;
    padding: 0 16px 40px;
  }
  .settings-page-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
  }
  .settings-page-header .page-title { margin-bottom: 0; }
  .notifications-page-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .settings-card { margin-bottom: 16px; }
  .settings-card#discord > h3 {
    margin-bottom: 20px;
  }

  /* ===== Tabbed settings (Discord-style) ===== */
  .settings-page-wrap--tabbed { max-width: 940px; }
  .settings-page-wrap {
    scroll-margin-top: 76px;
  }
  .settings-shell {
    display: flex;
    align-items: stretch;
    gap: 22px;
    width: 100%;
  }
  .settings-nav {
    width: 210px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: sticky;
    top: 84px;
  }
  .settings-nav__btn {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  }
  .settings-nav__btn i { font-size: 15px; opacity: 0.85; }
  .settings-nav__btn:hover {
    background: var(--bg3);
    color: var(--text);
  }
  .settings-nav__btn.is-active {
    background: rgba(233, 69, 96, 0.12);
    border-color: rgba(233, 69, 96, 0.4);
    color: #fff;
  }
  .settings-nav__btn.is-active i { color: var(--red); opacity: 1; }

  .settings-nav-select {
    display: none;
    width: 100%;
    padding: 12px 40px 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 14px center;
    color: var(--text);
    font: 600 13px/1.4 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }
  .settings-nav-select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(176, 42, 53, 0.2);
  }

  .settings-panes {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  .settings-panes > form {
    width: 100%;
    min-width: 0;
  }
  .settings-pane {
    display: none;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    box-sizing: border-box;
    width: 100%;
  }
  .settings-pane.is-active {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    animation: settingsFade 0.2s ease;
  }
  @keyframes settingsFade {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .settings-pane__head {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  .settings-pane__head h2 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .settings-pane__head h2 i { color: var(--red); font-size: 16px; }
  .settings-pane__head p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }
  .settings-pane__actions {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
  }
  .settings-pane__actions .btn { min-width: 140px; justify-content: center; }
  .settings-pane .settings-section-divider:first-of-type { margin-top: 4px; }
  .settings-username-field {
    margin-bottom: 18px;
  }
  .settings-username-display {
    position: relative;
    display: flex;
    align-items: stretch;
  }
  .settings-username-display input[disabled] {
    flex: 1;
    min-width: 0;
    padding-right: 14px;
    opacity: 1;
    color: var(--text);
    cursor: default;
  }
  .settings-username-display--editable input[disabled] {
    padding-right: 46px;
  }
  .settings-username-edit-btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), color var(--transition), background var(--transition), border-color var(--transition);
  }
  .settings-username-display--editable:hover .settings-username-edit-btn,
  .settings-username-display--editable:focus-within .settings-username-edit-btn,
  .settings-username-edit-btn:focus-visible {
    opacity: 1;
    pointer-events: auto;
  }
  .settings-username-edit-btn:hover {
    color: #fff;
    background: rgba(230, 57, 70, 0.12);
    border-color: rgba(230, 57, 70, 0.35);
  }
  .settings-username-change-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 0;
    border: none;
    background: none;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition);
  }
  .settings-username-change-link:hover {
    color: var(--red);
  }
  .settings-username-cooldown {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .settings-username-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
  }
  .settings-username-modal[hidden] {
    display: none;
  }
  .settings-username-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
  }
  .settings-username-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
  }
  .settings-username-modal__form {
    display: flex;
    flex-direction: column;
  }
  .settings-username-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 14px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    border-left: 4px solid var(--red);
  }
  .settings-username-modal__header h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
  }
  .settings-username-modal__subtitle {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.45;
  }
  .settings-username-modal__close {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg2);
    color: var(--muted);
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
  }
  .settings-username-modal__close:hover {
    color: #fff;
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.12);
  }
  .settings-username-modal__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .settings-username-modal__body .form-group {
    margin-bottom: 0;
  }
  .settings-username-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 16px 16px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.15);
  }

  .settings-subcard {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 16px;
  }
  .settings-subcard:last-child { margin-bottom: 0; }
  .settings-subcard > h3 {
    font-size: 14px;
    color: #fff;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .settings-subcard > h3 i { color: var(--cyan); }

  /* Pending deletion banner */
  .settings-deletion-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }
  .settings-deletion-banner > div { display: flex; flex-direction: column; gap: 3px; }
  .settings-deletion-banner span { font-size: 12px; opacity: 0.9; }
  .settings-deletion-banner form { margin: 0; flex-shrink: 0; }

  /* Danger zone */
  .settings-danger-zone {
    border-color: rgba(230, 57, 70, 0.35);
    background: rgba(230, 57, 70, 0.05);
  }
  .settings-danger-zone > h3 { color: #ff8a8a; }
  .settings-danger-zone > h3 i { color: var(--red); }
  .settings-danger-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }
  .settings-danger-row:first-of-type { border-top: none; padding-top: 4px; }
  .settings-danger-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
  .settings-danger-text strong { color: #fff; font-size: 14px; }
  .settings-danger-text .form-hint { margin: 0; line-height: 1.5; max-width: 460px; }
  .settings-danger-action { flex-shrink: 0; }
  .settings-danger-action > summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .settings-danger-action > summary::-webkit-details-marker { display: none; }
  .settings-danger-form {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 260px;
    max-width: 100%;
    padding: 14px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .settings-danger-form label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .settings-danger-form input {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 13px;
    padding: 9px 11px;
    box-sizing: border-box;
  }
  .btn-danger {
    background: #7a1722;
    border: 1px solid #b3303f;
    color: #ffd9dd;
  }
  .btn-danger:hover { background: #94202e; color: #fff; }
  .settings-discord-linked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .settings-discord-account {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .settings-discord-label {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .settings-discord-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5865f2;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
  }
  .settings-discord-name:hover {
    color: #7289da;
    text-decoration: underline;
  }
  .settings-discord-hint {
    margin: 0;
    line-height: 1.55;
  }
  .settings-discord-actions {
    margin: 0;
  }
  .settings-discord-connect-btn {
    margin-top: 4px;
  }
  .settings-section-divider {
    border-top: 1px solid var(--border);
    margin: 20px 0 14px;
    padding-top: 16px;
  }
  .settings-section-divider h3 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 6px;
  }
  .settings-section-divider h3 i { color: var(--red); margin-right: 6px; }
  .settings-section-divider .settings-option-group-title {
    margin: 8px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
  }
  .settings-option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 4px;
  }
  .settings-option-block {
    margin-bottom: 12px;
  }
  .settings-option-block:last-child {
    margin-bottom: 0;
  }
  .settings-radio-label,
  .settings-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg3);
    transition: border-color 0.15s ease, background 0.15s ease;
  }
  .settings-radio-label:hover,
  .settings-checkbox-label:hover {
    border-color: rgba(233, 69, 96, 0.35);
  }
  .settings-radio-label:has(input:checked),
  .settings-checkbox-label:has(input:checked) {
    border-color: rgba(233, 69, 96, 0.5);
    background: rgba(233, 69, 96, 0.06);
  }
  .settings-radio-label input,
  .settings-checkbox-label input {
    margin-top: 4px;
    flex-shrink: 0;
  }
  .settings-option-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  .settings-option-body strong {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
  }
  .settings-option-body strong i {
    color: var(--red);
    margin-right: 4px;
  }
  .settings-option-desc {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
    color: var(--muted);
  }
  .settings-tips h3 { font-size: 14px; color: #fff; margin-bottom: 8px; }
  .settings-tips h3 i { color: var(--cyan); margin-right: 6px; }
  .settings-tips p { color: var(--muted); font-size: 13px; line-height: 1.5; }
  .settings-tips a { color: var(--cyan); }
  .settings-checkbox-label span i {
    color: var(--red);
    margin-right: 4px;
  }
  .form-hint {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--muted);
  }
  .profile-quick-links .btn { text-align: center; }
  
  /* Avatar crop modal */
  .crop-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  .crop-modal.is-open { display: flex; }
  .crop-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
  }
  .crop-modal-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
  }
  .crop-modal-panel--wide {
    max-width: 720px;
  }
  .crop-modal-header {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .crop-modal-body {
    padding: 16px;
    background: #0a0a0a;
  }
  .crop-modal-stage {
    width: 100%;
    height: min(50vh, 400px);
    min-height: 220px;
    overflow: hidden;
    background: #000;
    position: relative;
  }
  .crop-modal-panel--wide .crop-modal-stage {
    height: min(42vh, 280px);
    min-height: 180px;
  }
  .crop-modal-stage > img {
    display: block;
    max-width: 100%;
  }
  .crop-modal-stage .cropper-container {
    max-width: 100% !important;
  }
  .crop-modal-body img {
    display: block;
    max-width: 100%;
  }
  .crop-modal-footer {
    padding: 14px 18px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .crop-hint {
    font-size: 11px;
    color: var(--muted);
    padding: 0 18px 12px;
  }
  
  /* Bilgiler Sidebar */
  .user-stat-premium {
    display: flex; justify-content: space-between; padding: 9px 0;
    border-bottom: 1px solid #18181c; font-size: 13px;
  }
  .user-stat-premium:last-child { border-bottom: none; }
  .user-stat-premium .lbl { color: #666; }
  .user-stat-premium .val { color: #fff; font-weight: 500; }
.status-online  { color: #2a9d8f; font-weight: bold; }
.status-offline { color: #e63946; font-weight: bold; }
.status-online-dot { color: #2a9d8f; font-size: 10px; }
.section-header-meta {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.section-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.comment-sort-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.comment-sort-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.comment-sort-select {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 12px;
  padding: 5px 10px;
  cursor: pointer;
}
.comment-sort-select:focus {
  border-color: var(--red);
  outline: none;
}
.comments-list-body.is-loading,
.game-feedback-list.is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.online-users-panel {
  padding: 10px 14px 12px;
}
.online-users-empty {
  padding: 18px 8px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.online-users-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.online-user-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg3);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), background var(--transition);
  min-width: 0;
}
@media (hover: hover) {
  .online-user-row:hover {
    border-color: rgba(42, 157, 143, 0.45);
    background: rgba(42, 157, 143, 0.08);
  }
  .online-user-row:hover .online-user-row__name:not(.username-color) {
    color: #fff;
  }
  .online-user-row:hover .online-user-row__name.username-color {
    filter: brightness(1.15);
  }
}
.online-user-row__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.online-user-row__name:not(.username-color) {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.online-user-row__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.online-user-row__badges:empty {
  display: none;
}
.online-user-row__status {
  flex-shrink: 0;
  font-size: 11px;
  white-space: nowrap;
}
.online-user-row .avatar-frame-wrap--xs {
  flex-shrink: 0;
}

  .profile-info-tabs > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .profile-info-tab-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
    padding: 4px;
    background: #09090c;
    border: 1px solid #18181c;
    border-radius: 8px;
  }
  .profile-info-tab-buttons label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    border-radius: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
  }
  .profile-info-tab-buttons label:hover {
    color: #fff;
    background: rgba(255,255,255,.04);
  }
  #profile-info-tab-details:checked ~ .profile-info-tab-buttons label[for="profile-info-tab-details"],
  #profile-info-tab-achievements:checked ~ .profile-info-tab-buttons label[for="profile-info-tab-achievements"] {
    color: #fff;
    background: var(--bg3);
    box-shadow: inset 0 0 0 1px var(--border);
  }
  .profile-info-tab-panel { display: none; }
  #profile-info-tab-details:checked ~ .profile-info-tab-panel--details,
  #profile-info-tab-achievements:checked ~ .profile-info-tab-panel--achievements {
    display: block;
  }
  .achievement-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    margin-bottom: 10px;
    background: rgba(0,188,212,.07);
    border: 1px solid rgba(0,188,212,.22);
    border-radius: 8px;
    color: #d7f8fb;
    font-size: 12px;
  }
  .achievement-summary strong {
    color: var(--cyan);
    font-size: 13px;
  }
  .achievement-list {
    display: grid;
    gap: 8px;
    max-height: 430px;
    overflow: auto;
    padding-right: 2px;
  }
  .achievement-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: #0b0b0f;
    border: 1px solid #1b1b22;
    border-radius: 8px;
  }
  .achievement-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #15151b;
    color: #666;
    font-size: 16px;
  }
  .achievement-item.is-unlocked {
    border-color: rgba(0,188,212,.34);
    background: linear-gradient(135deg, rgba(0,188,212,.08), rgba(230,57,70,.05));
  }
  .achievement-item.is-unlocked .achievement-icon {
    color: var(--cyan);
    background: rgba(0,188,212,.12);
    box-shadow: 0 0 18px rgba(0,188,212,.12);
  }
  .achievement-item.is-locked {
    opacity: .72;
  }
  .achievement-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 3px;
  }
  .achievement-name {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
  }
  .achievement-state {
    flex: 0 0 auto;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .achievement-desc {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 4px;
  }
  .achievement-rarity {
    color: #8a8a96;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 7px;
  }
  .achievement-item.is-unlocked .achievement-rarity {
    color: rgba(0, 188, 212, 0.72);
  }
  .achievement-progress {
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #1b1b22;
  }
  .achievement-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--red));
  }
  .achievement-item.is-unlocked .achievement-progress span {
    width: 100% !important;
  }
  
  /* Rütbe İlerleme Widget */
  .rank-journey-widget {
    background: #111 !important;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
  }
  .rank-flex-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
  }
  .rank-box-current, .rank-box-next {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 100px;
  }
  .rank-label   { font-size: 10px; color: #555; font-weight: bold; margin-bottom: 4px; }
  .rank-value   { font-size: 15px; font-weight: 900; letter-spacing: .5px; }
  .rank-sub-pts { font-size: 11px; color: #666; margin-top: 2px; }
  .current-rank-glow { text-shadow: 0 0 8px rgba(255,255,255,.12); }
  .rank-bronze.current-rank-glow { text-shadow: 0 0 8px rgba(205, 127, 50, .4); }
  .rank-silver.current-rank-glow { text-shadow: 0 0 8px rgba(192, 192, 192, .35); }
  .rank-gold.current-rank-glow { text-shadow: 0 0 8px rgba(255, 215, 0, .35); }
  .rank-platinum.current-rank-glow { text-shadow: 0 0 8px rgba(229, 228, 226, .4); }
  .rank-elite.current-rank-glow { text-shadow: 0 0 8px rgba(138, 43, 226, .4); }
  .next-rank-glow    { color: #ff0055; text-shadow: 0 0 8px rgba(255,0,85,.4); }
  
  .rank-progress-container {
    flex: 2;
    position: relative;
    padding: 0 10px;
  }
  .rank-progress-bar-bg {
    background: #1a1a1a;
    height: 6px;
    border-radius: 3px;
    width: 100%;
  }
  .rank-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00b4d8, #ff0055);
    border-radius: 3px;
    transition: width .8s ease;
  }
  .rank-percentage-text { position: absolute; right: 0; top: -18px; font-size: 11px; font-family: monospace; color: #00b4d8; font-weight: bold; }
  .rank-hint-text { font-size: 12px; color: #888; text-align: center; margin-top: 10px; border-top: 1px solid #1a1a22; padding-top: 10px; }
  
  /* =========================================================
     FOOTER
     ========================================================= */
  .site-footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 40px 16px 24px;
    color: var(--muted);
    font-size: 12px;
    margin-top: 40px;
  }
  .site-footer a { color: var(--red); }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 32px;
    text-align: left;
  }
  .footer-brand { display: flex; flex-direction: column; gap: 10px; }
  .footer-logo { font-size: 22px; font-weight: 800; letter-spacing: .5px; }
  .footer-tagline { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0; max-width: 260px; }
  .footer-discord {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: 4px;
    padding: 8px 14px;
    border-radius: var(--radius);
    background: #5865F2;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    transition: opacity var(--transition), transform .1s;
  }
  .footer-discord:hover { opacity: .9; transform: translateY(-1px); }
  .footer-col { display: flex; flex-direction: column; gap: 10px; }
  .footer-col-title {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin: 0 0 4px;
  }
  .footer-col a {
    color: #888;
    font-size: 13px;
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .footer-col a i { color: #555; transition: color var(--transition); }
  .footer-col a:hover { color: var(--red); }
  .footer-col a:hover i { color: var(--red); }
  .footer-col a.text-gold { color: var(--gold); }
  .footer-col a.text-gold i { color: var(--gold); }
  .footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
  }
  .footer-bottom p { margin: 0; }
  
  /* =========================================================
     SEARCH
     ========================================================= */
  .search-bar-form {
    margin: 0;
  }
  .search-bar-form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .search-bar-input {
    flex: 1;
    min-width: 200px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 14px 11px 40px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.5' y1='16.5' x2='21' y2='21'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 13px center;
    background-size: 16px 16px;
  }
  .search-bar-input::placeholder {
    color: var(--muted);
    opacity: 1;
  }
  .search-bar-input:hover {
    border-color: #444;
    background-color: var(--bg2);
  }
  .search-bar-input:focus {
    border-color: var(--red);
    background-color: var(--bg2);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
  }
  .search-bar-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    margin-right: 4px;
    cursor: pointer;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
  }
  .search-bar-input::-webkit-search-cancel-button:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e63946' stroke-width='2'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E");
  }
  .search-bar-submit {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-left: 18px;
    padding-right: 18px;
  }
  
  /* =========================================================
     USER BADGES (profile, comments, team, posts)
     ========================================================= */
  .comment-user-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .comment-user-badge i { font-size: 9px; }
  .comment-user-badge--role.comment-user-badge--admin {
    background: linear-gradient(135deg, rgba(230,57,70,.35), rgba(230,57,70,.18));
    border-color: rgba(230,57,70,.55);
    color: #ffb4bc;
  }
  .comment-user-badge--role.comment-user-badge--mod {
    background: linear-gradient(135deg, rgba(42,157,143,.35), rgba(42,157,143,.18));
    border-color: rgba(42,157,143,.55);
    color: #9ee7dc;
  }
  .comment-user-badge--role.comment-user-badge--vip {
    background: linear-gradient(135deg, rgba(255,215,0,.28), rgba(255,215,0,.12));
    border-color: rgba(255,215,0,.45);
    color: #ffe566;
  }
  .comment-user-badge--role.comment-user-badge--cevirmen {
    background: linear-gradient(135deg, rgba(52,152,219,.32), rgba(52,152,219,.16));
    border-color: rgba(52,152,219,.5);
    color: #9fd4ff;
  }
  .comment-user-badge--role.comment-user-badge--editor {
    background: linear-gradient(135deg, rgba(155,89,182,.32), rgba(155,89,182,.16));
    border-color: rgba(155,89,182,.5);
    color: #d9b3ff;
  }
  .comment-user-badge--role.comment-user-badge--redaktor {
    background: linear-gradient(135deg, rgba(230,126,34,.32), rgba(230,126,34,.16));
    border-color: rgba(230,126,34,.5);
    color: #ffc58a;
  }
  .comment-user-badge--rank.rank-bronze {
    background: linear-gradient(135deg, rgba(205,127,50,.28), rgba(205,127,50,.12));
    border-color: rgba(205,127,50,.45);
    color: #e8a86a;
  }
  .comment-user-badge--rank.rank-silver {
    background: linear-gradient(135deg, rgba(160,160,160,.3), rgba(160,160,160,.14));
    border-color: rgba(160,160,160,.5);
    color: #d8d8d8;
  }
  .comment-user-badge--rank.rank-gold {
    background: linear-gradient(135deg, rgba(255,215,0,.24), rgba(255,165,0,.12));
    border-color: rgba(255,215,0,.4);
    color: #ffd966;
  }
  .comment-user-badge--rank.rank-platinum {
    background: linear-gradient(135deg, rgba(229, 228, 226, .22), rgba(229, 228, 226, .10));
    border-color: rgba(229, 228, 226, .42);
    color: var(--rank-platinum);
  }
  .comment-user-badge--rank.rank-elite {
    background: linear-gradient(135deg, rgba(255,0,85,.28), rgba(255,107,107,.14));
    border-color: rgba(255,0,85,.45);
    color: #ff8fab;
  }
  .comment-user-badge-level {
    font-size: 9px;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 3px;
    background: rgba(0,0,0,.28);
  }

  /* Profile XP widget rank colors */
  .rank-value { color: inherit; }
  .rank-bronze { color: var(--rank-bronze); }
  .rank-silver { color: var(--rank-silver); }
  .rank-gold { color: var(--rank-gold); }
  .rank-platinum { color: var(--rank-platinum); }
  .rank-elite { color: var(--rank-elite); }

  /* Username colors by staff role or XP rank */
  .username-color--admin { color: var(--red); }
  .username-color--mod { color: #9ee7dc; }
  .username-color--vip { color: #ffe566; }
  .username-color--cevirmen { color: #9fd4ff; }
  .username-color--editor { color: #d9b3ff; }
  .username-color--redaktor { color: #ffc58a; }
  .username-color--rank-bronze { color: #e8a86a; }
  .username-color--rank-silver { color: #d8d8d8; }
  .username-color--rank-gold { color: #ffd966; }
  .username-color--rank-platinum { color: var(--rank-platinum); }
  .username-color--rank-elite { color: #ff6b9d; }
  .username-color--pick-cyan { color: var(--cyan); }
  .username-color--pick-red { color: var(--red); }
  .username-color--pick-gold { color: var(--gold); }
  .username-color--pick-green { color: #6bcb77; }
  .username-color--pick-purple { color: #c084fc; }
  .username-color--pick-pink { color: #ff6b9d; }
  .username-color--pick-orange { color: #ffb347; }
  .username-color--pick-white { color: #ffffff; }
  .username-color--pick-blue { color: #5dade2; }
  a.username-color:hover,
  a.username-color:focus-visible {
    filter: brightness(1.12);
    text-decoration: none;
  }
  .profile-username.username-color--admin { color: var(--red); }
  .profile-username.username-color--mod { color: #9ee7dc; }
  .profile-username.username-color--vip { color: #ffe566; }
  .profile-username.username-color--cevirmen { color: #9fd4ff; }
  .profile-username.username-color--editor { color: #d9b3ff; }
  .profile-username.username-color--redaktor { color: #ffc58a; }
  .profile-username.username-color--rank-bronze { color: #e8a86a; }
  .profile-username.username-color--rank-silver { color: #e8e8e8; }
  .profile-username.username-color--rank-gold { color: #ffd966; }
  .profile-username.username-color--rank-platinum { color: var(--rank-platinum); }
  .profile-username.username-color--rank-elite { color: #ff6b9d; }
  .team-member-name.username-color--admin { color: var(--red) !important; }
  .team-member-name.username-color--mod { color: #9ee7dc !important; }
  .team-member-name.username-color--vip { color: #ffe566 !important; }
  .team-member-name.username-color--cevirmen { color: #9fd4ff !important; }
  .team-member-name.username-color--editor { color: #d9b3ff !important; }
  .team-member-name.username-color--redaktor { color: #ffc58a !important; }
  .team-member-name.username-color--rank-bronze { color: #e8a86a !important; }
  .team-member-name.username-color--rank-silver { color: #e8e8e8 !important; }
  .team-member-name.username-color--rank-gold { color: #ffd966 !important; }
  .team-member-name.username-color--rank-platinum { color: var(--rank-platinum) !important; }
  .team-member-name.username-color--rank-elite { color: #ff6b9d !important; }

  .username-color-picker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 10px;
  }
  .username-color-picker__option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg3);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
  }
  .username-color-picker__option:has(input:checked) {
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.08);
  }
  .username-color-picker__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .username-color-picker__swatch {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
  }
  .username-color-picker__label {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
  }
  .username-color-custom {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .username-color-custom__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
  }
  .username-color-custom__controls {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .username-color-custom__controls input[type="color"] {
    width: 56px;
    height: 40px;
    padding: 2px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg3);
    cursor: pointer;
  }
  .username-color-custom__preview {
    font-size: 16px;
    font-weight: 700;
  }

  .game-badge-translated {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.35);
    vertical-align: middle;
    margin-left: 4px;
  }

  .vote-poll-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }
  .vote-poll-item:last-child { border-bottom: none; }
  .vote-poll-bar-wrap {
    flex: 1;
    min-width: 0;
  }
  .vote-poll-bar {
    height: 6px;
    background: var(--bg3);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 4px;
  }
  .vote-poll-bar > div {
    height: 100%;
    background: var(--cyan);
    border-radius: 999px;
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  @media (max-width: 768px) {
    .hero-title   { font-size: 20px; }
    .auth-card    { padding: 24px 18px; }
    .create-bar {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }
    .create-bar > span,
    .create-bar > a,
    .create-bar > div {
      width: 100%;
      box-sizing: border-box;
    }
    .create-bar > div {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .create-bar .btn {
      flex: 1 1 auto;
      justify-content: center;
    }
    .post-card-header {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      column-gap: 12px;
      row-gap: 0;
      align-items: start;
    }
    .post-card-author-block {
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 0;
    }
    .post-card-author-top {
      align-items: flex-start;
    }
    .post-card-author-identity {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
    }
    .post-card-author-name {
      font-size: 14px;
    }
    .post-card-author-actions {
      flex-shrink: 0;
      margin-left: auto;
    }
    .post-card-author-actions .btn-sm {
      padding: 4px 8px;
      font-size: 11px;
    }
    .post-card-meta {
      font-size: 11px;
      line-height: 1.55;
    }
    .post-breadcrumb-bar {
      align-items: flex-start;
    }
    .post-breadcrumb-actions {
      width: 100%;
      justify-content: flex-end;
    }
    .post-breadcrumb-actions .btn-sm {
      padding: 4px 8px;
      font-size: 11px;
    }
    .vip-locked-cta { display: none; }
    .profile-meta-row { flex-direction: column; align-items: flex-start; margin-top: -40px; }
    .profile-name-row { flex-direction: column; align-items: flex-start; }
    .cover-actions {
      left: 10px;
      right: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .cover-action-btn { font-size: 11px; padding: 7px 10px; }
    .post-card-title { font-size: 17px; }
    .nav-settings-btn .nav-label,
    .nav-admin-btn .nav-label { display: none; }
    .category-grid {
      grid-template-columns: 1fr;
    }
    .category-grid-card:last-child:nth-child(3n + 1),
    .category-grid-card:last-child:nth-child(2n + 1) {
      grid-column: auto;
      width: auto;
      justify-self: stretch;
    }
    .profile-info-tab-buttons {
      flex-direction: column;
      align-items: stretch;
    }
    .profile-info-tab-buttons label {
      width: 100%;
      text-align: center;
      box-sizing: border-box;
    }
    .profile-info-discord-body,
    .profile-info-discord-body .btn,
    .profile-discord-row,
    .profile-discord-row .btn,
    .profile-discord-unlink-form .btn {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
    .profile-discord-row {
      flex-direction: column;
      align-items: stretch;
    }
    .profile-info-discord-body .btn,
    .profile-discord-row .btn {
      justify-content: center;
    }
    .totp-setup-grid {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .totp-disable-form,
    .totp-disable-form .form-group,
    .totp-disable-form .btn {
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
    }
  }
  
  /* =========================================================
     UTILITIES
     ========================================================= */
  .text-red    { color: var(--red); }
  .text-cyan:not(.username-color)   { color: var(--cyan); }
  .text-gold   { color: var(--gold); }
  .text-muted  { color: var(--muted); }
  .text-center { text-align: center; }
  .mt-10 { margin-top: 10px; }
  .mt-20 { margin-top: 20px; }
  .mb-10 { margin-bottom: 10px; }
  .mb-20 { margin-bottom: 20px; }
  .flex        { display: flex; }
  .flex-center { display: flex; align-items: center; justify-content: center; }
  .gap-8       { gap: 8px; }
  .no-posts    { padding: 30px; text-align: center; color: var(--muted); background: var(--bg2); border-radius: var(--radius); }
  
  /* Spinner */
  .spinner { border: 3px solid var(--bg4); border-top: 3px solid var(--red); border-radius: 50%; width: 24px; height: 24px; animation: spin .8s linear infinite; display: inline-block; }
  @keyframes spin { to { transform: rotate(360deg); } }
  
  /* Pagination */
  .pagination { display: flex; gap: 6px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
  .pagination a, .pagination span { padding: 6px 12px; border-radius: var(--radius); background: var(--bg2); color: var(--text); font-size: 13px; }
  .pagination .current { background: var(--red); color: #fff; }
  .pagination a:hover  { background: var(--bg3); }
  
  /* Image preview */
  .img-preview { max-width: 200px; max-height: 150px; border-radius: var(--radius); margin-top: 8px; display: none; border: 1px solid var(--border); }
  .game-cover-preview { max-width: 100%; max-height: 220px; width: auto; height: auto; object-fit: contain; }

  .game-screenshots-sortable {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .game-screenshot-sortable-item {
    position: relative;
    width: 240px;
    flex: 0 0 240px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg2);
  }
  .game-screenshot-sortable-item.is-dragging {
    opacity: 0.55;
    cursor: grabbing;
  }
  .game-screenshot-sortable-item.is-drag-over {
    outline: 2px solid var(--cyan);
    outline-offset: -2px;
  }
  .game-screenshot-drag-handle {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
  .game-screenshot-move-btn {
    position: absolute;
    top: 38px;
    left: 5px;
    z-index: 2;
    width: 28px;
    height: 22px;
    border: none;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
  }
  .game-screenshot-move-btn + .game-screenshot-move-btn {
    top: 63px;
  }
  .game-screenshot-sortable-item img {
    width: 100%;
    aspect-ratio: 460 / 215;
    object-fit: cover;
    display: block;
  }
  .game-screenshot-delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.82);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
  
  /* Toast notification */
  .toast-container {
    position: fixed;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    right: 24px;
    z-index: 10060;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    max-width: min(360px, calc(100vw - 32px));
  }
  .toast {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 18px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text);
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
    animation: toast-in .3s ease;
    max-width: 320px;
    pointer-events: all;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .toast.toast-success { border-color: #4caf50; color: #a5d6a7; }
  .toast.toast-error   { border-color: var(--red); color: #ff8a8a; }
  .toast.toast-info    { border-color: var(--cyan); color: #9de7f5; }
  @keyframes toast-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes toast-in-top {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Site confirm dialog (Turkish ✅ / ❌) */
  .site-confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(2px);
  }
  .site-confirm-box {
    width: min(100%, 340px);
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    text-align: center;
  }
  .site-confirm-message {
    margin: 0 0 18px;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
  }
  .site-confirm-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
  .site-confirm-btn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg3);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  }
  .site-confirm-btn:hover {
    transform: scale(1.06);
  }
  .site-confirm-btn--yes:hover {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.15);
  }
  .site-confirm-btn--no:hover {
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.15);
  }

  /* ---- TAKİP & BİLDİRİMLER ---- */
  .profile-follow-btn.is-following {
    border-color: var(--cyan);
    color: var(--cyan);
  }
  .profile-follow-btn.is-follow-pending,
  .profile-follow-btn.is-follow-cooldown,
  .profile-follow-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  .profile-follow-btn.is-follow-cooldown {
    border-color: var(--border);
    color: var(--muted);
  }
  @media (hover: hover) {
    .profile-follow-btn.is-following:hover {
      background: rgba(0,188,212,.15);
      border-color: var(--cyan);
    }
  }

  .game-watch-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .game-watch-btn.is-watching {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0,188,212,.08);
  }
  .game-watch-btn.is-watch-pending,
  .game-watch-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  @media (hover: hover) {
    .game-watch-btn.is-watching:hover {
      background: rgba(0,188,212,.15);
      border-color: var(--cyan);
    }
  }

  .post-watch-btn.is-watching {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0,188,212,.08);
  }
  .post-watch-btn.is-watch-pending,
  .post-watch-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .nav-notif-wrap { position: relative; flex-shrink: 0; z-index: 3; }
  .nav-notif-btn {
    position: relative;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    color: #aaa;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition), background var(--transition);
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
  }
  .nav-notif-btn:focus { outline: none; }
  .nav-notif-btn:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
  }
  @media (hover: hover) {
    .nav-notif-btn:hover { background: var(--bg3); color: #fff; }
  }
  .nav-notif-btn.is-open {
    color: #fff;
    background: var(--bg3);
  }
  .nav-notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .nav-notif-badge.is-pulse {
    animation: nav-notif-pulse 0.6s ease 2;
  }
  @keyframes nav-notif-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.35); }
  }
  .nav-notif-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    max-height: 400px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,.55);
    z-index: 1200;
    overflow: hidden;
    display: none;
    flex-direction: column;
  }
  .nav-notif-dropdown.is-open {
    display: flex;
  }
  @media (max-width: 992px) {
    .nav-notif-wrap {
      position: relative;
      width: auto;
      align-self: auto;
    }
    .nav-notif-dropdown {
      position: fixed !important;
      top: 50px !important;
      left: 12px !important;
      right: 12px !important;
      width: auto !important;
      max-width: none !important;
      max-height: min(70vh, 420px);
      box-sizing: border-box;
      z-index: 1100;
    }
    .nav-notif-dropdown-body {
      max-height: min(calc(70vh - 52px), 368px);
    }
    .nav-notif-dropdown-body .notif-item {
      padding: 14px 16px;
      gap: 12px;
      border: none !important;
      border-bottom: 1px solid var(--border) !important;
      border-radius: 0 !important;
      background: transparent !important;
      min-height: 0;
      width: 100%;
    }
    .nav-notif-dropdown-body .notif-item--unread {
      border-left: 3px solid var(--red) !important;
      padding-left: 13px !important;
    }
    .nav-notif-dropdown-body .notif-item:last-child {
      border-bottom: none !important;
    }
    .nav-notif-dropdown-body .notif-item-body p {
      font-size: 13px;
      line-height: 1.55;
    }
  }
  @media (max-width: 768px) {
    .nav-notif-dropdown {
      left: 10px !important;
      right: 10px !important;
    }
  }
  .nav-notif-dropdown-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }
  .nav-notif-head-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .nav-notif-read-all {
    background: none;
    border: none;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
  }
  @media (hover: hover) {
    .nav-notif-read-all:hover { color: #fff; text-decoration: underline; }
  }
  .nav-notif-dropdown-head a { color: var(--cyan); font-size: 12px; }
  @media (hover: hover) {
    .nav-notif-dropdown-head a:hover { color: var(--cyan); }
  }
  .nav-notif-dropdown-body {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 340px;
    width: 100%;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }
  .nav-notif-loading,
  .nav-notif-empty {
    padding: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .empty-state {
    padding: 32px 16px;
    text-align: center;
    color: var(--muted);
  }
  .empty-state i.fa-2x {
    display: block;
    margin-bottom: 12px;
    opacity: 0.75;
  }
  .empty-state p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.5;
  }
  .empty-state-actions {
    margin-top: 4px;
  }
  .like-btn[aria-busy="true"],
  .like-btn:disabled {
    opacity: 0.65;
    cursor: wait;
  }
  .notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text) !important;
    text-decoration: none;
    transition: background var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
  .nav-notif-dropdown-body .notif-item:last-child,
  .notifications-page-list > .notif-item:last-of-type {
    border-bottom: none;
  }
  .notifications-page-list > .notif-item {
    border-bottom: 1px solid var(--border);
  }
  .notifications-page-list > .notif-item + .notif-item {
    border-top: none;
  }
  @media (hover: hover) {
    .notif-item:hover {
      background: var(--bg3);
      color: var(--text) !important;
    }
  }
  .notif-item--unread {
    background: transparent;
    border-left: 3px solid var(--red);
    padding-left: 11px;
  }
  @media (hover: hover) {
    .notif-item--unread:hover { background: rgba(230,57,70,.06); }
  }
  .notif-item--unread .notif-item-body p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    margin-right: 0;
    vertical-align: middle;
  }
  .notif-item-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
  }
  .notif-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
  }
  .notif-item-icon--mod {
    border-radius: 10px;
    background: linear-gradient(145deg, #1e2433 0%, #12161f 100%);
    border: 2px solid #5c6bc0;
    color: #9fa8da;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  }
  .notif-item-icon--mod-warn {
    border-color: #c62828;
    color: #ef9a9a;
    background: linear-gradient(145deg, #2a1212 0%, #160909 100%);
  }
  .notif-item-icon--mod-announce {
    border-color: #e6a817;
    color: #ffd54f;
    background: linear-gradient(145deg, #2a2208 0%, #161004 100%);
  }
  .notif-item--mod {
    border-left: 3px solid #5c6bc0;
  }
  .notif-item--mod.notif-item--mod-warn {
    border-left-color: #c62828;
  }
  .notif-item--mod.notif-item--mod-warn.notif-item--unread {
    background: rgba(198, 40, 40, 0.08);
  }
  .notif-item--mod.notif-item--mod-announce {
    border-left-color: #e6a817;
  }
  .notif-item--mod.notif-item--mod-announce.notif-item--unread {
    background: rgba(230, 168, 23, 0.07);
  }
  .notif-item--mod .notif-item-body p {
    font-weight: 600;
  }
  .notif-item-body { flex: 1; min-width: 0; overflow: hidden; }
  .notif-item-body p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: var(--text);
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }
  .notif-item--unread .notif-item-body p {
    position: relative;
    padding-left: 14px;
  }
  .notif-item-time {
    font-size: 11px;
    color: var(--muted);
    margin-top: 6px;
    display: block;
    line-height: 1.3;
  }
  .notifications-page-list { padding: 0; overflow: hidden; }
  .notifications-page-list .notif-item { padding: 14px 18px; }

  /* Messages */
  .messages-page {
    padding-top: 24px;
    padding-bottom: 36px;
  }
  .messages-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
  }
  .messages-header .page-title {
    margin-bottom: 4px;
  }
  .messages-header p {
    color: var(--muted);
    font-size: 13px;
  }
  .messages-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    height: min(720px, calc(100vh - 170px));
    min-height: 480px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }
  .messages-conversations {
    border-right: 1px solid var(--border);
    background: #101014;
    overflow-y: auto;
    min-height: 0;
  }
  .messages-panel-head {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
  }
  .conversation-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid #1c1c22;
    color: inherit;
  }
  .conversation-row:hover,
  .conversation-row.is-active {
    background: var(--bg3);
    color: inherit;
  }
  .conversation-row img,
  .messages-thread-user img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    flex-shrink: 0;
  }
  .conversation-main {
    min-width: 0;
    flex: 1;
  }
  .conversation-main strong {
    display: block;
    color: #fff;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .conversation-main small {
    color: var(--muted);
    font-size: 11px;
  }
  .conversation-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .messages-thread-panel {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-width: 0;
    min-height: 0;
    background: #0d0d11;
  }
  .messages-thread-head {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }
  .messages-thread-user {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
  }
  .messages-thread-user strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
  }
  .messages-thread-user small {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
  }
  .messages-thread {
    padding: 18px;
    overflow-y: auto;
    min-height: 0;
  }
  .message-bubble-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  .message-bubble-row.is-mine {
    justify-content: flex-end;
  }
  .message-bubble {
    max-width: min(620px, 78%);
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--bg3);
    border: 1px solid var(--border);
  }
  .message-bubble-row.is-mine .message-bubble {
    background: rgba(0,188,212,.12);
    border-color: rgba(0,188,212,.26);
  }
  .message-bubble p {
    color: #eee;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 5px;
    overflow-wrap: anywhere;
  }
  .message-bubble-content {
    color: #eee;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 5px;
    overflow-wrap: anywhere;
  }
  .message-bubble-content.post-rich-content p:last-child,
  .message-bubble-content.post-rich-content ul:last-child,
  .message-bubble-content.post-rich-content ol:last-child {
    margin-bottom: 0;
  }
  .message-bubble .post-h--main { font-size: 1.08em; margin: 8px 0 6px; }
  .message-bubble .post-h--sub  { font-size: 1em; margin: 8px 0 6px; }
  .message-bubble .post-h { margin: 8px 0 6px; }
  .message-bubble .post-rich-list { margin: 6px 0 8px 0; }
  .message-bubble .post-spoiler--block { margin: 8px 0; }
  .message-bubble span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    text-align: right;
  }
  .message-compose {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid var(--border);
    background: var(--bg2);
  }
  .message-compose-actions {
    display: flex;
    justify-content: flex-end;
  }
  .message-compose .post-editor--compact .post-editor-toolbar {
    padding: 6px;
    gap: 4px;
    border-radius: 8px 8px 0 0;
  }
  .message-compose .post-editor--compact .post-editor-btn {
    padding: 4px 8px;
    font-size: 11px;
  }
  .message-compose .post-editor--compact .post-editor-textarea {
    min-height: 56px !important;
    max-height: 120px;
    border-radius: 0 0 8px 8px;
    background: #101014;
    color: var(--text);
    border: 1px solid var(--border);
    border-top: none;
    padding: 10px 12px;
    font-family: inherit;
    outline: none;
  }
  .message-compose .post-editor--compact .post-editor-textarea:focus {
    border-color: var(--cyan);
  }
  .message-compose textarea {
    min-height: 42px;
    max-height: 92px;
    resize: none;
    background: #101014;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    font-family: inherit;
    outline: none;
  }
  .message-compose textarea:focus {
    border-color: var(--cyan);
  }
  .messages-empty-state,
  .messages-empty-small {
    color: var(--muted);
    text-align: center;
    padding: 28px 16px;
    font-size: 13px;
  }
  .messages-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 420px;
  }
  .messages-empty-state i {
    color: var(--cyan);
    font-size: 34px;
  }
  .messages-empty-state strong {
    color: #fff;
    font-size: 16px;
  }
  @media (max-width: 768px) {
    .messages-shell {
      grid-template-columns: 1fr;
      height: calc(100vh - 132px);
      min-height: 520px;
    }
    .messages-conversations {
      border-right: none;
      border-bottom: 1px solid var(--border);
      max-height: 190px;
    }
    .message-compose-actions .btn {
      width: 100%;
    }
    .message-bubble {
      max-width: 92%;
    }
  }

  /* Profile social stats */
  .profile-social-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 10px;
  }
  .profile-stat-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
    transition: color var(--transition);
  }
  .profile-stat-pill strong {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
  }
  @media (hover: hover) {
    .profile-stat-pill:hover { color: var(--cyan); }
    .profile-stat-pill:hover strong { color: var(--cyan); }
  }

  /* Followers / following list */
  .follow-tabs {
    display: flex;
    gap: 8px;
    max-width: 720px;
    margin: 0 auto 14px;
    flex-wrap: wrap;
  }
  .follow-tab {
    padding: 8px 16px;
    border-radius: 30px;
    background: var(--bg3);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
  }
  .follow-tab.active {
    background: var(--red);
    color: #fff;
  }
  @media (hover: hover) {
    .follow-tab:not(.active):hover { background: var(--bg4); color: var(--text); }
  }
  .follow-list-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
  }
  .follow-list-empty {
    text-align: center;
    color: var(--muted);
    padding: 40px 20px;
    font-size: 14px;
  }
  .follow-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
  }
  .follow-list-row:last-child { border-bottom: none; }
  @media (hover: hover) {
    .follow-list-row:hover { background: var(--bg3); }
  }
  .follow-list-user {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    color: inherit !important;
    text-decoration: none;
  }
  .follow-list-user .avatar-frame-wrap--follow {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  .follow-list-user .avatar-frame-img,
  .follow-list-user > img {
    width: 44px;
    height: 44px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg3);
    border: 2px solid var(--border);
    flex-shrink: 0;
  }
  .follow-list-user .avatar-frame-wrap .avatar-frame-img {
    border: none;
    box-shadow: none;
  }
  .follow-list-name {
    display: block;
    color: var(--cyan);
    font-weight: 700;
    font-size: 14px;
  }
  .follow-list-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
  }

  /* Profile follow list modal */
  .profile-follow-modal-trigger {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: var(--cyan);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: color var(--transition);
  }
  .profile-follow-modal-trigger:hover {
    color: var(--red);
  }
  .follow-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
  }
  .follow-modal.is-open {
    display: flex;
  }
  .follow-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
  }
  .follow-modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    max-height: min(78vh, 620px);
    display: flex;
    flex-direction: column;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
  }
  .follow-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 12px 14px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    border-left: 4px solid var(--red);
    flex-shrink: 0;
  }
  .follow-modal-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .follow-modal-header h3 i {
    color: var(--red);
    font-size: 13px;
  }
  .follow-modal-close {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg2);
    color: var(--muted);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    flex-shrink: 0;
  }
  .follow-modal-close:hover {
    color: #fff;
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.12);
  }
  .follow-modal-search-wrap {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    flex-shrink: 0;
  }
  .follow-modal-search-label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0 12px;
    min-height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
  }
  .follow-modal-search-label:focus-within {
    border-color: rgba(230, 57, 70, 0.45);
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.12);
  }
  .follow-modal-search-label .fa-search {
    color: var(--muted);
    font-size: 12px;
    flex-shrink: 0;
  }
  .follow-modal-search {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text);
    padding: 8px 0;
    font: inherit;
    font-size: 13px;
  }
  .follow-modal-search::placeholder {
    color: var(--muted);
  }
  .follow-modal-search:focus {
    outline: none;
  }
  .follow-modal-list {
    flex: 1;
    overflow: auto;
    min-height: 120px;
    background: var(--bg2);
  }
  .follow-modal-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
  }
  .follow-modal-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    min-height: 62px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
  }
  .follow-modal-user {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
  }
  .follow-modal-user .avatar-frame-wrap--follow {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
  .follow-modal-user .avatar-frame-img,
  .follow-modal-user > img {
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg3);
    border: 2px solid var(--border);
    transition: border-color var(--transition);
  }
  .follow-modal-user .avatar-frame-wrap .avatar-frame-img {
    border: none;
    box-shadow: none;
  }
  .follow-modal-row:hover .follow-modal-user .avatar-frame-img,
  .follow-modal-row:hover .follow-modal-user > img {
    border-color: rgba(230, 57, 70, 0.35);
  }
  .follow-modal-user-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
  }
  .follow-modal-username {
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: color var(--transition);
  }
  @media (hover: hover) {
    .follow-modal-username:hover {
      color: var(--red);
    }
  }
  .follow-modal-row:last-child {
    border-bottom: none;
  }
  @media (hover: hover) {
    .follow-modal-row:hover {
      background: rgba(255, 255, 255, 0.02);
    }
  }
  .follow-modal-inline-follow {
    border: none;
    background: none;
    padding: 0;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--transition);
  }
  .follow-modal-inline-follow:hover {
    color: #ff6b6b;
  }
  .follow-modal-inline-follow.is-following {
    color: var(--muted);
    cursor: default;
  }
  .follow-modal-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .follow-modal-btn {
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 7px 12px;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  }
  .follow-modal-btn--muted {
    background: var(--bg3);
    border-color: var(--border);
    color: var(--text);
  }
  .follow-modal-btn--muted:hover {
    background: var(--bg4);
    border-color: rgba(230, 57, 70, 0.35);
    color: #fff;
  }
  .follow-modal-btn--following {
    background: transparent;
    border-color: var(--border);
    color: var(--muted);
  }
  .follow-modal-btn--following:hover {
    border-color: var(--red);
    color: #fff;
    background: rgba(230, 57, 70, 0.08);
  }
  .follow-modal-btn--danger {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
  }
  .follow-modal-btn--danger:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.28);
  }
  .follow-modal-btn--ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--muted);
    padding-inline: 10px;
  }
  .follow-modal-btn--ghost:hover {
    color: #fff;
    border-color: var(--border);
    background: var(--bg3);
  }
  .follow-modal-btn:disabled {
    opacity: 0.55;
    cursor: wait;
  }
  body.follow-modal-open {
    overflow: hidden;
  }
  @media (max-width: 480px) {
    .follow-modal {
      padding: 12px;
    }
    .follow-modal-panel {
      width: 100%;
      max-height: 86vh;
    }
  }

  /* =========================================================
     COMPREHENSIVE MOBILE RESPONSIVE
     ========================================================= */
  @media (max-width: 900px) {
    .featured-steam-head {
      padding: 0;
      margin-bottom: 12px;
    }
    .featured-steam-section {
      overflow: visible;
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .featured-carousel-shell--steam {
      overflow: visible;
    }
    .featured-carousel-viewport {
      overflow: hidden;
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    /* Prevent horizontal overflow */
    body, html {
      overflow-x: hidden;
      width: 100%;
    }
    .container {
      overflow-x: hidden;
      padding: 0 12px;
      width: 100%;
      max-width: 100%;
    }
    .main-grid {
      width: 100%;
      max-width: 100%;
    }
    .content {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }
    /* Force all widgets to be responsive */
    .widget {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }
    .section-block {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }
    /* Force content images to be responsive (exclude fixed-size avatars/decorations) */
    img:not(.avatar-frame-border):not(.avatar-frame-img):not(.post-avatar):not(.comment-avatar):not(.nav-avatar):not(.nav-logo-img):not(.post-card-avatar):not(.team-member-avatar):not(.game-feedback-avatar):not(.notif-item-avatar):not(.post-author-widget-avatar__img) {
      max-width: 100%;
      height: auto;
    }
    .avatar-frame-wrap img,
    img.team-member-avatar,
    img.post-avatar,
    img.comment-avatar,
    img.nav-avatar,
    img.post-card-avatar,
    img.post-author-widget-avatar__img {
      max-width: none;
    }
    .post-card-image {
      max-width: 100% !important;
      height: auto !important;
    }
    /* Force any element with inline width to be responsive */
    div[style*="width:"]:not(.game-progress-track > div):not(.featured-slide-progress-track > div):not(.rank-progress-bar-fill):not(.achievement-progress span),
    span[style*="width:"],
    a[style*="width:"] {
      max-width: 100% !important;
    }
    .featured-carousel,
    .featured-carousel-shell {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
    }
    
    /* Navbar improvements */
    .navbar-inner { padding: 0 12px; }
    .nav-logo {
      width: auto;
      min-width: 0;
      margin-right: 0;
    }
    .nav-logo-img {
      height: 14px !important;
      width: auto !important;
      max-width: min(68px, 32vw) !important;
    }
    
    /* Hero section */
    .hero-logo {
      max-width: min(1400px, 100%);
      height: 150px;
      margin-bottom: 16px;
      padding: 0 12px 10px;
    }
    .hero-logo::before {
      left: max(12px, calc(50% - 38vw));
      width: min(104px, 34vw);
      height: min(58px, 18vw);
    }
    .hero-logo-img {
      max-width: 100%;
      height: 100px;
      object-fit: cover;
    }
    .hero-subtitle {
      font-size: 12px;
      padding: 0 12px 16px;
    }
    
    /* Announcement */
    .announcement-bar { padding: 6px 12px; font-size: 12px; }
    
    /* Section headers */
    .section-header { padding: 10px 12px; font-size: 14px; }
    
    /* Post rows — compact card layout on mobile */
    .post-row { padding: 11px 12px; }
    .post-list .post-row--forum,
    .post-list .post-row-vip-locked {
      display: grid;
      grid-template-columns: 36px minmax(0, 1fr);
      column-gap: 10px;
      row-gap: 0;
      align-items: start;
    }
    .post-list .post-row--forum > .post-row-avatar-link,
    .post-list .post-row-vip-locked > .post-row-avatar-link {
      grid-column: 1;
      grid-row: 1;
      align-self: start;
    }
    /* keep framed + plain avatars consistent with the 36px grid column */
    .post-list .post-row--forum .avatar-frame-wrap--post,
    .post-list .post-row-vip-locked .avatar-frame-wrap--post { width: 36px; height: 36px; }
    .post-list .post-row--forum .post-row-avatar-link > img.post-avatar,
    .post-list .post-row-vip-locked .post-row-avatar-link > img.post-avatar { width: 36px; height: 36px; }
    .post-list .post-row--forum > .post-row-body,
    .post-list .post-row-vip-locked > .post-row-body {
      grid-column: 2;
      grid-row: 1;
      flex-direction: column;
      align-items: stretch;
      gap: 5px;
    }
    /* 1) category label */
    .post-list .post-row--forum .post-row-top {
      order: -3;
      gap: 5px;
      min-width: 0;
    }
    .post-list .post-row--forum .post-row-top .post-badge {
      font-size: 9px;
      padding: 2px 7px;
      letter-spacing: .3px;
      max-width: 100%;
    }
    /* 2) title */
    .post-list .post-row--forum .post-title-link {
      order: -2;
      flex: none;
      width: 100%;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.35;
      white-space: normal;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    /* 3) single compact meta line: author · time .... stats */
    .post-list .post-row--forum .post-meta {
      order: 0;
      flex: none;
      width: 100%;
      display: flex !important;
      flex-wrap: nowrap;
      align-items: center;
      column-gap: 8px;
      font-size: 11px;
      white-space: nowrap;
      color: var(--muted);
    }
    .post-list .post-row--forum .post-meta-author {
      flex: 0 1 auto;
      min-width: 0;
      font-size: 11px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .post-list .post-row--forum .post-meta-author .comment-user-badge {
      font-size: 8px;
      padding: 1px 5px;
      letter-spacing: 0;
    }
    .post-list .post-row--forum .post-meta-author .comment-user-badge i {
      font-size: 7px;
    }
    .post-list .post-row--forum .post-meta-time {
      flex: 0 0 auto;
      font-size: 10px;
      color: var(--muted);
    }
    .post-list .post-row--forum .post-meta .post-solved-badge {
      flex: 0 0 auto;
      font-size: 10px;
    }
    .post-list .post-row--forum .post-meta-stats {
      flex: 0 0 auto;
      margin-left: auto;
      gap: 9px;
      font-size: 10px;
      color: var(--muted);
      padding-left: 6px;
    }
    .post-list .post-row--forum .post-meta-stats .like-num { color: #fff; }
    .post-list .post-row--forum .post-meta .cat-name {
      display: none;
    }
    .post-list .post-row-vip-locked {
      grid-template-columns: 36px minmax(0, 1fr);
    }
    .post-list .post-row-vip-locked > .btn-vip-unlock {
      grid-column: 1 / -1;
      grid-row: 2;
      justify-self: stretch;
      width: 100%;
      margin-top: 6px;
      justify-content: center;
      font-size: 10px;
      padding: 6px 10px;
    }
    .post-list .post-row-vip-locked .post-row-body {
      gap: 5px;
    }
    .post-list .post-row-vip-locked .post-row-vip-main {
      order: -2;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .post-list .post-row-vip-locked .post-row-top {
      order: -1;
    }
    .post-list .post-row-vip-locked .post-title-link {
      white-space: normal;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.35;
      font-size: 14px;
      font-weight: 600;
    }
    .post-list .post-row-vip-locked .post-meta-vip-locked {
      display: flex !important;
      flex-wrap: wrap;
      align-items: center;
      gap: 4px 8px;
      white-space: normal;
      font-size: 11px;
    }
    /* Profile topic list — no avatar column */
    .post-list .post-row--profile {
      flex-wrap: wrap;
      align-items: center;
      gap: 6px 8px;
    }
    .post-list .post-row--profile > .post-badge {
      flex: 0 0 auto;
    }
    .post-list .post-row--profile .post-title-link {
      flex: 1 1 0;
      min-width: 0;
      max-width: 100%;
      white-space: normal;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      padding-left: 0;
    }
    .post-list .post-row--profile .post-meta {
      flex: 1 1 100%;
      display: flex !important;
      flex-wrap: wrap;
      align-items: center;
      gap: 4px 10px;
      font-size: 11px;
      white-space: normal;
      padding-left: 0;
      min-width: 0;
    }
    .post-list .post-row--profile .post-meta .like-info i {
      flex-shrink: 0;
    }
    .avatar-frame-wrap--post,
    .avatar-frame-wrap--comment,
    .avatar-frame-wrap--feedback { width: 36px; height: 36px; }
    .post-avatar { width: 36px; height: 36px; }
    .avatar-frame-wrap--card { width: 42px; height: 42px; }
    .post-title-link { font-size: 13px; }
    .post-badge { font-size: 9px; padding: 1px 6px; }
    
    /* Cards */
    .card { padding: 16px; }
    .post-card { padding: 16px; }
    .post-card-header {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      column-gap: 12px;
      row-gap: 0;
      align-items: start;
      margin-bottom: 12px;
      padding-bottom: 12px;
    }
    .post-card-author-block {
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 0;
    }
    .post-card-author-top {
      align-items: flex-start;
    }
    .post-card-author-identity {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
    }
    .post-card-author-actions .btn-sm {
      padding: 4px 8px;
      font-size: 11px;
    }
    .post-card-avatar { width: 42px; height: 42px; }
    .post-card-title { font-size: 16px; margin-bottom: 10px; }
    .post-card-body { font-size: 13px; }
    .post-card-footer { gap: 12px; margin-top: 14px; padding: 12px 0; }
    
    /* Buttons */
    .btn { padding: 6px 14px; font-size: 12px; }
    .btn-sm { padding: 4px 8px; font-size: 11px; }
    .btn.btn-sm.game-card-btn,
    a.btn.btn-sm.game-card-btn,
    .btn.btn-sm.trending-game-card-btn,
    a.btn.btn-sm.trending-game-card-btn {
      height: 28px;
      min-height: 28px;
      max-height: 28px;
      padding: 0 10px;
      font-size: 12px;
    }
    
    /* Forms */
    .form-group input,
    .form-group textarea,
    .form-group select { padding: 8px 10px; font-size: 13px; }
    .auth-card { padding: 20px 16px; }
    .auth-logo .s-icon { width: 50px; height: 50px; font-size: 26px; }
    .auth-logo h2 { font-size: 18px; }
    
    /* Profile */
    .profile-cover-banner { min-height: 120px; max-height: 200px; }
    .profile-meta-row { margin-top: -45px; padding: 0 16px; }
    .profile-avatar-container { width: 90px; height: 90px; }
    .profile-avatar-container.has-avatar-border .profile-user-avatar-slot,
    .profile-avatar-container.has-avatar-border .avatar-frame-wrap { width: 90px; height: 90px; }
    .profile-avatar-container.has-avatar-border .avatar-upload-form { width: auto; height: auto; }
    .profile-avatar-container.has-avatar-border .avatar-change-overlay span { max-width: 62px; }
    .profile-username { font-size: 20px; }
    .profile-status-bar { padding: 8px 16px; font-size: 12px; }
    
    /* Widgets */
    .widget { margin-bottom: 16px; }
    .widget-header { padding: 8px 12px; font-size: 12px; }
    .widget-body { padding: 10px 12px; }
    
    /* Pagination */
    .pagination a, .pagination span { padding: 5px 10px; font-size: 12px; }
    
    /* Tab nav */
    .tab-nav { padding: 10px 0 8px; gap: 4px; }
    .tab-nav a { padding: 6px 14px; font-size: 12px; }
    
    /* Footer */
    .site-footer { padding: 28px 16px 20px; margin-top: 30px; }
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 24px 20px;
    }
    .footer-brand { grid-column: 1 / -1; align-items: center; text-align: center; }
    .footer-tagline { max-width: none; }
    .footer-discord { align-self: center; }
    .footer-bottom { margin-top: 24px; }
    
    /* Comments */
    .comment-row { padding: 12px 0; gap: 10px; }
    .comment-avatar { width: 34px; height: 34px; }
    .comment-text { font-size: 13px; }
    .comment-form { padding: 16px; }
    
    /* Toast notifications — üstte göster (mobil tarayıcı alt çubuğu görünürlüğü) */
    .toast-container {
      top: calc(58px + env(safe-area-inset-top, 0px));
      bottom: auto;
      left: 12px;
      right: 12px;
      max-width: none;
    }
    .toast {
      max-width: 100%;
      font-size: 13px;
      line-height: 1.5;
      padding: 12px 14px;
      animation: toast-in-top .3s ease;
    }
    
    /* Search */
    .search-bar-form-row { gap: 8px; }
    .search-bar-input {
      min-width: 0;
      width: 100%;
      padding: 10px 12px 10px 38px;
      font-size: 13px;
      background-position: 12px center;
    }
    .search-bar-submit {
      width: 100%;
      justify-content: center;
    }
    
    /* Info / legal / static content pages */
    .content-page {
      padding-top: 24px !important;
    }
    .content-page .card[style*="padding"] {
      padding: 24px 16px !important;
    }
    .content-page h1[style*="font-size"] {
      font-size: 22px !important;
    }

    .info-page-nav-select {
      display: block;
      margin-bottom: 12px;
    }
    .info-page-nav {
      display: none !important;
    }
    .info-page {
      padding-top: 16px;
      padding-bottom: 28px;
      width: 100%;
      max-width: 100%;
      margin-inline: auto;
    }
    .info-page-hero {
      padding: 18px 14px;
      margin-bottom: 12px;
      width: 100%;
    }
    .info-page-layout {
      grid-template-columns: 1fr;
      gap: 12px;
      width: 100%;
    }
    .info-page-sections {
      grid-column: 1;
      grid-row: auto;
      width: 100%;
      gap: 12px;
    }
    .info-page-hero h1 {
      font-size: 21px;
    }
    .info-page-hero p {
      font-size: 13px;
      line-height: 1.55;
    }
    .info-page-section.section-block {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .info-page-section .section-header {
      font-size: 13px;
      padding: 10px 12px;
      border-radius: 0;
    }
    .info-page-section {
      scroll-margin-top: 12px;
    }
    .info-page-section-body {
      padding: 14px;
      font-size: 14px;
      line-height: 1.65;
    }
    .info-page .section-block {
      margin-bottom: 0;
    }
    .info-page-cta {
      width: 100%;
      justify-content: center;
      margin-top: 10px;
    }
    .info-page-footer-note {
      padding: 8px 2px 0;
      font-size: 12px;
      line-height: 1.5;
    }
    .legal-doc h3 {
      font-size: 14px;
      margin: 16px 0 8px;
    }
    .legal-doc-intro {
      font-size: 13px;
    }
    .team-grid {
      grid-template-columns: 1fr !important;
      gap: 10px !important;
    }
    .team-member-card {
      padding: 14px 12px !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
    }
    .team-member-name {
      font-size: 14px !important;
    }
    .team-member-badges {
      flex-wrap: wrap;
      justify-content: center !important;
    }

    .join-team-page {
      padding-top: 20px;
    }
    .join-team-hero {
      padding: 20px 14px;
      margin-bottom: 12px;
    }
    .join-team-hero h1 {
      font-size: 22px;
    }
    .join-team-hero p {
      font-size: 13px;
    }
    .join-team-section-body {
      padding: 14px;
    }
    .join-team-info-grid,
    .join-team-info-grid--facts {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .join-team-info-card {
      padding: 16px 14px;
    }

    .settings-page-wrap {
      margin: 12px auto 0;
      padding: 0 12px 28px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
    .settings-page-header {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      margin-bottom: 14px;
    }
    .settings-page-header .page-title {
      font-size: 20px;
    }
    .settings-page-header .btn {
      width: 100%;
      justify-content: center;
    }
    .settings-page-wrap .alert {
      margin-bottom: 12px;
    }
    .settings-shell {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      width: 100%;
    }
    .settings-nav-select {
      display: block;
      flex-shrink: 0;
      width: 100%;
      box-sizing: border-box;
    }
    .settings-nav {
      display: none;
    }
    .settings-panes {
      width: 100%;
      min-width: 0;
      flex: 0 0 auto;
    }
    .settings-panes > form {
      width: 100%;
      display: flex;
      flex-direction: column;
      flex: 0 0 auto;
      min-width: 0;
    }
    .settings-pane {
      width: 100%;
      box-sizing: border-box;
      padding: 16px 14px;
      border-radius: 10px;
      flex: 0 0 auto;
    }
    .settings-pane__head {
      margin-bottom: 16px;
      padding-bottom: 12px;
    }
    .settings-pane__head h2 {
      font-size: 16px;
      gap: 7px;
    }
    .settings-pane__head p {
      font-size: 12px;
    }
    .settings-pane__actions {
      margin-top: 18px;
      padding-top: 14px;
    }
    .settings-pane__actions .btn {
      width: 100%;
      min-width: 0;
    }
    .settings-subcard {
      padding: 14px;
      margin-bottom: 12px;
    }
    .settings-subcard > h3 {
      font-size: 13px;
      margin-bottom: 12px;
    }
    .settings-radio-label,
    .settings-checkbox-label {
      padding: 10px;
      font-size: 13px;
      gap: 9px;
    }
    .settings-option-body strong {
      font-size: 12px;
      line-height: 1.4;
    }
    .settings-option-desc {
      font-size: 11px;
      line-height: 1.5;
    }
    .settings-section-divider {
      margin: 16px 0 12px;
      padding-top: 14px;
    }
    .settings-section-divider h3 {
      font-size: 13px;
    }
    .settings-danger-row {
      flex-direction: column;
      gap: 12px;
      padding: 12px 0;
    }
    .settings-danger-action,
    .settings-danger-action > summary,
    .settings-danger-form {
      width: 100%;
      box-sizing: border-box;
    }
    .settings-danger-action > summary {
      width: 100%;
      justify-content: center;
    }
    .settings-danger-form .btn {
      width: 100%;
      justify-content: center;
    }
    .settings-deletion-banner {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }
    .settings-deletion-banner form .btn {
      width: 100%;
      justify-content: center;
    }
    .settings-discord-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
    }
    .settings-discord-actions .btn {
      width: 100%;
      justify-content: center;
    }
    .settings-discord-connect-btn {
      width: 100%;
      justify-content: center;
    }
    .username-color-picker {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }
    .username-color-picker__option {
      padding: 8px 4px;
    }
    .username-color-picker__label {
      font-size: 10px;
    }
    .username-color-custom__controls {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .session-row {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }
    .session-row form,
    .session-row .btn {
      width: 100%;
    }
    .session-row .btn {
      justify-content: center;
    }
    .access-log-row {
      flex-wrap: wrap;
      align-items: flex-start;
    }
    .access-log-action,
    .access-log-action .btn,
    .access-log-status {
      width: 100%;
    }
    .access-log-action {
      text-align: center;
    }
    .access-log-action .btn {
      justify-content: center;
    }
    .access-log-status {
      text-align: center;
    }
    .access-log-filters__field {
      flex: 1 1 calc(50% - 5px);
    }
    .notifications-page-actions {
      width: 100%;
    }
    .notifications-page-actions .btn {
      flex: 1 1 auto;
      justify-content: center;
    }

    .points-page {
      padding-top: 24px;
      padding-bottom: 28px;
    }
    .points-page-hero h1 {
      font-size: 22px;
    }
    .points-page-hero p {
      font-size: 13px;
    }
    .points-page-meta {
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
    }
    .points-shop-page {
      padding-top: 24px;
    }
    .points-shop-hero h1 {
      font-size: 22px;
    }
    .points-shop-card-actions {
      flex-direction: column;
    }
    .points-shop-card-actions .btn {
      width: 100%;
      justify-content: center;
    }
    
    /* Featured carousel mobile */
    .featured-showcase-section.section-block {
      overflow: visible !important;
    }
    .featured-carousel-shell {
      overflow: visible !important;
    }
    .featured-showcase-section .widget,
    .featured-showcase-section .widget-body {
      overflow: visible !important;
    }
    .featured-carousel {
      min-height: 0 !important;
      height: auto !important;
    }
    .carousel-slide,
    .carousel-slide-forum {
      position: relative !important;
      top: auto !important;
      left: auto !important;
      transform: none !important;
      height: 0 !important;
      overflow: hidden !important;
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
    }
    .carousel-slide.is-active,
    .carousel-slide-forum.is-active {
      height: auto !important;
      overflow: visible !important;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
    }
    .featured-slide-layout {
      grid-template-columns: 1fr !important;
      height: auto !important;
      min-height: 0 !important;
      max-height: none !important;
    }
    .featured-slide-media {
      height: clamp(180px, 52vw, 280px) !important;
      min-height: 180px !important;
    }
    .featured-slide-media .game-main-viewer,
    .featured-slide-media img {
      height: 100% !important;
      min-height: 100% !important;
      max-height: none !important;
    }
    .featured-slide-info {
      height: auto !important;
      min-height: 0 !important;
      overflow: visible !important;
      border-left: none !important;
      border-top: 1px solid var(--border);
      padding: 16px !important;
    }
    .featured-slide-desc {
      -webkit-line-clamp: 3;
      line-clamp: 3;
    }
    .featured-screenshots {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 4px;
    }
    .featured-slide-bottom,
    .featured-slide-progress,
    .featured-slide-actions {
      display: block;
      visibility: visible;
    }
    .featured-slide-title {
      font-size: 16px !important;
    }
    .featured-carousel-shell:not(.featured-carousel-shell--steam) .featured-carousel-nav {
      width: 36px !important;
      height: 36px !important;
      top: clamp(90px, 26vw, 140px) !important;
      transform: translateY(-50%) !important;
    }
    .featured-carousel-shell:not(.featured-carousel-shell--steam) .featured-carousel-nav:hover,
    .featured-carousel-shell:not(.featured-carousel-shell--steam) .featured-carousel-nav:active {
      transform: translateY(-50%) scale(1) !important;
    }
    .featured-carousel-dots {
      position: relative !important;
      left: auto !important;
      bottom: auto !important;
      transform: none !important;
      justify-content: center;
      padding: 12px 0 6px;
      margin-top: 0;
    }
    .featured-carousel-dots .carousel-dot,
    .featured-carousel-dots .carousel-dot-forum {
      width: 10px !important;
      height: 10px !important;
    }

    .featured-carousel-shell--steam {
      --steam-cover-h: clamp(220px, 56vw, 320px);
      padding: 0 0 34px !important;
    }
    .featured-carousel-viewport {
      grid-column: auto;
    }
    .featured-carousel-shell--steam .featured-carousel-nav {
      position: absolute;
      top: calc(var(--steam-cover-h) / 2);
      transform: translateY(-50%);
      width: 36px;
      height: 72px;
      min-height: 0;
      z-index: 8;
    }
    .featured-carousel-shell--steam .featured-carousel-nav:hover,
    .featured-carousel-shell--steam .featured-carousel-nav:active {
      transform: translateY(-50%);
    }
    .featured-carousel-shell--steam .featured-carousel-nav.prev {
      left: 6px;
    }
    .featured-carousel-shell--steam .featured-carousel-nav.next {
      right: 6px;
    }
    .featured-steam-slide {
      flex-direction: column !important;
      height: auto !important;
    }
    .featured-steam-cover {
      flex: none !important;
      width: 100% !important;
      height: var(--steam-cover-h) !important;
    }
    .featured-steam-details {
      flex: none !important;
      max-width: none !important;
      min-width: 0 !important;
      width: 100% !important;
      height: auto !important;
      border-left: none !important;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
    }
    .featured-carousel-shell--steam::before,
    .featured-carousel-shell--steam::after {
      display: none;
    }
    .featured-carousel--steam .carousel-slide,
    .featured-carousel--steam .carousel-slide-forum {
      flex: 0 0 0 !important;
      max-width: 0 !important;
      width: 0 !important;
      min-width: 0 !important;
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
      transform: none !important;
      height: 0 !important;
      overflow: hidden !important;
      padding: 0 !important;
      margin: 0 !important;
      border: none !important;
    }
    .featured-carousel--steam .featured-carousel-track {
      gap: 0 !important;
    }
    .featured-carousel--steam .carousel-slide.is-active,
    .featured-carousel--steam .carousel-slide-forum.is-active {
      flex: 0 0 100% !important;
      max-width: 100% !important;
      width: 100% !important;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
      height: auto !important;
      overflow: visible !important;
    }
    .featured-steam-details {
      grid-template-columns: 1fr !important;
      gap: 12px !important;
      padding: 14px !important;
    }
    .featured-steam-details .featured-slide-title {
      font-size: 17px !important;
    }
    .featured-slide-bottom--steam {
      grid-template-columns: 1fr !important;
      gap: 12px !important;
    }
    .featured-slide-btn--steam,
    .featured-steam-details a.featured-slide-btn--steam {
      width: 100% !important;
      min-width: 0 !important;
    }
    .featured-screenshots--steam {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .featured-screenshots--steam .featured-screenshot-thumb {
      aspect-ratio: 460 / 215 !important;
      height: auto !important;
    }
    .featured-slide-desc--steam {
      -webkit-line-clamp: 5;
      line-clamp: 5;
    }
    
    /* Game grid mobile */
    .game-library-grid,
    .game-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 12px !important;
    }
    .game-card.widget {
      padding: 0 !important;
    }
    .game-card-body {
      min-height: 0 !important;
      padding: 10px 10px 12px !important;
    }
    .game-card-cover,
    .game-card-cover-wrap .spoiler-container {
      height: auto !important;
      aspect-ratio: 460 / 215;
    }
    .game-card-title {
      font-size: 13px !important;
      margin-bottom: 6px !important;
    }
    .game-card-meta {
      font-size: 10px !important;
      gap: 6px !important;
    }
    .game-progress-labels {
      font-size: 10px;
    }
    .game-progress-track {
      height: 5px;
    }
    .trending-games-grid {
      grid-template-columns: 1fr !important;
      gap: 12px !important;
      padding-inline: 0;
    }
    .trending-game-card-body {
      min-height: 0 !important;
      padding: 12px !important;
    }

    .game-page-tab-buttons {
      padding: 10px !important;
      gap: 6px !important;
    }
    .game-page-tab-buttons label {
      min-height: 38px !important;
      font-size: 12px !important;
      padding: 0 8px !important;
    }
    .game-page-tab-buttons label span:not(.game-page-tab-count) {
      display: none;
    }
    .game-feedback-body {
      padding-left: 0 !important;
    }
    
    /* Game page mobile */
    .game-main-image {
      width: 100% !important;
      height: auto !important;
      max-height: 350px !important;
    }
    .screenshot-scroll {
      width: 100% !important;
    }
    .screenshot-thumb {
      width: 110px !important;
    }
  }

  @media (max-width: 480px) {
    /* Extra small screens */
    .hero-title { font-size: 18px; }
    .hero-subtitle { font-size: 11px; }
    
    .post-row { padding: 10px; }
    .post-list .post-row--forum,
    .post-list .post-row-vip-locked {
      grid-template-columns: 32px minmax(0, 1fr);
      column-gap: 8px;
    }
    .post-list .post-row--forum .post-title-link,
    .post-list .post-row-vip-locked .post-title-link { font-size: 13px; }
    .post-list .post-row--forum .post-meta { font-size: 10px; gap: 3px 6px; }
    .post-list .post-row--forum .post-meta-stats { font-size: 9px; gap: 5px; }
    .post-list .post-row--profile .post-title-link { font-size: 12px; }
    .post-list .post-row--profile .post-meta { font-size: 10px; gap: 3px 6px; }
    .post-list .post-row-vip-locked .btn-vip-unlock { font-size: 9px; padding: 5px 8px; }
    .post-list .post-row-vip-locked .post-meta-vip-locked { font-size: 10px; }
    .post-avatar { width: 32px; height: 32px; }
    .avatar-frame-wrap--comment,
    .avatar-frame-wrap--feedback { width: 32px; height: 32px; }
    .post-list .post-row--forum .avatar-frame-wrap--post,
    .post-list .post-row-vip-locked .avatar-frame-wrap--post { width: 32px; height: 32px; }
    .post-list .post-row--forum .post-row-avatar-link > img.post-avatar,
    .post-list .post-row-vip-locked .post-row-avatar-link > img.post-avatar { width: 32px; height: 32px; }
    
    .card { padding: 14px; }
    .post-card { padding: 14px; }
    .post-card-title { font-size: 15px; }
    
    .btn { padding: 5px 12px; font-size: 11px; }
    
    .section-header { padding: 8px 10px; font-size: 13px; }
    
    .widget-header { padding: 8px 10px; }
    .widget-body { padding: 8px 10px; }
    
    .profile-username { font-size: 18px; }

    .points-stats-grid {
      grid-template-columns: 1fr;
    }
    
    /* Featured carousel extra small */
    .featured-slide-media {
      height: clamp(160px, 48vw, 220px) !important;
      min-height: 160px !important;
    }
    .featured-slide-title {
      font-size: 14px !important;
    }
    
    /* Game grid single column on very small screens */
    .game-library-grid,
    .game-grid {
      grid-template-columns: 1fr !important;
      gap: 10px !important;
    }
    .game-card-cover {
      height: 180px !important;
    }
    
    /* Game page mobile */
    .game-main-image {
      width: 100% !important;
      height: auto !important;
      max-height: 300px !important;
    }
    .screenshot-scroll {
      width: 100% !important;
    }
    .screenshot-thumb {
      width: 100px !important;
    }
  }

  /* ---- Info / Hakkımızda page ---- */
  .info-page {
    padding-top: 32px;
    padding-bottom: 48px;
    max-width: 960px;
    width: 100%;
    margin-inline: auto;
    scroll-behavior: smooth;
  }
  .info-page-hero {
    text-align: center;
    padding: 32px 24px;
    margin-bottom: 28px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .info-page-hero h1 {
    margin: 0 0 8px;
    font-size: 28px;
    color: var(--text);
  }
  .info-page-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.5;
  }
  .info-page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    width: 100%;
  }
  .info-page-nav-select {
    grid-column: 1;
    width: 100%;
    margin-bottom: 0;
    padding: 12px 40px 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 14px center;
    color: var(--text);
    font: 600 13px/1.4 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    appearance: none;
    -webkit-appearance: none;
  }
  .info-page-nav-select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(176, 42, 53, 0.2);
  }
  .info-page-nav {
    display: none;
  }
  .info-page-sections {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    width: 100%;
  }
  .info-page-nav-link {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--muted);
    font: 600 13px/1.4 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
    border-left: 3px solid transparent;
    overflow-wrap: break-word;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
  }
  .info-page-nav-link:hover {
    color: var(--text);
    background: var(--bg3);
  }
  .info-page-nav-link.is-active,
  .info-page-nav-link:focus-visible {
    color: #fff;
    background: rgba(176, 42, 53, 0.12);
    border-left-color: var(--red);
  }
  .info-page-section {
    scroll-margin-top: 96px;
  }
  .info-page-section-body {
    padding: 18px 20px 20px;
    background: var(--bg2);
    border-radius: 0 0 var(--radius) var(--radius);
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
  }
  .info-page-section-body p {
    margin: 0 0 14px;
  }
  .info-page-section-body p:last-child {
    margin-bottom: 0;
  }
  .info-page-lead {
    color: var(--muted);
    font-size: 13px;
  }
  .info-page-list {
    margin: 0 0 14px;
    padding-left: 20px;
    color: var(--text);
  }
  .info-page-list li {
    margin-bottom: 8px;
  }
  .info-page-list li:last-child {
    margin-bottom: 0;
  }
  .info-page-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 16px;
    margin: 0;
    color: var(--muted);
    text-align: center;
  }
  .info-page-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
  }
  .info-page-footer-note {
    margin: 4px 0 0;
    padding-top: 8px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    line-height: 1.5;
  }
  @media (min-width: 769px) {
    .info-page-layout {
      grid-template-columns: minmax(220px, 248px) minmax(0, 1fr);
      gap: 24px;
    }
    .info-page-nav-select {
      display: none;
    }
    .info-page-nav {
      display: flex;
      position: sticky;
      top: 88px;
      flex-direction: column;
      gap: 4px;
      padding: 12px;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      grid-column: 1;
      grid-row: 1;
    }
    .info-page-sections {
      grid-column: 2;
      grid-row: 1;
    }
  }

  .info-page-placeholder {
    margin: 0;
    padding: 12px 14px;
    border-radius: var(--radius);
    border: 1px dashed var(--border);
    background: var(--bg3);
    color: var(--muted);
    font-size: 13px;
    text-align: center;
  }

  /* ===== CONTACT PAGE ===== */
  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .contact-form-body { padding: 18px; }
  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .contact-form .form-group { margin-bottom: 14px; }
  .contact-form label .req { color: var(--red); }
  .contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
  .contact-side { display: flex; flex-direction: column; gap: 20px; }
  .contact-side-body { padding: 16px 18px; }
  .contact-side-body p { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0 0 12px; }
  .contact-side-body a {
    color: var(--red);
    font-weight: 600;
  }
  .contact-side-body a:hover { color: #fff; }
  .contact-channel {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    margin-bottom: 10px;
    border-radius: var(--radius);
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    transition: border-color var(--transition), color var(--transition);
  }
  .contact-channel i { color: var(--cyan); }
  .contact-channel:hover { border-color: var(--cyan); color: #fff; }
  .contact-channel--discord { background: rgba(88,101,242,.12); border-color: rgba(88,101,242,.4); }
  .contact-channel--discord i { color: #8a93f5; }
  .contact-channel--discord:hover { border-color: #5865F2; }
  .contact-note { font-size: 12px !important; }
  .contact-note i { color: var(--gold); margin-right: 4px; }

  /* ===== FAQ PAGE ===== */
  .faq-list { display: flex; flex-direction: column; gap: 8px; }
  .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg3);
    overflow: hidden;
  }
  .faq-item[open] { border-color: rgba(230,57,70,.4); }
  .faq-q {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    list-style: none;
    user-select: none;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-caret { color: var(--red); font-size: 12px; transition: transform .18s ease; flex-shrink: 0; }
  .faq-item[open] .faq-caret { transform: rotate(90deg); }
  .faq-a {
    padding: 0 15px 14px 37px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
  }
  @media (min-width: 769px) {
    .contact-layout {
      grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
      align-items: start;
    }
  }
  @media (max-width: 560px) {
    .contact-form-row { grid-template-columns: 1fr; gap: 0; }
  }
  .legal-doc h3 {
    margin: 22px 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
  }
  .legal-doc h3:first-of-type {
    margin-top: 0;
  }
  .legal-doc-intro {
    color: var(--muted);
    font-size: 14px;
  }
  .legal-doc a {
    color: var(--cyan);
    text-decoration: underline;
  }
  .legal-doc a:hover {
    color: #fff;
  }
  .legal-doc-accept {
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: var(--radius);
    border-left: 3px solid var(--red);
    background: var(--bg3);
  }
  .legal-doc-accept strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
  }
  .legal-doc-accept p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
  }

  /* Çeviri Ekibimiz / Translation Team */
  .team-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    gap: 16px !important;
  }

  .team-member-card {
    background: var(--bg3) !important;
    padding: 16px 12px !important;
    border-radius: var(--radius) !important;
    text-align: center !important;
    border: 1px solid var(--border) !important;
    transition: transform var(--transition), border-color var(--transition) !important;
  }

  .team-member-card:hover {
    transform: translateY(-2px) !important;
    border-color: var(--cyan) !important;
  }

  .team-member-avatar {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin-bottom: 10px !important;
    border: 2px solid var(--bg4) !important;
  }

  .team-member-name:not(.username-color) {
    color: var(--cyan) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 6px !important;
  }

  .team-member-name:not(.username-color):hover {
    color: var(--red) !important;
  }
  .team-member-name.username-color:hover {
    filter: brightness(1.12);
  }

  .team-member-points {
    color: var(--gold) !important;
    font-size: 12px !important;
    margin-top: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
  }

  .team-member-badges {
    margin-top: 10px !important;
    justify-content: center !important;
  }

body.spoiler-guest-lock .spoiler-container[data-spoiler="1"].revealed .spoiler-image {
  filter: blur(15px) !important;
}
body.spoiler-guest-lock .spoiler-container[data-spoiler="1"].revealed .spoiler-overlay {
  display: flex !important;
  opacity: 1 !important;
}
body.spoiler-guest-lock .game-lightbox-spoiler-wrap.is-spoiler .game-lightbox-image {
  filter: blur(18px);
}
body.spoiler-guest-lock .game-lightbox-spoiler-wrap.is-spoiler .game-lightbox-spoiler-overlay {
  display: flex !important;
}

.game-genre-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.game-genre-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.2;
}
.game-genre-badge--more {
  color: var(--cyan);
  border-color: rgba(0, 188, 212, 0.35);
  text-decoration: none;
}
a.game-genre-badge--link {
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
a.game-genre-badge--link:hover {
  background: rgba(0, 188, 212, 0.1);
  border-color: rgba(0, 188, 212, 0.45);
  color: var(--cyan);
}
a.game-genre-badge--more:hover {
  background: rgba(0, 188, 212, 0.1);
  color: var(--cyan);
}
.game-card-genres {
  margin: 6px 0 2px;
}
.game-card-genres .game-genre-badges {
  gap: 4px;
}
body.spoiler-guest-lock .game-genre-badge--protected {
  position: relative;
  overflow: hidden;
  min-width: 52px;
  justify-content: center;
  padding: 3px 8px;
}
body.spoiler-guest-lock .game-genre-badge--protected .game-genre-badge-text {
  filter: blur(8px);
  user-select: none;
  opacity: 0.35;
}
body.spoiler-guest-lock .game-genre-badge--protected .game-genre-badge-mask {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* ---- Spoiler images (click to reveal) ---- */
body.spoiler-blur-off .spoiler-container[data-spoiler="1"] .spoiler-image {
  filter: blur(0) !important;
}
body.spoiler-blur-off .spoiler-container[data-spoiler="1"] .spoiler-overlay {
  display: none !important;
}

.spoiler-container .spoiler-image {
  transition: filter 0.3s ease;
}
.spoiler-container[data-spoiler="1"] .spoiler-image {
  filter: blur(15px);
}
.spoiler-container .spoiler-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}
.spoiler-container[data-spoiler="1"] .spoiler-overlay {
  display: flex;
}
.spoiler-container[data-spoiler="1"].revealed .spoiler-image {
  filter: blur(0) !important;
}
.spoiler-container[data-spoiler="1"].revealed .spoiler-overlay {
  display: none;
}
body:not(.spoiler-guest-lock):not(.spoiler-blur-off) .spoiler-container--preview[data-spoiler="1"]:hover .spoiler-image {
  filter: blur(0) !important;
}
body:not(.spoiler-guest-lock):not(.spoiler-blur-off) .spoiler-container--preview[data-spoiler="1"]:hover .spoiler-overlay {
  opacity: 0;
  pointer-events: none;
}
.spoiler-overlay-label {
  color: #fff;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
}
.spoiler-overlay--locked {
  cursor: default;
}
body.spoiler-guest-lock .spoiler-container[data-spoiler="1"]:not(.spoiler-container--toggle) {
  cursor: default;
}
.spoiler-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  position: absolute;
  bottom: 6px;
  left: 6px;
  z-index: 2;
}
.spoiler-toggle-label input {
  margin: 0;
}

/* ---- Content report modal ---- */
.content-report-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.content-report-modal.is-open {
  display: flex;
}
.content-report-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.content-report-modal-panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.content-report-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.content-report-modal-header h3 {
  margin: 0;
  font-size: 16px;
}
.content-report-modal-close {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.content-report-modal-close:hover {
  color: #fff;
}
.content-report-modal-form {
  padding: 18px;
}
.content-report-modal-target {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}
body.content-report-modal-open {
  overflow: hidden;
}

/* ---- 18+ age gate ---- */
.age-gate-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.age-gate-modal.is-open {
  display: flex;
}
.age-gate-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(7px);
}
.age-gate-modal-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(440px, 100%);
  max-height: min(calc(100dvh - 24px), calc(100vh - 24px), 680px);
  overflow: hidden;
  background: linear-gradient(168deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 24px 18px;
  box-shadow: 0 36px 70px -28px rgba(0, 0, 0, 0.7);
  animation: ageGateIn 0.5s ease-out;
  margin: auto;
}
@keyframes ageGateIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .age-gate-modal-panel { animation: none; }
}
.age-gate-modal-badge {
  position: static;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
  padding: 5px 12px 4px;
  background: var(--bg);
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.age-gate-modal-header {
  flex-shrink: 0;
  margin-bottom: 12px;
}
.age-gate-modal-header h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}
.age-gate-modal-header h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.age-gate-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  padding-right: 2px;
}
.age-gate-modal-body p {
  margin: 0 0 10px;
  color: var(--muted);
}
.age-gate-modal-body p:first-child {
  color: var(--text);
}
.age-gate-modal-body p strong {
  color: #fff;
  font-weight: 600;
}
.age-gate-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.age-gate-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--muted);
}
.age-gate-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-size: 13px;
}
.age-gate-list a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 188, 212, 0.35);
}
.age-gate-list a:hover {
  color: #fff;
  border-bottom-color: var(--cyan);
}
.age-gate-warning {
  border-left: 2px solid var(--red);
  background: rgba(230, 57, 70, 0.12);
  border-radius: 0 6px 6px 0;
  padding: 9px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #ffb4b4 !important;
  margin: 0 0 14px !important;
  font-weight: 500;
}
.age-gate-dob {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 4px;
}
.age-gate-dob label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.age-gate-dob-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg3);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  color-scheme: dark;
}
.age-gate-dob-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.18);
}
.age-gate-dob-error {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #ff8a8a;
}
.age-gate-modal-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.age-gate-btn-accept,
.age-gate-btn-exit {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.age-gate-btn-accept:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.age-gate-btn-exit {
  color: var(--muted);
}
.age-gate-btn-exit:hover {
  color: var(--text);
}
body.age-gate-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  .age-gate-modal {
    padding: 10px;
  }
  .age-gate-modal-panel {
    width: 100%;
    max-height: calc(100dvh - 16px);
    max-height: calc(100vh - 16px);
    padding: 18px 16px 14px;
  }
  .age-gate-modal-header h2 {
    font-size: 19px;
  }
  .age-gate-modal-body {
    font-size: 13.5px;
  }
  .age-gate-modal-actions {
    padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
  }
}
@media (max-height: 720px) {
  .age-gate-modal-panel {
    max-height: calc(100dvh - 12px);
    max-height: calc(100vh - 12px);
    padding-top: 16px;
  }
  .age-gate-modal-header {
    margin-bottom: 8px;
  }
  .age-gate-modal-header h2 {
    font-size: 18px;
  }
  .age-gate-modal-body p {
    margin-bottom: 8px;
  }
  .age-gate-list {
    margin-bottom: 10px;
    gap: 5px;
  }
  .age-gate-warning {
    padding: 8px 10px;
    margin-bottom: 10px !important;
  }
  .age-gate-modal-actions {
    margin-top: 10px;
  }
}

/* ---- Moderation page ---- */
.nav-mod-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
.mod-reports-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.mod-reports-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.mod-reports-pending-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.28);
  color: #ffd966;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.mod-reports-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.mod-reports-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.mod-reports-tab:hover,
.mod-reports-tab.is-active {
  color: #fff;
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
}
.mod-reports-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.mod-reports-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mod-report-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.mod-report-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.mod-report-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mod-report-date {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.mod-report-target {
  margin-bottom: 10px;
  font-size: 14px;
}
.mod-report-target-label {
  color: var(--muted);
  margin-right: 6px;
}
.mod-report-target-owner {
  color: var(--muted);
  font-size: 12px;
  margin-left: 6px;
}
.mod-report-details {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--bg3);
  font-size: 13px;
}
.mod-report-details p {
  margin: 6px 0 0;
  color: var(--text);
}
.mod-report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 12px;
}
.mod-report-reporter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mod-report-reporter-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}
.mod-report-meta-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 2px;
}
.mod-report-reviewed-at {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.mod-report-actions {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.mod-report-review-form {
  margin-top: 12px;
}
.mod-report-details--reply {
  border-left: 3px solid var(--cyan);
}
.mod-report-details--reason {
  border-left: 3px solid rgba(100, 149, 237, 0.55);
}
.mod-report-details--reason p {
  font-weight: 600;
  color: #dce8ff;
}

.pagination-nav { margin: 16px 0 4px; }
.pagination-inner { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; }
.pagination-nav .pagination { margin: 0; }
.pagination-ellipsis { padding: 6px 8px; color: var(--muted); font-size: 13px; }
.pagination-info { font-size: 12px; color: var(--muted); padding: 0 6px; }

.games-library-page-shell {
  padding-top: 24px;
  padding-bottom: 24px;
}
.games-library-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.games-library-page-header-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.games-library-page-intro {
  margin: 0 0 16px;
  font-size: 13px;
}
body.page-sticky-footer.games-library-page-sticky .site-main {
  display: flex;
  flex-direction: column;
}
body.page-sticky-footer.games-library-page-sticky .games-library-page-shell {
  flex: 1;
}

.profile-shadow-ban-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #b388ff;
  background: rgba(126, 87, 194, 0.15);
  border: 1px solid rgba(126, 87, 194, 0.45);
}
.profile-mod-panel {
  margin-bottom: 8px;
}
.profile-mod-panel__body { padding: 16px; }
.profile-mod-panel__details > .profile-mod-panel__body {
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--bg2);
}
.profile-mod-panel__summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  justify-content: space-between;
}
.profile-mod-panel__summary::-webkit-details-marker { display: none; }
.profile-mod-panel__summary::marker { content: ''; }
.profile-mod-panel__details:not([open]) .profile-mod-panel__summary {
  border-radius: var(--radius);
}
.profile-mod-panel__chevron {
  font-size: 12px;
  color: var(--muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.profile-mod-panel__details[open] .profile-mod-panel__chevron {
  transform: rotate(180deg);
}
.profile-mod-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.profile-mod-panel__hint { font-size: 12px; color: var(--muted); }
.profile-mod-panel__admin-tools {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.profile-mod-panel__admin-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.profile-mod-panel__admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-mod-panel__hide-badges-form {
  margin-top: 12px;
}
.profile-mod-panel__hide-badges-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text);
  cursor: pointer;
}
.profile-mod-panel__ban-info {
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid rgba(230, 57, 70, 0.35);
  border-radius: var(--radius);
  background: rgba(230, 57, 70, 0.08);
  font-size: 13px;
}
.profile-mod-panel__ban-reason {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.profile-mod-history__title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.profile-mod-history__empty {
  padding: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.profile-mod-history__table-wrap { overflow-x: auto; }
.profile-mod-history__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.profile-mod-history__table th,
.profile-mod-history__table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.profile-mod-history__table th {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.profile-mod-history__table a { color: var(--cyan); }

/* ---- Points wallet page ---- */
.points-page {
  padding-top: 36px;
  padding-bottom: 40px;
  max-width: 860px;
}
.points-page-hero {
  text-align: center;
  margin-bottom: 28px;
}
.points-page-hero h1 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.points-page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.points-wallet-scene {
  perspective: 1400px;
  max-width: 480px;
  margin: 0 auto 28px;
  padding: 8px 12px 16px;
}
.points-wallet-card {
  --glare-x: 42%;
  --glare-y: 28%;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 228px;
  aspect-ratio: 1.586 / 1;
  border-radius: 22px;
  padding: 24px 26px 22px;
  background:
    radial-gradient(circle at 14% 88%, rgba(120, 140, 180, 0.12), transparent 42%),
    linear-gradient(145deg, #1e2430 0%, #161c28 46%, #0e1218 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 2px 0 rgba(255, 255, 255, 0.06) inset,
    0 -1px 0 rgba(0, 0, 0, 0.35) inset;
  overflow: hidden;
  color: #fff;
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(0deg) translateZ(0);
  will-change: transform;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: default;
  user-select: none;
}
.points-wallet-card--bronze {
  background:
    radial-gradient(circle at 12% 90%, rgba(205, 127, 50, 0.18), transparent 44%),
    linear-gradient(145deg, #3d2418 0%, #2a1a14 46%, #14100c 100%);
  border-color: rgba(205, 127, 50, 0.28);
}
.points-wallet-card--silver {
  background:
    radial-gradient(circle at 12% 90%, rgba(192, 192, 192, 0.14), transparent 44%),
    linear-gradient(145deg, #2a3038 0%, #1e2838 46%, #10141c 100%);
  border-color: rgba(192, 192, 192, 0.26);
}
.points-wallet-card--gold {
  background:
    radial-gradient(circle at 12% 90%, rgba(218, 165, 32, 0.16), transparent 44%),
    linear-gradient(145deg, #3a3010 0%, #2a2418 46%, #14120c 100%);
  border-color: rgba(255, 215, 0, 0.3);
}
.points-wallet-card--platinum {
  background:
    radial-gradient(circle at 12% 90%, rgba(180, 200, 220, 0.12), transparent 44%),
    linear-gradient(145deg, #2e3438 0%, #222c34 46%, #101418 100%);
  border-color: rgba(229, 228, 226, 0.3);
}
.points-wallet-card--elite {
  background:
    radial-gradient(circle at 12% 90%, rgba(138, 43, 226, 0.14), transparent 44%),
    linear-gradient(145deg, #321428 0%, #241838 46%, #100c18 100%);
  border-color: rgba(255, 107, 157, 0.32);
}
.points-wallet-card--vip {
  border-color: rgba(255, 215, 0, 0.38);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 2px 0 rgba(255, 255, 255, 0.06) inset,
    0 -1px 0 rgba(0, 0, 0, 0.35) inset;
}
.points-wallet-card--vip.points-wallet-card--bronze {
  background:
    radial-gradient(circle at 10% 92%, rgba(205, 127, 50, 0.2), transparent 44%),
    linear-gradient(145deg, #3d2818 0%, #2a1e14 44%, #12100c 100%);
}
.points-wallet-card--vip.points-wallet-card--silver {
  background:
    radial-gradient(circle at 10% 92%, rgba(192, 192, 192, 0.16), transparent 44%),
    linear-gradient(145deg, #2e3428 0%, #222838 44%, #12141c 100%);
}
.points-wallet-card--vip.points-wallet-card--gold {
  background:
    radial-gradient(circle at 10% 92%, rgba(218, 165, 32, 0.2), transparent 44%),
    linear-gradient(145deg, #3a3010 0%, #2a2418 44%, #12100c 100%);
}
.points-wallet-card--vip.points-wallet-card--platinum {
  background:
    radial-gradient(circle at 10% 92%, rgba(229, 228, 226, 0.14), transparent 44%),
    linear-gradient(145deg, #2e3430 0%, #242c34 44%, #121418 100%);
}
.points-wallet-card--vip.points-wallet-card--elite {
  background:
    radial-gradient(circle at 10% 92%, rgba(255, 0, 85, 0.14), transparent 44%),
    linear-gradient(145deg, #3a1828 0%, #2a1838 44%, #120c18 100%);
}
.points-wallet-card.is-hovering {
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 215, 0, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.1) inset;
}
.points-wallet-card--vip.is-hovering {
  border-color: rgba(255, 215, 0, 0.42);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.55),
    0 2px 0 rgba(255, 255, 255, 0.12) inset;
}
.points-wallet-card-texture {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 7px
    );
  pointer-events: none;
}

.points-wallet-card-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.34) 0%, transparent 48%),
    linear-gradient(
      calc(var(--glare-y) * 3.6deg + 105deg),
      transparent 38%,
      rgba(255, 255, 255, 0.12) 50%,
      transparent 62%
    );
  mix-blend-mode: overlay;
  transition: opacity 0.35s ease;
}
.points-wallet-card.is-hovering .points-wallet-card-glare {
  opacity: 1;
}
.points-wallet-card-shine {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 70%;
  height: 140%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.07) 50%, transparent 60%);
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 1;
}

.points-wallet-card-top,
.points-wallet-card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  transform: translateZ(12px);
}
.points-wallet-card-bottom {
  margin-top: auto;
  padding-top: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  transform: translateZ(8px);
}
.points-wallet-chip {
  width: 48px;
  height: 36px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, #ffe066 0%, #e6c04a 38%, #b8942e 72%, #8a6a18 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 2px 6px rgba(0, 0, 0, 0.28);
  transform: translateZ(18px);
}
.points-wallet-chip::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent 16%, rgba(0, 0, 0, 0.14) 16%, rgba(0, 0, 0, 0.14) 20%, transparent 20%),
    linear-gradient(90deg, transparent 36%, rgba(0, 0, 0, 0.1) 36%, rgba(0, 0, 0, 0.1) 40%, transparent 40%),
    linear-gradient(90deg, transparent 56%, rgba(0, 0, 0, 0.1) 56%, rgba(0, 0, 0, 0.1) 60%, transparent 60%),
    linear-gradient(0deg, transparent 38%, rgba(0, 0, 0, 0.12) 38%, rgba(0, 0, 0, 0.12) 62%, transparent 62%);
}
.points-wallet-contactless {
  position: absolute;
  left: 62px;
  top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  transform: rotate(90deg) translateZ(16px);
}
.points-wallet-brand {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.42);
  transform: translateZ(14px);
}
.points-wallet-brand-name {
  display: inline-block;
}
.points-wallet-balance {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  transform: translateZ(16px);
}
.points-wallet-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.points-wallet-amount {
  display: inline-block;
  font-size: clamp(34px, 7vw, 44px);
  line-height: 1;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}
.points-wallet-unit {
  margin-left: 8px;
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
}
.points-wallet-meta {
  min-width: 0;
}
.points-wallet-meta--right {
  text-align: right;
}
.points-wallet-meta-label {
  display: block;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 3px;
}
.points-wallet-meta strong {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}
.points-wallet-holder {
  font-size: 11px !important;
  letter-spacing: 0.06em;
}
.points-wallet-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px !important;
  letter-spacing: 0.08em;
}
.points-wallet-vip-mark {
  position: absolute;
  top: 58px;
  right: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.14);
  border: 1px solid rgba(255, 215, 0, 0.32);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translateZ(20px);
}
@media (prefers-reduced-motion: reduce) {
  .points-wallet-card {
    transition: none;
  }
  .points-wallet-card-glare {
    display: none;
  }
}
@media (hover: none) {
  .points-wallet-card-glare {
    display: none;
  }
}
.points-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.points-stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.points-stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.points-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.points-stat-value--pos { color: #7dcea0; }
.points-stat-value--neg { color: #ff8a8a; }
.points-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 12px;
  color: var(--muted);
}
.points-page-meta a {
  color: var(--cyan);
  text-decoration: none;
}
.points-page-meta a:hover {
  text-decoration: underline;
}
.points-vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.28);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.points-vip-multiplier {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.points-promo-section,
.points-gift-section {
  margin-bottom: 22px;
}
.points-promo-panel {
  padding: 16px 18px;
}
.points-promo-desc {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.points-gift-form {
  max-width: 620px;
}
.points-gift-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px auto;
  gap: 12px;
  align-items: end;
}
.points-gift-field {
  min-width: 0;
}
.points-gift-field--amount .points-field-input {
  text-align: center;
}
.points-gift-field--action .btn {
  min-height: 42px;
  padding-left: 18px;
  padding-right: 18px;
  white-space: nowrap;
}
.points-field-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.points-field-input::placeholder {
  color: var(--muted);
}
.points-field-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.15);
}
.points-field-input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.points-promo-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.points-promo-form {
  max-width: 480px;
}
.points-promo-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.points-promo-row .points-field-input,
.points-promo-row input:not([type="hidden"]) {
  flex: 1;
  min-width: 0;
}
.points-promo-row input[name="promo_code"] {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.points-promo-row input[name="promo_code"]::placeholder {
  text-transform: none;
  letter-spacing: normal;
}
.points-promo-row .btn {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 640px) {
  .points-gift-fields {
    grid-template-columns: 1fr 96px;
  }
  .points-gift-field--receiver {
    grid-column: 1 / -1;
  }
  .points-gift-field--action {
    grid-column: 1 / -1;
  }
  .points-gift-field--action .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .points-gift-fields {
    grid-template-columns: 1fr;
  }
  .points-gift-field--amount {
    grid-column: 1 / -1;
  }
}
.points-log-panel {
  padding: 0;
}
.points-log-empty {
  padding: 28px 20px;
  text-align: center;
  color: var(--muted);
}
.points-log-empty i {
  display: block;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
}
.points-log-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.points-log-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  grid-template-areas:
    "icon body amount"
    "icon body time";
  gap: 2px 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.points-log-item:last-child {
  border-bottom: none;
}
.points-log-icon {
  grid-area: icon;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  color: var(--muted);
}
.points-log-icon.is-earn {
  background: rgba(46, 204, 113, 0.12);
  color: #7dcea0;
}
.points-log-icon.is-spend {
  background: rgba(230, 57, 70, 0.12);
  color: #ff8a8a;
}
.points-log-body {
  grid-area: body;
  min-width: 0;
}
.points-log-body strong {
  display: block;
  font-size: 13px;
  color: #fff;
}
.points-log-body span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.points-log-amount {
  grid-area: amount;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  white-space: nowrap;
}
.points-log-amount.is-earn { color: #7dcea0; }
.points-log-amount.is-spend { color: #ff8a8a; }
.points-log-vip-mult {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  margin-left: 2px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
.points-log-time {
  grid-area: time;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.points-log-panel .pagination-nav {
  padding: 14px 16px 16px;
}
.points-earn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}
.points-earn-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.points-earn-card i {
  display: block;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
}
.points-earn-card strong {
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: 6px;
}
.points-earn-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}
.points-earn-note {
  margin: 0;
  padding: 0 16px 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.points-earn-note a {
  color: var(--cyan);
}
@media (max-width: 768px) {
  .points-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .points-earn-grid {
    grid-template-columns: 1fr;
  }
  .points-wallet-scene {
    max-width: none;
    padding-inline: 0;
  }
  .points-log-item {
    grid-template-columns: 36px minmax(0, 1fr);
    grid-template-areas:
      "icon body"
      "icon amount"
      "icon time";
  }
  .points-log-amount,
  .points-log-time {
    justify-self: start;
  }
}

/* ---- Avatar decorations (Discord-style) ----
   Avatar: 100% circle in .avatar-decor-stack
   Decoration: 120% overlay on top (152→182.4px, 80→96px in Discord) */
.avatar-frame-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  flex-shrink: 0;
  --decor-scale: 1.2;
}
.avatar-decor-stack {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: #222;
}
.avatar-frame-wrap .avatar-frame-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.avatar-frame-wrap .avatar-frame-border {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% * var(--decor-scale));
  height: calc(100% * var(--decor-scale));
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: contain;
  z-index: 1;
  max-width: none;
}
.avatar-frame-wrap--nav {
  width: 30px;
  height: 30px;
}
.avatar-frame-wrap--nav .avatar-frame-img.nav-avatar {
  border: none;
  box-shadow: none;
}
.avatar-frame-wrap--profile {
  width: 100%;
  height: 100%;
}
.avatar-frame-wrap--shop {
  width: 96px;
  height: 96px;
}
.avatar-frame-wrap--post,
.avatar-frame-wrap--comment,
.avatar-frame-wrap--feedback {
  width: 38px;
  height: 38px;
}
.avatar-frame-wrap--card {
  width: 50px;
  height: 50px;
}
.avatar-frame-wrap--team {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto 10px;
}
.avatar-frame-wrap--team .avatar-frame-img.team-member-avatar {
  border: none;
  box-shadow: none;
}
.avatar-frame-wrap--xs {
  width: 32px;
  height: 32px;
}
.avatar-frame-wrap--sm {
  width: 28px;
  height: 28px;
}
.avatar-frame-wrap--follow {
  width: 42px;
  height: 42px;
}
.avatar-frame-wrap--notif {
  width: 36px;
  height: 36px;
}
.avatar-frame-wrap--widget {
  width: 72px;
  height: 72px;
}
.post-author-widget-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  line-height: 0;
}
.post-author-widget-avatar__img,
.post-author-widget-avatar .avatar-frame-wrap--widget {
  width: 72px;
  height: 72px;
}
img.post-author-widget-avatar__img {
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}
.avatar-frame-wrap .avatar-frame-img.post-author-widget-avatar__img {
  border: none;
  box-shadow: none;
}
.avatar-frame-wrap .avatar-frame-img.post-avatar,
.avatar-frame-wrap .avatar-frame-img.comment-avatar,
.avatar-frame-wrap .avatar-frame-img.game-feedback-avatar,
.avatar-frame-wrap .avatar-frame-img.notif-item-avatar,
.avatar-frame-wrap .avatar-frame-img.post-card-avatar {
  border: none;
  box-shadow: none;
}
.post-row > .post-row-avatar-link,
.post-row > a:first-child,
.comment-row > a:first-child,
.search-user-row,
.top-user-row,
.game-feedback-item--comment,
.game-feedback-item--report,
.follow-modal-user,
.post-card-header > .post-card-avatar-link {
  overflow: visible;
}
.top-user-row .avatar-frame-wrap,
.post-row > .post-row-avatar-link .avatar-frame-wrap,
.post-row > a:first-child .avatar-frame-wrap,
.comment-row > a:first-child .avatar-frame-wrap,
.search-user-row .avatar-frame-wrap,
.follow-modal-user .avatar-frame-wrap,
.follow-list-user .avatar-frame-wrap {
  flex-shrink: 0;
}
.nav-shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--gold);
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.nav-shop-link:hover {
  color: #fff;
  border-color: rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.08);
}

/* ---- Points shop ---- */
.points-shop-page {
  padding-top: 36px;
  padding-bottom: 40px;
  max-width: 960px;
}
.points-shop-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 24px;
}
.points-shop-hero h1 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.points-shop-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.points-shop-balance {
  min-width: 180px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 215, 0, 0.22);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(230, 57, 70, 0.06));
  text-align: right;
}
.points-shop-balance-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.points-shop-balance strong {
  display: block;
  font-size: 28px;
  color: var(--gold);
  line-height: 1.1;
}
.points-shop-wallet-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--cyan);
}
.shop-flash {
  margin-bottom: 16px;
}
.shop-closed-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(230, 57, 70, 0.45);
  background: rgba(230, 57, 70, 0.1);
  color: #ffb4b4;
  font-size: 14px;
  line-height: 1.5;
}
.shop-closed-notice > .fa {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 20px;
  color: var(--red);
}
.shop-closed-notice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: #ff8a8a;
}
.shop-closed-notice p {
  margin: 0;
  color: #ffb4b4;
}
.points-shop-equipped-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(107, 203, 119, 0.35);
  border-radius: var(--radius);
  background: rgba(107, 203, 119, 0.08);
  font-size: 13px;
}
.points-shop-equipped-bar strong {
  color: #6bcb77;
}
.points-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  padding: 16px;
}
.points-shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 32px 16px;
}
.points-shop-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg3);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.points-shop-card.is-owned {
  border-color: rgba(0, 188, 212, 0.28);
}
.points-shop-card.is-equipped {
  border-color: rgba(255, 215, 0, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.12);
}
.points-shop-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 10px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 215, 0, 0.08), transparent 55%),
    #101010;
}
.points-shop-card-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #fff;
}
.points-shop-card-body p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.points-shop-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}
.points-shop-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.points-shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
}
.points-shop-badge--active {
  color: var(--gold);
}
.points-shop-badge--muted {
  color: var(--muted);
}
@media (max-width: 768px) {
  .points-shop-hero {
    align-items: flex-start;
  }
  .points-shop-balance {
    width: 100%;
    text-align: left;
  }
  .points-shop-grid {
    grid-template-columns: 1fr;
  }
}

/* Game filters (Oyunlar tab) */
.game-filters-bar {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
  padding: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.game-filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.game-filter-field {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.game-filter-field select {
  width: 100%;
  padding: 8px 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
}
.game-filters-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Profile library */
.profile-content-tabs {
  margin-top: 20px;
}
.profile-content-tabs > .profile-content-tab-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.profile-content-tab-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
  padding: 4px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.profile-content-tab-buttons label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: calc(var(--radius) - 2px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}
.profile-content-tab-buttons label:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
#profile-content-tab-posts:checked ~ .profile-content-tab-buttons label[for="profile-content-tab-posts"],
#profile-content-tab-library:checked ~ .profile-content-tab-buttons label[for="profile-content-tab-library"] {
  color: #fff;
  background: var(--bg3);
  box-shadow: inset 0 0 0 1px var(--border);
}
.profile-content-tab-panel {
  display: none;
}
#profile-content-tab-posts:checked ~ .profile-content-tab-panel--posts,
#profile-content-tab-library:checked ~ .profile-content-tab-panel--library {
  display: block;
}
.profile-content-tab-panel--library .user-library-section {
  margin-top: 0;
}
.profile-content-tab-panel--library .profile-library-body {
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.user-library-section {
  margin-top: 12px;
  margin-bottom: 0;
}
.user-library-section .profile-library-body {
  border-top: 1px solid var(--border);
  border-radius: var(--radius);
}
.profile-library-section {
  margin-top: 20px;
  margin-bottom: 20px;
}
.profile-library-body {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.profile-library-tabs-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.profile-library-panel,
.profile-library-content {
  width: 100%;
  box-sizing: border-box;
}
.profile-library-tabs-wrap > input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.profile-library-tabs {
  grid-row: 1;
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 6px;
  background: #09090c;
  border-bottom: 1px solid var(--border);
}
.profile-library-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.profile-library-tab i {
  font-size: 12px;
  opacity: 0.85;
  flex-shrink: 0;
}
.profile-library-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
#library-tab-all:checked ~ .profile-library-tabs label[for="library-tab-all"],
#library-tab-following:checked ~ .profile-library-tabs label[for="library-tab-following"],
#library-tab-playing:checked ~ .profile-library-tabs label[for="library-tab-playing"],
#library-tab-finished:checked ~ .profile-library-tabs label[for="library-tab-finished"],
#library-tab-downloaded:checked ~ .profile-library-tabs label[for="library-tab-downloaded"],
#library-tab-unlocked:checked ~ .profile-library-tabs label[for="library-tab-unlocked"] {
  color: #fff;
  background: var(--bg3);
  box-shadow: inset 0 0 0 1px var(--border);
}
.profile-library-panel {
  grid-row: 2;
  grid-column: 1;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
#library-tab-all:checked ~ .profile-library-panel--all,
#library-tab-following:checked ~ .profile-library-panel--following,
#library-tab-playing:checked ~ .profile-library-panel--playing,
#library-tab-finished:checked ~ .profile-library-panel--finished,
#library-tab-downloaded:checked ~ .profile-library-panel--downloaded,
#library-tab-unlocked:checked ~ .profile-library-panel--unlocked {
  visibility: visible;
  pointer-events: auto;
}
.profile-library-content {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.profile-library-content .game-library-grid {
  padding-top: 0;
  margin: 0;
}
.profile-library-content .empty-state {
  margin: 0;
  padding: 28px 12px;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.profile-library-section .game-card-library-tags {
  margin-bottom: 6px;
}
@media (max-width: 720px) {
  .profile-library-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .profile-library-tab {
    flex-direction: column;
    gap: 4px;
    padding: 7px 4px;
    min-height: 52px;
  }
  .profile-library-tab i {
    font-size: 13px;
  }
  .profile-library-tab span {
    font-size: 10px;
    line-height: 1.2;
  }
}

body.page-sticky-footer.settings-page-sticky .site-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

body.page-sticky-footer.settings-page-sticky .settings-page-wrap {
  flex: 0 0 auto;
  width: 100%;
  box-sizing: border-box;
}

body.page-sticky-footer.settings-page-sticky .settings-shell {
  flex: 0 0 auto;
  width: 100%;
}

body.page-sticky-footer.settings-page-sticky .settings-panes {
  flex: 1;
  min-width: 0;
}

body.page-sticky-footer.settings-page-sticky .settings-panes > form {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
}

body.page-sticky-footer.settings-page-sticky .settings-pane.is-active {
  flex: 0 0 auto;
  width: 100%;
}

body.page-sticky-footer .my-games-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 24px;
}

body.page-sticky-footer.collection-page-sticky .collection-page-sticky-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 24px;
}

body.page-sticky-footer.collection-page-sticky .collection-view-games,
body.page-sticky-footer.collection-page-sticky .collection-edit-panel {
  flex: 1;
}

.game-card-library-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.game-card-library-tag {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--bg3);
}
.game-card-library-tag--following { color: var(--cyan); border-color: rgba(0, 188, 212, 0.35); }
.game-card-library-tag--playing { color: #7ecbff; border-color: rgba(126, 203, 255, 0.35); }
.game-card-library-tag--finished { color: #8fd694; border-color: rgba(143, 214, 148, 0.35); }
.game-card-library-tag--downloaded { color: #8fd694; border-color: rgba(143, 214, 148, 0.35); }
.game-card-library-tag--unlocked { color: var(--gold); border-color: rgba(255, 193, 7, 0.35); }

/* Game share dropdown */
.game-share {
  position: relative;
}
.game-share-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 30;
  min-width: 190px;
  padding: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  display: none;
  gap: 4px;
}
.game-share-menu:not([hidden]),
.game-share-menu.is-open {
  display: grid;
}
.game-share-menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 10px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
  text-align: left;
}
.game-share-menu button:hover {
  background: var(--bg3);
  color: #fff;
}
.game-share-menu button .fa-whatsapp { color: #25d366; }
.game-share-menu button .fa-telegram-plane { color: #229ed9; }

@media (max-width: 768px) {
  .post-card-author-actions .post-card-share-desktop {
    display: none;
  }
  .post-card-share-mobile {
    display: block;
    padding: 12px 0 0;
    border-top: 1px solid var(--border);
  }
  .post-card-share-mobile .game-share {
    width: 100%;
  }
  .post-card-share-mobile .game-share-toggle {
    width: 100%;
    justify-content: center;
  }
  .game-share-menu {
    left: auto;
    right: auto;
    min-width: min(220px, calc(100vw - 24px));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  }
}

/* Screenshot lightbox */
body.game-lightbox-open {
  overflow: hidden;
}
.game-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
}
.game-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}
.game-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1100px, 96vw);
  height: min(86vh, 900px);
  margin: 7vh auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.game-lightbox-stage {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-lightbox-spoiler-wrap {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}
.game-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 820px);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}
.game-lightbox-spoiler-overlay {
  display: none;
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.72);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  padding: 12px;
}
.game-lightbox-spoiler-wrap.is-locked .game-lightbox-spoiler-overlay {
  cursor: default;
}
.game-lightbox-spoiler-wrap.is-spoiler .game-lightbox-spoiler-overlay {
  display: flex;
}
body.spoiler-blur-off .game-lightbox-spoiler-wrap.is-spoiler .game-lightbox-spoiler-overlay {
  display: none !important;
}
body.spoiler-blur-off .game-lightbox-spoiler-wrap.is-spoiler .game-lightbox-image {
  filter: none !important;
}
.game-lightbox-close,
.game-lightbox-nav {
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.game-lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
}
.game-lightbox-nav:hover,
.game-lightbox-close:hover {
  background: rgba(176, 42, 53, 0.85);
}
.game-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  color: #ccc;
  font-size: 13px;
  font-weight: 700;
}

/* Mention autocomplete */
.mention-autocomplete-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 40;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.mention-autocomplete-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.mention-autocomplete-item.is-active,
.mention-autocomplete-item:hover {
  background: var(--bg3);
}
.mention-autocomplete-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--bg3);
}
.mention-autocomplete-name {
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .game-lightbox-panel {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 56px 8px 24px;
    box-sizing: border-box;
  }
  .game-lightbox-close {
    top: 8px;
    right: 8px;
  }
  .game-lightbox-counter {
    bottom: 12px;
  }
}

.seasonal-event-banner {
  margin: 14px auto 0;
  max-width: 720px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 193, 7, 0.35);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 87, 34, 0.08));
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.seasonal-event-banner a {
  color: var(--gold);
  font-weight: 600;
}
.points-page-hero .seasonal-event-banner {
  margin-top: 16px;
}

.post-link-preview {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin: 10px 0 4px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg3);
  color: inherit;
  text-decoration: none;
  max-width: 560px;
  transition: border-color var(--transition), background var(--transition);
}
.post-link-preview:hover {
  border-color: var(--cyan);
  background: rgba(0, 188, 212, 0.06);
}
.post-link-preview-img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--bg);
}
.post-link-preview-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.post-link-preview-title {
  font-size: 14px;
  color: var(--text);
  line-height: 1.35;
}
.post-link-preview-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-link-preview-host {
  font-size: 11px;
  color: var(--cyan);
  margin-top: auto;
}

.siralama-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.siralama-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.siralama-tab.is-active,
.siralama-tab:hover {
  color: var(--text);
  border-color: var(--cyan);
  background: rgba(0, 188, 212, 0.08);
}
.siralama-table-wrap {
  overflow-x: auto;
}
.siralama-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.siralama-table th,
.siralama-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}
.siralama-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.siralama-rank {
  width: 48px;
  font-weight: 700;
  color: var(--muted);
}
.siralama-row--top1 .siralama-rank { color: #ffd700; }
.siralama-row--top2 .siralama-rank { color: #c0c0c0; }
.siralama-row--top3 .siralama-rank { color: #cd7f32; }
.siralama-row.is-current-user {
  background: rgba(0, 188, 212, 0.08);
}
.siralama-user-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
}
.siralama-user-link:not([class*="username-color--"]) {
  color: var(--text);
}
.siralama-you-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cyan);
  border: 1px solid rgba(0, 188, 212, 0.35);
  border-radius: 999px;
  padding: 2px 8px;
}
.siralama-stat {
  text-align: right;
  white-space: nowrap;
}

.vip-purchase-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 16px;
}
.vip-purchase-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 16px 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}
.vip-purchase-note > i {
  color: var(--cyan);
  font-size: 16px;
  line-height: 1.5;
  flex-shrink: 0;
  margin-top: 1px;
}
.vip-purchase-note-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.vip-purchase-note-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--cyan);
  font-size: 13px;
  text-decoration: none;
}
.vip-purchase-note-link:hover {
  color: #7ee8f0;
}

.vip-pricing-card {
  display: inline-block;
  min-width: 260px;
  margin-bottom: 16px;
  padding: 24px 32px;
  background: var(--bg3);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  text-align: center;
}
.vip-pricing-card__label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.vip-pricing-card__amount {
  color: var(--gold);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
}
.vip-pricing-card__amount span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
}
.vip-pricing-card__sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}
.vip-pricing-card__note,
.vip-pricing-card__cancel {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.vip-purchase-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.vip-patreon-btn {
  padding: 14px 36px;
  font-size: 15px;
}
.vip-purchase-followup {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.vip-purchase-followup a {
  color: var(--gold);
}

.vip-supporter-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 24px;
  padding: 10px 18px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}
.vip-supporter-counter i {
  color: var(--gold);
}
.vip-supporter-counter strong {
  color: var(--gold);
  font-weight: 800;
}

.vip-supporter-wall {
  margin-bottom: 24px;
}
.vip-supporter-wall__body {
  padding: 16px 18px 18px;
}
.vip-supporter-wall__intro {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.vip-supporter-wall__empty {
  margin: 0;
  padding: 14px 16px;
  background: var(--bg3);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.vip-supporter-wall__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.vip-supporter-wall__item {
  margin: 0;
}
.vip-supporter-wall__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.vip-supporter-wall__link:hover {
  border-color: rgba(255, 215, 0, 0.35);
  background: rgba(255, 215, 0, 0.06);
}
.vip-supporter-wall__link .avatar-frame-wrap--sm {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.vip-supporter-wall__hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.vip-supporter-wall__hint a {
  color: var(--gold);
}

/* VIP extensions */
.profile-supporter-tagline {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  line-height: 1.5;
  max-width: 520px;
}
.profile-supporter-tagline .fa-crown {
  margin-right: 6px;
  opacity: 0.85;
}
.post-list .post-row--profile.post-row--pinned,
.profile-pinned-posts__list .post-row--pinned {
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}
.profile-pinned-tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
}
.follow-modal-user--vip .avatar-frame-wrap--follow,
.follow-modal-user--vip > img {
  box-shadow: 0 0 0 2px var(--gold), 0 0 12px rgba(255, 215, 0, 0.35);
  border-radius: 50%;
}
.follow-modal-row--vip .follow-modal-username {
  color: var(--gold);
}
.game-points-gate-vip-discount {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 13px;
}
.game-showcase-ribbon-discount {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
}
.vote-poll-suggest-block .vote-poll-suggest-form {
  max-width: 480px;
}
.vip-roadmap-poll__body {
  padding: 16px;
}
.vip-roadmap-poll__options {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.vip-roadmap-poll__option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
}
.vip-roadmap-poll__option input {
  margin-top: 3px;
  flex-shrink: 0;
}
.vip-roadmap-poll__voted {
  color: var(--cyan);
  font-size: 13px;
  margin: 0 0 12px;
}
.vip-roadmap-poll__results {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.vip-roadmap-poll__results-title {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vip-roadmap-poll__result-row {
  display: grid;
  grid-template-columns: 1fr minmax(80px, 140px) 40px;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
}
.vip-roadmap-poll__result-bar {
  height: 8px;
  background: var(--bg3);
  border-radius: 999px;
  overflow: hidden;
}
.vip-roadmap-poll__result-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #ffb347);
  border-radius: 999px;
}
.vip-roadmap-poll__result-pct {
  text-align: right;
  color: var(--cyan);
  font-weight: 700;
}
.info-supporter-wall__list {
  margin-top: 12px;
}
.settings-pinned-posts {
  display: grid;
  gap: 6px;
  max-height: 220px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Forum signature (VIP) */
.forum-signature {
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
  max-width: 100%;
  word-break: break-word;
}

/* Profile pinned posts */
.post-list .post-row--profile.post-row--pinned,
.profile-pinned-posts__list .post-row--pinned {
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}
.profile-pinned-tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
}
.settings-pinned-posts {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Follow modal VIP gold frame */
.follow-modal-user--vip .avatar-frame-wrap--follow,
.follow-modal-user--vip > img {
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.85), 0 0 12px rgba(255, 215, 0, 0.25);
  border-radius: 50%;
}
.follow-modal-row--vip .follow-modal-username {
  color: var(--gold);
}

/* Game VIP points discount */
.game-points-gate-vip-discount {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--gold);
}
.game-showcase-ribbon-discount {
  font-size: 10px;
  opacity: 0.9;
}

/* Vote poll VIP suggestion */
.vote-poll-suggestion-body {
  padding: 16px;
}
.vote-poll-suggestion-form {
  max-width: 420px;
}
.vote-poll-suggestion-used {
  color: var(--gold);
  font-size: 13px;
  margin: 0;
}

/* VIP roadmap poll */
.vip-roadmap-poll__body {
  padding: 16px;
}
.vip-roadmap-poll__options {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.vip-roadmap-poll__option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
}
.vip-roadmap-poll__option input {
  margin-top: 3px;
  flex-shrink: 0;
}
.vip-roadmap-poll__results {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.vip-roadmap-poll__results-title {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vip-roadmap-poll__result-row {
  display: grid;
  grid-template-columns: 1fr minmax(80px, 140px) 40px;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
}
.vip-roadmap-poll__result-bar {
  height: 8px;
  background: var(--bg3);
  border-radius: 999px;
  overflow: hidden;
}
.vip-roadmap-poll__result-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #ffb347);
  border-radius: 999px;
}
.vip-roadmap-poll__result-pct {
  text-align: right;
  color: var(--gold);
  font-weight: 700;
}
.vip-roadmap-poll__voted {
  color: var(--gold);
  font-size: 13px;
  margin: 0 0 12px;
}

.info-supporter-wall__list {
  margin-top: 12px;
}

/* Profile pin toggle (VIP own profile) */
.post-list .post-row--profile[data-post-id] {
  position: relative;
  padding-right: 36px;
}
.profile-pin-btn {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg3);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.profile-pin-btn:hover:not(:disabled) {
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.08);
}
.profile-pin-btn.is-pinned {
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.55);
  background: rgba(255, 215, 0, 0.12);
}
.profile-pin-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.profile-pin-btn__icon--muted {
  opacity: 0.65;
}

/* Sidebar VIP roadmap widget */
.vip-roadmap-widget__period {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}
.vip-roadmap-widget__intro {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
}
.vip-roadmap-widget__vote {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.vip-roadmap-widget__vote-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.4;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg3);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.vip-roadmap-widget__vote-btn:hover:not(:disabled) {
  border-color: rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.06);
}
.vip-roadmap-widget__vote-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}
.vip-roadmap-widget__voted {
  color: var(--gold);
  font-size: 12px;
  margin: 0 0 12px;
}
.vip-roadmap-widget__hint {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
}
.vip-roadmap-widget__results {
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.vip-roadmap-widget__results-title {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vip-roadmap-widget__result-row {
  display: grid;
  grid-template-columns: 1fr minmax(60px, 100px) 36px;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 11px;
}
.vip-roadmap-widget__result-row.is-mine .vip-roadmap-widget__result-label {
  color: var(--gold);
}
.vip-roadmap-widget__result-label {
  line-height: 1.3;
  word-break: break-word;
}
.vip-roadmap-widget__result-label .fa-check {
  color: var(--gold);
  margin-left: 4px;
  font-size: 10px;
}
.vip-roadmap-widget__result-bar {
  height: 6px;
  background: var(--bg3);
  border-radius: 999px;
  overflow: hidden;
}
.vip-roadmap-widget__result-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #ffb347);
  border-radius: 999px;
}
.vip-roadmap-widget__result-pct {
  text-align: right;
  color: var(--gold);
  font-weight: 700;
  font-size: 11px;
}

/* VIP game suggestion widget */
.vote-poll-suggestion-intro {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
}
.vote-poll-suggestion-widget--compact {
  margin-top: 0;
  border: none;
  background: transparent;
}
.vote-poll-suggestion-widget--compact .widget-header {
  display: none;
}
.vote-poll-suggestion-widget--compact .vote-poll-suggestion-body {
  padding: 0;
}
.vote-poll-suggest-block .vote-poll-suggestion-form textarea {
  min-height: 64px;
  resize: vertical;
}

.vip-roadmap-link-hint {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 20px;
  padding: 12px 16px;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius);
}
.vip-roadmap-link-hint a {
  color: var(--gold);
  font-weight: 600;
}

