/* ═══ Game Category — Light Theme ═══ */
.gc-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 36px;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
}
.gc-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.gc-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .45;
    filter: blur(2px);
}
.gc-hero-content {
    position: relative; z-index: 2;
    padding: 40px 36px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
}
.gc-hero-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; margin-bottom: 16px;
}
.gc-hero-breadcrumb a {
    color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s;
}
.gc-hero-breadcrumb a:hover { color: #fff; }
.gc-hero-breadcrumb .sep { color: rgba(255,255,255,.4); }
.gc-hero-breadcrumb .current { color: #fff; font-weight: 600; }
.gc-hero-title {
    font-size: 32px; font-weight: 800; color: #fff;
    margin: 0 0 10px; letter-spacing: -.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.gc-hero-meta {
    display: flex; align-items: center; gap: 20px;
    font-size: 14px; color: rgba(255,255,255,.8);
}
.gc-hero-meta span { display: flex; align-items: center; gap: 6px; }
.gc-hero-meta i { font-size: 16px; }

/* Grid */
.gc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 40px;
}

/* Card — White Theme */
.gc-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.gc-card:hover {
    transform: translateY(-6px);
    border-color: #6366f1;
    box-shadow: 0 12px 32px rgba(99,102,241,.12), 0 0 0 1px rgba(99,102,241,.08);
}
.gc-card-imgwrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f3f4f6;
}
.gc-card-imgwrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gc-card:hover .gc-card-imgwrap img {
    transform: scale(1.08);
}
.gc-card-imgwrap::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(255,255,255,.5), transparent);
    pointer-events: none;
}
.gc-card-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    color: #16a34a;
    font-size: 12px; font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex; align-items: center; gap: 5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.gc-card-badge i { font-size: 14px; }
.gc-card-body {
    padding: 16px 18px;
}
.gc-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gc-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gc-card-sold {
    font-size: 13px; color: #6b7280;
    display: flex; align-items: center; gap: 5px;
}
.gc-card-btn {
    font-size: 13px; font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 6px 16px;
    border-radius: 20px;
    display: flex; align-items: center; gap: 4px;
    transition: all .25s ease;
    box-shadow: 0 2px 8px rgba(99,102,241,.25);
}
.gc-card:hover .gc-card-btn {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(99,102,241,.35);
}

/* Empty */
.gc-empty {
    text-align: center; padding: 80px 20px;
    color: #9ca3af;
}
.gc-empty i { font-size: 56px; display: block; margin-bottom: 16px; opacity: .4; }
.gc-empty p { font-size: 15px; margin: 0; }

/* Section title */
.gc-section-title {
    font-size: 18px; font-weight: 700; color: #1f2937;
    margin: 0 0 20px;
    display: flex; align-items: center; gap: 10px;
}
.gc-section-title i { color: #6366f1; font-size: 20px; }

/* ─── Desktop 1200px+ ─── */
@media (min-width: 1200px) {
    .gc-hero { min-height: 300px; border-radius: 24px; }
    .gc-hero-content { padding: 48px 44px; }
    .gc-hero-title { font-size: 38px; }
    .gc-hero-breadcrumb { font-size: 15px; }
    .gc-hero-meta { font-size: 15px; gap: 24px; }
    .gc-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .gc-card { border-radius: 18px; }
    .gc-card-body { padding: 18px 20px; }
    .gc-card-title { font-size: 16px; }
    .gc-card-sold { font-size: 13px; }
    .gc-card-btn { font-size: 13px; padding: 7px 18px; }
    .gc-section-title { font-size: 20px; margin-bottom: 24px; }
}

/* ─── Mobile ─── */
@media (max-width: 600px) {
    .gc-hero { min-height: 160px; border-radius: 14px; }
    .gc-hero-content { padding: 20px 16px; }
    .gc-hero-title { font-size: 22px; }
    .gc-hero-meta { gap: 12px; font-size: 12px; }
    .gc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gc-card-body { padding: 10px 12px; }
    .gc-card-title { font-size: 13px; }
    .gc-card-btn { font-size: 11px; padding: 4px 12px; }
    .gc-section-title { font-size: 15px; }
}
