    /* Game Detail Page */
    .game-detail-page {
      min-height: 100vh;
    }

    .detail-hero {
      position: relative;
      overflow: hidden;
      min-height: 320px;
      display: flex;
      align-items: flex-end;
    }

    .detail-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: blur(20px) brightness(0.3);
      transform: scale(1.1);
    }

    .detail-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(13,0,21,0.3) 0%, var(--purple-900) 100%);
    }

    .detail-hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 2rem;
      padding: 2rem 0;
      align-items: flex-end;
    }

    .detail-hero-cover {
      width: 200px;
      flex-shrink: 0;
    }

    .detail-hero-cover img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.5);
      display: block;
    }

    .detail-hero-cover .cover-placeholder {
      width: 200px;
      height: 94px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
      color: var(--purple-400);
      font-size: 2rem;
      font-weight: 700;
      border-radius: 10px;
    }

    .detail-hero-title {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .detail-hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .meta-chip {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 0.2rem 0.6rem;
      border-radius: 6px;
      font-size: 0.78rem;
      color: var(--text-light);
    }

    .detail-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      align-items: center;
    }

    .tier-badge-lg {
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.25rem 0.65rem;
      border-radius: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .proton-tag-lg {
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.25rem 0.65rem;
      border-radius: 6px;
      color: #fff;
    }

    .proton-tag-lg.proton-high { background: var(--green); }
    .proton-tag-lg.proton-medium { background: var(--accent); }
    .proton-tag-lg.proton-low { background: var(--orange); }

    .detail-body {
      padding-top: 0;
    }

    .detail-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 2rem;
      align-items: start;
    }

    .detail-section-block {
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.04);
      border-radius: 12px;
    }

    .detail-section-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--purple-200);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(168,85,247,0.1);
    }

    .detail-desc-text {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    .detail-screenshots-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 0.75rem;
    }

    .ss-item {
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: rgba(255,255,255,0.03);
    }

    .ss-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.2s;
    }

    .ss-item img:hover { transform: scale(1.05); }

    .ss-item.ss-more {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 1.2rem;
      font-weight: 700;
      background: rgba(168,85,247,0.05);
      border: 1px dashed rgba(168,85,247,0.15);
    }

    .detail-download-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .dl-item {
      padding: 0.5rem 1rem;
      background: rgba(168,85,247,0.08);
      border: 1px solid rgba(168,85,247,0.12);
      border-radius: 8px;
      font-size: 0.85rem;
      color: var(--text-light);
      cursor: pointer;
      transition: all 0.15s;
    }

    .dl-item:hover {
      background: rgba(168,85,247,0.15);
      border-color: var(--purple-400);
    }

    .detail-req-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .req-card {
      padding: 1rem;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px;
    }

    .req-card h4 {
      color: var(--purple-200);
      font-size: 0.8rem;
      margin-bottom: 0.5rem;
    }

    .req-card p {
      color: var(--text-light);
      font-size: 0.78rem;
      line-height: 1.6;
      white-space: pre-line;
    }

    .detail-sidebar {
      position: sticky;
      top: 100px;
    }

    .sidebar-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px;
      padding: 1.25rem;
      margin-bottom: 1rem;
    }

    .sidebar-card h4 {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--purple-200);
      margin-bottom: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .sidebar-card dl {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.35rem 0.75rem;
      font-size: 0.78rem;
    }

    .sidebar-card dt {
      color: var(--text-dim);
      font-weight: 600;
    }

    .sidebar-card dd {
      color: var(--text-light);
      text-align: right;
    }

    .sidebar-card .source-badge {
      display: inline-block;
      font-size: 0.7rem;
      padding: 0.15rem 0.4rem;
      margin: 0.15rem;
    }

    .detail-loading {
      text-align: center;
      padding: 4rem 2rem;
    }

    .detail-loading .spinner {
      width: 32px;
      height: 32px;
      border: 3px solid rgba(168,85,247,0.1);
      border-top-color: var(--purple-400);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
      margin: 0 auto 1rem;
    }

    .detail-error {
      text-align: center;
      padding: 4rem 2rem;
    }

    .detail-error p {
      color: var(--text-muted);
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .detail-install-bottom {
      text-align: center;
      padding: 1.5rem 0;
    }

    .detail-install-bottom .install-desc {
      color: var(--purple-300);
      font-size: 0.9rem;
      margin-bottom: 1.2rem;
      line-height: 1.5;
    }

    .install-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    .install-btn {
      font-size: 1rem;
      padding: 0.75rem 2rem;
      border-radius: 10px;
      font-weight: 700;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
    }

    .install-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(168,85,247,0.3);
    }

    .carousel {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      background: rgba(0,0,0,0.3);
    }

    .carousel-inner {
      display: flex;
      transition: transform 0.5s ease;
    }

    .carousel-slide {
      min-width: 100%;
      aspect-ratio: 16/9;
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      border: none;
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      z-index: 2;
    }

    .carousel-btn:hover { background: rgba(0,0,0,0.8); }

    .carousel-prev { left: 10px; }
    .carousel-next { right: 10px; }

    .carousel-dots {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 2;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: background 0.2s;
    }

    .carousel-dot.active {
      background: #fff;
    }

