/* ===== CSS Variables - Neon Pink × Gold Luxury Gaming Theme ===== */
:root {
    --gq-primary: #ff3c78;
    --gq-primary-dark: #d42d5e;
    --gq-primary-light: #ff7aa2;
    --gq-secondary: #ffd700;
    --gq-secondary-dark: #c8a700;
    --gq-accent: #a855f7;
    --gq-accent-light: #c084fc;
    --gq-rose: #ff006e;
    --gq-sky: #818cf8;
    --gq-dark: #0a0a0f;
    --gq-darker: #040408;
    --gq-sidebar-bg: #0d0c14;
    --gq-sidebar-width: 250px;
    --gq-navbar-height: 64px;
    --gq-bg: #0e0d16;
    --gq-white: #ffffff;
    --gq-gray-50: #14121e;
    --gq-gray-100: #191726;
    --gq-gray-200: #1f1c30;
    --gq-gray-300: #2a2540;
    --gq-gray-400: #4a4560;
    --gq-gray-500: #6e6888;
    --gq-gray-600: #9590aa;
    --gq-gray-700: #bbb8cc;
    --gq-gray-800: #dcd9e8;
    --gq-text: #eceaf3;
    --gq-text-secondary: #9893b0;
    --gq-text-light: #ffffff;
    --gq-text-muted: #5e5880;
    --gq-card-bg: rgba(24, 20, 36, 0.75);
    --gq-card-hover: rgba(255, 60, 120, 0.08);
    --gq-glass-bg: rgba(24, 20, 36, 0.7);
    --gq-glass-border: rgba(255, 215, 0, 0.1);
    --gq-border: rgba(255, 255, 255, 0.06);
    --gq-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --gq-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --gq-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --gq-shadow-glow: 0 4px 24px rgba(255, 60, 120, 0.25);
    --gq-shadow-neon: 0 0 30px rgba(255, 60, 120, 0.15), 0 0 60px rgba(255, 60, 120, 0.05);
    --gq-radius-sm: 12px;
    --gq-radius: 16px;
    --gq-radius-lg: 20px;
    --gq-radius-xl: 28px;
    --gq-transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ===== Global Styles ===== */
*,*::before,*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--gq-text);
    background: var(--gq-bg);
    background-image:
        radial-gradient(ellipse at 15% 0%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 60%, rgba(255, 60, 120, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 90%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--gq-gray-100); }
::-webkit-scrollbar-thumb { background: var(--gq-gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gq-primary); }

/* ===== Top Navigation Bar ===== */
.gq-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--gq-navbar-height);
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(255, 215, 0, 0.06), 0 4px 30px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.gq-nav-inner {
    max-width: 100%;
    height: 100%;
    padding: 0 32px;
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.gq-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.gq-menu-btn {
    background: transparent;
    border: none;
    color: var(--gq-white);
    font-size: 22px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--gq-radius-sm);
    transition: var(--gq-transition);
    line-height: 1;
}

.gq-menu-btn:hover {
    background: rgba(255, 60, 120, 0.12);
    color: var(--gq-primary);
}

.gq-logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--gq-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gq-secondary) 0%, #ffe066 30%, var(--gq-primary-light) 70%, var(--gq-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.25));
}

.gq-nav-search {
    display: flex;
    align-items: center;
    justify-self: center;
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 30px;
    padding: 8px 20px;
    transition: var(--gq-transition);
    gap: 10px;
}

.gq-nav-search:focus-within {
    border-color: var(--gq-secondary);
    background: rgba(255, 215, 0, 0.04);
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.1), 0 0 0 2px rgba(255, 215, 0, 0.15);
}

.gq-search-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--gq-white);
    padding: 8px;
    width: 100%;
    font-size: 14px;
}

.gq-search-input::placeholder { color: rgba(255, 255, 255, 0.3); }

.gq-search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 0 6px;
    transition: var(--gq-transition);
    color: rgba(255, 255, 255, 0.5);
}

.gq-search-btn:hover { color: var(--gq-secondary); transform: scale(1.15); }

.gq-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.gq-nav-link {
    color: var(--gq-white);
    font-size: 14px;
    font-weight: 500;
    transition: var(--gq-transition);
    opacity: 0.7;
    position: relative;
}

.gq-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gq-secondary), var(--gq-primary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.gq-nav-link:hover {
    color: var(--gq-secondary);
    opacity: 1;
}

.gq-nav-link:hover::after { width: 100%; }

.gq-nav-btn {
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-primary-dark));
    color: var(--gq-white);
    padding: 9px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--gq-transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.gq-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--gq-shadow-neon);
}

/* ===== Main Layout ===== */
.gq-main {
    display: grid;
    grid-template-columns: var(--gq-sidebar-width) 1fr;
    margin-top: var(--gq-navbar-height);
    min-height: calc(100vh - var(--gq-navbar-height));
    position: relative;
}

.gq-main.is-collapsed { grid-template-columns: 0 1fr; }

/* ===== Sidebar ===== */
.gq-sidebar {
    position: sticky;
    top: var(--gq-navbar-height);
    width: var(--gq-sidebar-width);
    height: calc(100vh - var(--gq-navbar-height));
    background: #0b0a12;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 90%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.008) 3px, rgba(255,255,255,0.008) 6px);
    overflow-y: auto;
    overflow-x: hidden;
    transition: box-shadow 0.22s ease, z-index 0s step-end;
    box-shadow: 3px 0 40px rgba(0, 0, 0, 0.65);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.gq-sidebar-inner { padding: 20px 0 28px; }
.gq-sidebar-section { margin-bottom: 28px; }

.gq-sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 18px;
    margin-bottom: 16px;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, var(--gq-secondary) 0%, var(--gq-accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.gq-sidebar-title::after {
    content: '';
    display: block;
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,215,0,0.35), transparent);
    border-radius: 1px;
}

.gq-sidebar-menu { padding: 0 10px; }

.gq-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.48);
    transition: all 0.25s cubic-bezier(0.33, 1, 0.68, 1);
    font-size: 13px;
    font-weight: 500;
    border-radius: 10px;
    margin-bottom: 1px;
    text-decoration: none;
}

.gq-sidebar-link:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--gq-white);
    transform: translateX(4px);
    box-shadow: 0 2px 14px rgba(255, 215, 0, 0.06);
}

.gq-sidebar-link.is-active,
.gq-sidebar-link.active {
    background: linear-gradient(135deg, rgba(255, 60, 120, 0.18) 0%, rgba(168, 85, 247, 0.12) 100%);
    color: var(--gq-white);
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255, 60, 120, 0.12), inset 0 0 24px rgba(255, 60, 120, 0.04);
    border: 1px solid rgba(255, 60, 120, 0.18);
    position: relative;
}

.gq-sidebar-link.is-active::before,
.gq-sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--gq-primary), var(--gq-secondary));
    border-radius: 0 3px 3px 0;
}

.gq-sidebar-link.is-active .gq-icon,
.gq-sidebar-link.active .gq-icon {
    text-shadow: 0 0 12px rgba(255, 60, 120, 0.5);
}

.gq-sidebar-link .gq-icon {
    font-size: 16px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.gq-sidebar::-webkit-scrollbar { width: 4px; }
.gq-sidebar::-webkit-scrollbar-track { background: transparent; }
.gq-sidebar::-webkit-scrollbar-thumb { background: rgba(255, 215, 0, 0.1); border-radius: 2px; }
.gq-sidebar::-webkit-scrollbar-thumb:hover { background: rgba(255, 60, 120, 0.3); }

/* Sidebar Collapse */
.gq-collapse { margin-bottom: 28px; }

.gq-collapse-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 20px);
    margin: 0 10px 10px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.22s ease;
}

.gq-collapse-head:hover {
    background: rgba(255, 215, 0, 0.06);
    color: var(--gq-secondary);
    border-color: rgba(255, 215, 0, 0.12);
}

.gq-collapse-arrow {
    font-size: 9px;
    transition: transform 0.25s cubic-bezier(0.33, 1, 0.68, 1);
    opacity: 0.5;
}

.gq-collapse-head[aria-expanded="true"] .gq-collapse-arrow { transform: rotate(180deg); opacity: 1; }

.gq-collapse-body {
    overflow: hidden;
    max-height: 600px;
    opacity: 1;
    transition: max-height 0.25s ease, opacity 0.2s ease;
}

.gq-collapse-body.is-folded {
    max-height: 0;
    opacity: 0;
}

.gq-sidebar.is-folded { width: 0; padding: 0; overflow: hidden; }

/* ===== Icon-Only Sidebar (Default Desktop) ===== */
/* Grid reserves 60px for sidebar column; sidebar overflows to 250px but clip-path hides it */
.gq-main.is-icon-only {
    grid-template-columns: 60px 1fr;
}

.gq-sidebar.is-icon-only {
    width: var(--gq-sidebar-width);
    /* Clip to show only 60px — purely GPU composited, no layout/paint */
    clip-path: inset(0 calc(100% - 60px) 0 0);
    -webkit-clip-path: inset(0 calc(100% - 60px) 0 0);
    z-index: 10;
    transition: clip-path 0.25s cubic-bezier(0.33, 1, 0.68, 1),
                -webkit-clip-path 0.25s cubic-bezier(0.33, 1, 0.68, 1),
                box-shadow 0.25s cubic-bezier(0.33, 1, 0.68, 1),
                z-index 0s step-end;
}

/* Hover: reveal full sidebar over content by removing clip + raising z-index */
.gq-sidebar.is-icon-only:hover {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
    z-index: 50;
    box-shadow: 4px 0 36px rgba(0, 0, 0, 0.7);
}

/* ---- Icon-only inner layout (instant snap, no transitions) ---- */
.gq-sidebar.is-icon-only .gq-sidebar-title {
    opacity: 0;
    height: 0;
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
}
.gq-sidebar.is-icon-only .gq-sidebar-title::after { opacity: 0; }
.gq-sidebar.is-icon-only .gq-link-text { opacity: 0; white-space: nowrap; }
.gq-sidebar.is-icon-only .gq-collapse-text { opacity: 0; width: 0; overflow: hidden; }
.gq-sidebar.is-icon-only .gq-collapse-arrow { opacity: 0; }

/* Position icons within visible 60px clip area */
.gq-sidebar.is-icon-only .gq-sidebar-link {
    justify-content: flex-start;
    padding: 14px 14px 14px 12px;
    margin: 2px 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
    font-size: 13px;
}

.gq-sidebar.is-icon-only .gq-sidebar-link .gq-icon {
    font-size: 22px;
    width: auto;
    line-height: 1;
}

/* Active indicator in icon-only */
.gq-sidebar.is-icon-only .gq-sidebar-link.is-active,
.gq-sidebar.is-icon-only .gq-sidebar-link.active {
    background: rgba(255, 60, 120, 0.18);
    border: none;
    box-shadow: 0 0 16px rgba(255, 60, 120, 0.15), inset 0 0 20px rgba(255, 60, 120, 0.06);
}

.gq-sidebar.is-icon-only .gq-sidebar-link.is-active::before,
.gq-sidebar.is-icon-only .gq-sidebar-link.active::before {
    left: 2px;
    width: 3px;
    height: 50%;
    border-radius: 0 2px 2px 0;
}

.gq-sidebar.is-icon-only .gq-sidebar-link.is-active .gq-icon,
.gq-sidebar.is-icon-only .gq-sidebar-link.active .gq-icon {
    text-shadow: 0 0 14px rgba(255, 60, 120, 0.55);
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.3));
}

/* Collapse head in icon-only */
.gq-sidebar.is-icon-only .gq-collapse-head {
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 14px 0 14px 14px;
    font-size: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.gq-sidebar.is-icon-only .gq-collapse-icon { font-size: 20px; }
.gq-sidebar.is-icon-only .gq-collapse-body { padding: 0; }

/* ---- Hover: restore full sidebar inner layout (instant snap) ---- */
.gq-sidebar.is-icon-only:hover .gq-sidebar-title {
    opacity: 1;
    height: auto;
    margin-bottom: 16px;
    padding: 0 18px;
}
.gq-sidebar.is-icon-only:hover .gq-sidebar-title::after { opacity: 1; }
.gq-sidebar.is-icon-only:hover .gq-link-text { opacity: 1; }
.gq-sidebar.is-icon-only:hover .gq-collapse-text { opacity: 1; width: auto; }
.gq-sidebar.is-icon-only:hover .gq-collapse-arrow { opacity: 0.5; }

.gq-sidebar.is-icon-only:hover .gq-sidebar-link {
    justify-content: flex-start;
    padding: 10px 14px;
    margin-bottom: 1px;
    border-radius: 10px;
    font-size: 13px;
}

.gq-sidebar.is-icon-only:hover .gq-sidebar-link .gq-icon { font-size: 16px; }

.gq-sidebar.is-icon-only:hover .gq-collapse-head {
    justify-content: space-between;
    width: calc(100% - 20px);
    margin: 0 10px 10px;
    padding: 8px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.gq-sidebar.is-icon-only:hover .gq-collapse-icon { font-size: inherit; }
.gq-sidebar.is-icon-only:hover .gq-collapse-arrow { opacity: 0.5; }

/* ===== Overlay (Mobile) ===== */
.gq-overlay {
    display: none;
    position: fixed;
    top: var(--gq-navbar-height);
    left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 998;
}

.gq-overlay.is-active { display: block; }

/* ===== Main Content ===== */
.gq-content {
    padding: 32px;
    min-height: calc(100vh - var(--gq-navbar-height));
}

/* ===== Hero Section ===== */
.gq-hero {
    background: linear-gradient(160deg, #0d0a18 0%, #120e22 30%, #0f0a1e 60%, #0a0616 100%);
    color: var(--gq-white);
    padding: 70px 48px;
    border-radius: var(--gq-radius-xl);
    text-align: center;
    margin-bottom: 48px;
    box-shadow: var(--gq-shadow-lg), inset 0 1px 0 rgba(255, 215, 0, 0.04);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.08);
}

.gq-hero::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: gq-pulse-glow 6s ease-in-out infinite;
}

.gq-hero::after {
    content: '';
    position: absolute;
    bottom: -35%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: gq-pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes gq-pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.gq-hero-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gq-hero-body { width: 100%; position: relative; z-index: 1; }

.gq-hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 7px 22px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gq-secondary);
    backdrop-filter: blur(4px);
}

.gq-hero-body h1 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.gq-hero-type {
    display: inline;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--gq-secondary) 0%, var(--gq-primary-light) 40%, var(--gq-primary) 70%, var(--gq-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.25));
}

.gq-hero-cursor {
    display: inline-block;
    font-weight: 100;
    animation: gq-blink 0.8s infinite;
    margin-left: 2px;
    color: var(--gq-secondary);
}

@keyframes gq-blink { 0%,50%{opacity:1} 51%,100%{opacity:0} }

.gq-hero-desc {
    font-size: 18px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gq-hero-sub {
    font-size: 15px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gq-hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.gq-stat { text-align: center; }

.gq-stat-num {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--gq-secondary);
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.gq-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gq-hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gq-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--gq-transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.gq-btn--fill {
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-accent));
    color: var(--gq-white);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.gq-btn--fill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5), 0 0 60px rgba(168, 85, 247, 0.1);
}

.gq-btn--outline {
    background: transparent;
    color: var(--gq-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.gq-btn--outline:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: var(--gq-secondary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.12);
    transform: translateY(-3px);
}

.gq-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-accent));
    color: var(--gq-white);
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 800;
    transition: var(--gq-transition);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
    letter-spacing: 0.5px;
}

.gq-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5), 0 0 60px rgba(168, 85, 247, 0.12);
}

/* ===== Games Section ===== */
.gq-games { margin-bottom: 60px; }

.gq-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.gq-section-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--gq-text);
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 16px;
}

.gq-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, var(--gq-secondary), var(--gq-primary));
    border-radius: 4px;
}

.gq-view-all {
    color: var(--gq-secondary);
    font-weight: 700;
    font-size: 14px;
    transition: var(--gq-transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.gq-view-all:hover {
    background: rgba(255, 215, 0, 0.08);
    gap: 10px;
    border-color: var(--gq-secondary);
}

.gq-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 20px;
}

/* ===== Game Card ===== */
.gq-game-card {
    background: #16122a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gq-game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(ellipse at 50% 0%, rgba(168, 85, 247, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.gq-game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.25);
}

.gq-game-card:hover::after { opacity: 1; }

.gq-game-card > a {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

/* ===== Thumb ===== */
.gq-game-thumb {
    position: relative;
    overflow: hidden;
    flex: 0 0 180px;
    width: 180px;
    background: linear-gradient(135deg, #1a1636 0%, #0f0d22 100%);
}

.gq-game-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(18, 15, 28, 0.85) 0%, transparent 35%);
    z-index: 1;
    pointer-events: none;
}

.gq-game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gq-game-card:hover .gq-game-thumb img {
    transform: scale(1.08);
}

/* ===== Badges ===== */
.gq-game-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 3;
    flex-wrap: wrap;
}

.gq-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--gq-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    line-height: 1.4;
}

.gq-badge--new {
    background: rgba(255, 215, 0, 0.9);
    color: #1a1600;
}
.gq-badge--hot {
    background: rgba(255, 0, 110, 0.85);
}
.gq-badge--orig {
    background: rgba(255, 60, 120, 0.85);
}

/* ===== Play Button ===== */
.gq-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0 22px 0 18px;
    height: 44px;
    border-radius: 24px;
    border: none;
    background: linear-gradient(135deg, #ff3c78, #a855f7);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
    z-index: 3;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4), 0 0 0 1px rgba(168, 85, 247, 0.2);
    pointer-events: none;
}

.gq-game-card:hover .gq-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.gq-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 6px 28px rgba(168, 85, 247, 0.55), 0 0 0 2px rgba(255, 60, 120, 0.3);
}

/* ===== Info ===== */
.gq-game-info {
    padding: 14px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.gq-game-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gq-text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    margin: 0;
}

.gq-game-card:hover .gq-game-title {
    color: #ffd700;
}

.gq-game-info .gq-line-clamp {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.gq-game-cat {
    display: inline-block;
    font-size: 10px;
    color: rgba(168, 85, 247, 0.8);
    margin: 0;
    padding: 0;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: none;
    border: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gq-game-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.gq-stars {
    color: #ffd700;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.gq-rating-num { font-size: 11px; color: rgba(255, 255, 255, 0.35); font-weight: 500; }

/* ===== Features Section ===== */
.gq-features {
    padding: 56px 36px;
    background: linear-gradient(160deg, var(--gq-gray-50) 0%, var(--gq-gray-100) 100%);
    border-radius: var(--gq-radius-xl);
    margin-bottom: 60px;
    border: 1px solid rgba(255, 215, 0, 0.06);
}

.gq-features .gq-section-title {
    text-align: center;
    margin-bottom: 48px;
    padding-left: 0;
}

.gq-features .gq-section-title::before { display: none; }

.gq-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
}

.gq-feature-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--gq-radius);
    box-shadow: var(--gq-shadow-sm);
    transition: var(--gq-transition);
    border: 1px solid rgba(255, 215, 0, 0.06);
}

.gq-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gq-shadow-md), 0 0 25px rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.2);
}

.gq-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.2));
}

.gq-feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--gq-text);
    font-weight: 800;
}

.gq-feature-card p {
    color: var(--gq-text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Footer ===== */
.gq-footer {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    color: var(--gq-white);
    padding: 60px 36px 24px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 215, 0, 0.08);
}

.gq-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 36px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gq-footer-col h3 {
    font-size: 24px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--gq-secondary) 0%, var(--gq-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.25));
}

.gq-footer-col h4 {
    font-size: 15px;
    margin-bottom: 18px;
    color: var(--gq-white);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.gq-footer-col p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    line-height: 1.9;
}

.gq-footer-col ul li { margin-bottom: 10px; }
.gq-footer-col ul li a {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--gq-transition);
    font-size: 13px;
}

.gq-footer-col ul li a:hover {
    color: var(--gq-secondary);
    padding-left: 6px;
}

.gq-socials {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.gq-socials a {
    font-size: 20px;
    transition: var(--gq-transition);
    opacity: 0.5;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gq-socials a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--gq-secondary);
    border-color: var(--gq-secondary);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
}

.gq-footer-copy {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 215, 0, 0.06);
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gq-footer-copy a {
    color: var(--gq-secondary);
    transition: var(--gq-transition);
}

.gq-footer-copy a:hover { color: var(--gq-primary-light); }

/* ===== Animations ===== */
@keyframes gq-fade-in-down {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gq-fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Page Hero (Shared) ===== */
.gq-page-hero {
    background: linear-gradient(160deg, #0d0a18 0%, #120e22 30%, #0f0a1e 60%, #0a0616 100%);
    color: var(--gq-white);
    padding: 56px 48px;
    border-radius: var(--gq-radius-xl);
    text-align: center;
    margin-bottom: 48px;
    box-shadow: var(--gq-shadow-lg), inset 0 1px 0 rgba(255, 215, 0, 0.04);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.08);
}

.gq-page-hero::before {
    content: '';
    position: absolute;
    top: -30%; right: -15%;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: gq-pulse-glow 7s ease-in-out infinite;
}

.gq-page-hero--alt {
    background: linear-gradient(160deg, #0d0a18 0%, #120e22 50%, #0f0a1e 100%);
}

.gq-page-hero-body {
    position: relative;
    z-index: 1;
}

.gq-page-hero-body h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gq-white) 0%, var(--gq-secondary) 50%, var(--gq-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gq-page-hero-body p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Contact Hero ===== */
.gq-contact-hero {
    background: linear-gradient(160deg, #0d0a18 0%, #120e22 30%, #0f0a1e 60%, #0a0616 100%);
    color: var(--gq-white);
    padding: 56px 48px;
    border-radius: var(--gq-radius-xl);
    text-align: center;
    margin-bottom: 48px;
    box-shadow: var(--gq-shadow-lg), inset 0 1px 0 rgba(255, 215, 0, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.gq-contact-hero::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: gq-pulse-glow 7s ease-in-out infinite;
}

.gq-contact-hero::after {
    content: '';
    position: absolute;
    bottom: -35%; left: -10%;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(255, 60, 120, 0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: gq-pulse-glow 8s ease-in-out infinite reverse;
}

.gq-contact-hero-body {
    position: relative;
    z-index: 1;
}

.gq-contact-hero-body h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--gq-white) 0%, var(--gq-secondary) 50%, var(--gq-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gq-contact-hero-body p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Contact Form ===== */
.gq-contact { margin-bottom: 60px; }

.gq-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.gq-form-box {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 40px;
    border-radius: var(--gq-radius-xl);
    box-shadow: var(--gq-shadow-md);
    border: 1px solid var(--gq-glass-border);
}

.gq-form-box .gq-section-title {
    margin-bottom: 28px;
    font-size: 24px;
}

.gq-form .gq-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gq-form .gq-form-group {
    margin-bottom: 22px;
}

.gq-form label {
    display: block;
    font-weight: 700;
    color: var(--gq-text);
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gq-form input,
.gq-form select,
.gq-form textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--gq-radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--gq-text);
    background: rgba(10, 8, 18, 0.4);
    transition: var(--gq-transition);
    outline: none;
}

.gq-form input:focus,
.gq-form select:focus,
.gq-form textarea:focus {
    border-color: var(--gq-secondary);
    background: rgba(255, 215, 0, 0.04);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.08), 0 0 0 3px rgba(255, 215, 0, 0.05);
}

.gq-form input::placeholder,
.gq-form textarea::placeholder { color: rgba(255, 255, 255, 0.2); }

.gq-form textarea { resize: vertical; min-height: 130px; }

.gq-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236e6888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.gq-submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-accent));
    color: var(--gq-white);
    border: none;
    border-radius: var(--gq-radius-sm);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--gq-transition);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.gq-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4), 0 0 60px rgba(168, 85, 247, 0.1);
}

/* ===== Contact Info ===== */
.gq-info-box {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 40px;
    border-radius: var(--gq-radius-xl);
    box-shadow: var(--gq-shadow-md);
    border: 1px solid var(--gq-glass-border);
}

.gq-info-box .gq-section-title {
    margin-bottom: 16px;
    font-size: 24px;
}

.gq-info-intro {
    color: var(--gq-text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.gq-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.gq-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.03);
    border-radius: var(--gq-radius);
    transition: var(--gq-transition);
    border: 1px solid transparent;
}

.gq-info-card:hover {
    background: rgba(168, 85, 247, 0.06);
    transform: translateX(6px);
    border-color: rgba(168, 85, 247, 0.15);
}

.gq-info-icon {
    font-size: 30px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 8, 18, 0.4);
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gq-info-body h4 {
    font-size: 15px;
    color: var(--gq-text);
    margin-bottom: 6px;
    font-weight: 700;
}

.gq-info-body p {
    font-size: 13px;
    color: var(--gq-text-secondary);
    line-height: 1.7;
}

.gq-contact-socialz {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--gq-glass-border);
}

.gq-contact-socialz h3 {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--gq-text);
    font-weight: 700;
}

.gq-social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.gq-social-icon {
    font-size: 22px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 50%;
    transition: var(--gq-transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gq-social-icon:hover {
    background: var(--gq-primary);
    color: var(--gq-white);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 60, 120, 0.3);
    border-color: var(--gq-primary);
}

/* ===== FAQ ===== */
.gq-faq { margin-bottom: 60px; }

.gq-faq .gq-section-title {
    text-align: center;
    margin-bottom: 36px;
    padding-left: 0;
}

.gq-faq .gq-section-title::before {
    display: none;
}

.gq-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gq-faq-card {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 30px;
    border-radius: var(--gq-radius);
    box-shadow: var(--gq-shadow-sm);
    transition: var(--gq-transition);
    border: 1px solid var(--gq-glass-border);
    border-left: 4px solid var(--gq-secondary);
}

.gq-faq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gq-shadow-md), 0 0 25px rgba(168, 85, 247, 0.08);
}

.gq-faq-card h4 {
    font-size: 16px;
    color: var(--gq-text);
    margin-bottom: 12px;
    font-weight: 700;
}

.gq-faq-card p {
    font-size: 13px;
    color: var(--gq-text-secondary);
    line-height: 1.8;
}

/* ===== Form Validation ===== */
.gq-form input:invalid:not(:placeholder-shown),
.gq-form textarea:invalid:not(:placeholder-shown) { border-color: var(--gq-rose); }

.gq-form input:valid:not(:placeholder-shown),
.gq-form textarea:valid:not(:placeholder-shown) { border-color: #00c853; }

/* ===== Policy Pages ===== */
.gq-policy { margin-bottom: 60px; }

.gq-policy-box {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 48px;
    border-radius: var(--gq-radius-xl);
    box-shadow: var(--gq-shadow-md);
    border: 1px solid var(--gq-glass-border);
}

.gq-policy-date {
    color: var(--gq-text-secondary);
    font-size: 14px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gq-glass-border);
}

.gq-policy-block { margin-bottom: 36px; }
.gq-policy-block:last-child { margin-bottom: 0; }

.gq-policy-block h2 {
    font-size: 24px;
    color: var(--gq-text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gq-secondary);
    display: inline-block;
    font-weight: 900;
}

.gq-policy-block h3 {
    font-size: 18px;
    color: var(--gq-text);
    margin: 20px 0 12px;
    font-weight: 700;
}

.gq-policy-block p {
    font-size: 15px;
    color: var(--gq-text-secondary);
    line-height: 1.9;
    margin-bottom: 14px;
}

.gq-policy-block ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 14px;
}

.gq-policy-block ul li {
    font-size: 15px;
    color: var(--gq-text-secondary);
    line-height: 1.9;
    margin-bottom: 8px;
}

.gq-policy-block a {
    color: var(--gq-secondary);
    text-decoration: underline;
}

/* ===== About Page ===== */
.gq-about { margin-bottom: 60px; }

.gq-about--alt {
    background: linear-gradient(160deg, var(--gq-gray-50) 0%, var(--gq-gray-100) 100%);
    border-radius: var(--gq-radius-xl);
    padding: 48px;
    margin-bottom: 60px;
    border: 1px solid var(--gq-glass-border);
}

.gq-about .gq-section-title {
    text-align: center;
    margin-bottom: 18px;
}

.gq-text-center { text-align: center; }

.gq-section-sub {
    text-align: center;
    color: var(--gq-text-secondary);
    margin-bottom: 36px;
    font-size: 15px;
}

.gq-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.gq-about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--gq-text);
    font-weight: 900;
}

.gq-about-text p {
    font-size: 15px;
    color: var(--gq-text-secondary);
    line-height: 1.9;
    margin-bottom: 18px;
}

.gq-about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.gq-stat-card {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 36px 24px;
    border-radius: var(--gq-radius);
    box-shadow: var(--gq-shadow-sm);
    text-align: center;
    transition: var(--gq-transition);
    border: 1px solid var(--gq-glass-border);
}

.gq-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gq-shadow-md), 0 0 25px rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.2);
}

.gq-stat-card .gq-stat-num {
    font-size: 38px;
    font-weight: 900;
    color: var(--gq-secondary);
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.gq-stat-card .gq-stat-label {
    font-size: 13px;
    color: var(--gq-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gq-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 36px;
}

.gq-mission-card {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 40px 32px;
    border-radius: var(--gq-radius-xl);
    box-shadow: var(--gq-shadow-sm);
    text-align: center;
    transition: var(--gq-transition);
    border: 1px solid var(--gq-glass-border);
}

.gq-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gq-shadow-lg), 0 0 30px rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.2);
}

.gq-mission-icon { font-size: 52px; margin-bottom: 20px; display: block; }

.gq-mission-card h3 {
    font-size: 22px;
    color: var(--gq-text);
    margin-bottom: 14px;
    font-weight: 900;
}

.gq-mission-card p {
    font-size: 14px;
    color: var(--gq-text-secondary);
    line-height: 1.8;
}

.gq-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.gq-value-card {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 34px 28px;
    border-radius: var(--gq-radius);
    box-shadow: var(--gq-shadow-sm);
    text-align: center;
    border: 1px solid var(--gq-glass-border);
    border-top: 4px solid var(--gq-secondary);
    transition: var(--gq-transition);
}

.gq-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gq-shadow-md), 0 0 25px rgba(168, 85, 247, 0.08);
}

.gq-value-icon { font-size: 44px; margin-bottom: 14px; display: block; }

.gq-value-card h3 {
    font-size: 18px;
    color: var(--gq-text);
    margin-bottom: 10px;
    font-weight: 800;
}

.gq-value-card p {
    font-size: 13px;
    color: var(--gq-text-secondary);
    line-height: 1.7;
}

.gq-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.gq-team-card {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 36px 24px;
    border-radius: var(--gq-radius);
    box-shadow: var(--gq-shadow-sm);
    text-align: center;
    transition: var(--gq-transition);
    border: 1px solid var(--gq-glass-border);
}

.gq-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gq-shadow-md), 0 0 25px rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.2);
}

.gq-team-avatar { font-size: 60px; margin-bottom: 16px; display: block; }

.gq-team-card h3 {
    font-size: 18px;
    color: var(--gq-text);
    margin-bottom: 6px;
    font-weight: 700;
}

.gq-team-role {
    font-size: 13px;
    color: var(--gq-secondary);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.gq-team-card p {
    font-size: 13px;
    color: var(--gq-text-secondary);
    line-height: 1.7;
}

/* ===== Timeline ===== */
.gq-timeline {
    position: relative;
    padding-left: 44px;
}

.gq-timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gq-secondary), var(--gq-primary), var(--gq-accent));
    border-radius: 3px;
}

.gq-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.gq-timeline-item:last-child { margin-bottom: 0; }

.gq-timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 8px;
    width: 16px; height: 16px;
    background: var(--gq-secondary);
    border-radius: 50%;
    border: 3px solid var(--gq-dark);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4), 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.gq-timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-primary-dark));
    color: var(--gq-white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.gq-timeline-body h3 {
    font-size: 18px;
    color: var(--gq-text);
    margin-bottom: 8px;
    font-weight: 700;
}

.gq-timeline-body p {
    font-size: 14px;
    color: var(--gq-text-secondary);
    line-height: 1.8;
}

/* ===== About CTA ===== */
.gq-about-cta {
    background: linear-gradient(160deg, #0d0a18 0%, #120e22 50%, #0f0a1e 100%);
    color: var(--gq-white);
    text-align: center;
    padding: 56px 48px;
    border-radius: var(--gq-radius-xl);
    box-shadow: var(--gq-shadow-lg), inset 0 1px 0 rgba(255, 215, 0, 0.04);
    margin-bottom: 48px;
    border: 1px solid rgba(255, 215, 0, 0.08);
}

.gq-about-cta h2 {
    font-size: 34px;
    margin-bottom: 14px;
    font-weight: 900;
}

.gq-about-cta p {
    font-size: 16px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.55);
}

.gq-about-cta .gq-cta {
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-accent));
    color: var(--gq-white);
}

.gq-about-cta .gq-cta:hover { box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5), 0 0 60px rgba(168, 85, 247, 0.12); }

/* ===== Detail Page ===== */
.gq-container { max-width: 100%; margin: 0 auto; }
.gq-page {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--gq-radius-xl);
    padding: 36px;
    box-shadow: var(--gq-shadow-md);
    margin-bottom: 36px;
    border: 1px solid var(--gq-glass-border);
}

.gq-breadcrumb {
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--gq-text-secondary);
}

.gq-breadcrumb a {
    color: var(--gq-secondary);
    transition: var(--gq-transition);
    font-weight: 600;
}

.gq-breadcrumb a:hover {
    color: var(--gq-primary-light);
    text-decoration: underline;
}

.gq-breadcrumb span { margin: 0 8px; color: var(--gq-gray-400); }
.gq-breadcrumb-current { color: var(--gq-text-secondary); font-weight: 600; }

/* Detail Hero */
.gq-detail-hero {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--gq-radius-xl);
    box-shadow: var(--gq-shadow-md);
    overflow: hidden;
    margin-bottom: 48px;
    border: 1px solid var(--gq-glass-border);
}

.gq-detail-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.gq-detail-thumb { padding: 0; }

.gq-detail-img {
    position: relative;
    height: 100%;
    min-height: 360px;
}

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

.gq-detail-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.gq-detail-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gq-detail-info h1 {
    font-size: 32px;
    color: var(--gq-text);
    margin-bottom: 14px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.gq-detail-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gq-detail-cat {
    font-size: 13px;
    color: var(--gq-secondary);
    font-weight: 700;
    background: rgba(255, 215, 0, 0.1);
    padding: 6px 18px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.gq-detail-rating { font-size: 14px; color: var(--gq-text-secondary); }
.gq-rate-num { font-weight: 700; color: var(--gq-text); }

.gq-detail-desc {
    font-size: 14px;
    color: var(--gq-text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.gq-detail-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.gq-play-now {
    padding: 13px 36px;
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-accent));
    color: var(--gq-white);
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--gq-transition);
    letter-spacing: 0.5px;
}

.gq-play-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4), 0 0 60px rgba(168, 85, 247, 0.1);
}

.gq-save-btn,
.gq-share-btn {
    padding: 13px 24px;
    background: rgba(255, 215, 0, 0.04);
    color: var(--gq-text);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--gq-transition);
}

.gq-save-btn:hover,
.gq-share-btn:hover {
    background: rgba(168, 85, 247, 0.08);
    border-color: var(--gq-accent);
    color: var(--gq-accent);
}

.gq-detail-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid var(--gq-glass-border);
}

.gq-d-stat { text-align: center; }
.gq-d-stat-num {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--gq-secondary);
}
.gq-d-stat-label {
    font-size: 11px;
    color: var(--gq-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Detail Body */
.gq-detail-body { margin-bottom: 60px; }

.gq-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}

.gq-detail-main {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.gq-detail-block {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 36px;
    border-radius: var(--gq-radius);
    box-shadow: var(--gq-shadow-sm);
    border: 1px solid var(--gq-glass-border);
}

.gq-detail-block h2 {
    font-size: 24px;
    color: var(--gq-text);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gq-glass-border);
    font-weight: 900;
}

.gq-controls {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gq-control-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 215, 0, 0.03);
    border-radius: var(--gq-radius-sm);
    font-size: 14px;
    color: var(--gq-text-secondary);
    border: 1px solid rgba(255, 215, 0, 0.04);
}

.gq-key {
    display: inline-block;
    background: rgba(10, 8, 18, 0.5);
    color: var(--gq-secondary);
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    min-width: 90px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.gq-checklist { list-style: none; padding: 0; }
.gq-checklist li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 14px;
    color: var(--gq-text-secondary);
    border-bottom: 1px solid var(--gq-glass-border);
}

.gq-checklist li:last-child { border-bottom: none; }
.gq-checklist li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #00c853;
    font-weight: 700;
}

.gq-screenshots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gq-screenshot {
    border-radius: var(--gq-radius-sm);
    overflow: hidden;
    background: var(--gq-gray-200);
    border: 1px solid rgba(255, 215, 0, 0.06);
}

.gq-screenshot img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gq-screenshot:hover img { transform: scale(1.06); }

/* Reviews */
.gq-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gq-review-card {
    padding: 22px;
    background: rgba(255, 215, 0, 0.03);
    border-radius: var(--gq-radius);
    border: 1px solid rgba(255, 215, 0, 0.04);
}

.gq-review-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.gq-review-avatar { font-size: 34px; }
.gq-review-head strong { font-size: 14px; color: var(--gq-text); }
.gq-review-stars { font-size: 12px; margin-top: 2px; }
.gq-review-date { margin-left: auto; font-size: 12px; color: var(--gq-text-muted); }
.gq-review-card p { font-size: 14px; color: var(--gq-text-secondary); line-height: 1.8; }

/* Detail Sidebar */
.gq-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gq-side-card {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 28px;
    border-radius: var(--gq-radius);
    box-shadow: var(--gq-shadow-sm);
    border: 1px solid var(--gq-glass-border);
}

.gq-side-card h3 {
    font-size: 18px;
    color: var(--gq-text);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gq-glass-border);
    font-weight: 800;
}

.gq-info-list { list-style: none; padding: 0; }
.gq-info-list li {
    font-size: 13px;
    color: var(--gq-text-secondary);
    line-height: 1.9;
    padding: 7px 0;
    border-bottom: 1px solid var(--gq-glass-border);
}

.gq-info-list li:last-child { border-bottom: none; }
.gq-info-list li strong { color: var(--gq-text); }

.gq-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gq-cloud-tag {
    display: inline-block;
    padding: 7px 16px;
    background: rgba(255, 215, 0, 0.04);
    color: var(--gq-text-secondary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--gq-transition);
    border: 1px solid rgba(255, 215, 0, 0.08);
}

.gq-cloud-tag:hover {
    background: var(--gq-primary);
    color: var(--gq-white);
    cursor: pointer;
    border-color: var(--gq-primary);
    box-shadow: 0 0 16px rgba(255, 60, 120, 0.2);
}

.gq-related {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gq-related-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--gq-radius-sm);
    transition: var(--gq-transition);
    border: 1px solid transparent;
}

.gq-related-item:hover {
    background: rgba(168, 85, 247, 0.04);
    border-color: rgba(168, 85, 247, 0.1);
}
.gq-related-item img {
    width: 52px; height: 52px;
    border-radius: 10px;
    object-fit: cover;
}

.gq-related-item strong {
    font-size: 13px;
    color: var(--gq-text);
    display: block;
}

.gq-rel-stars { font-size: 11px; color: var(--gq-text-secondary); }

/* New Card (Similar Games) */
.gq-new-card {
    background: var(--gq-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--gq-radius);
    overflow: hidden;
    box-shadow: var(--gq-shadow-sm);
    transition: var(--gq-transition);
    border: 1px solid var(--gq-glass-border);
}

.gq-new-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gq-shadow-lg), 0 0 25px rgba(168, 85, 247, 0.1);
    border-color: rgba(255, 215, 0, 0.25);
}

.gq-new-card > a { display: block; text-decoration: none; color: inherit; }

.gq-new-card-img {
    position: relative;
    overflow: hidden;
    height: 170px;
    background: var(--gq-gray-200);
}

.gq-new-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gq-new-card:hover .gq-new-card-img img { transform: scale(1.08); }

.gq-new-card-body { padding: 16px; }

.gq-new-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gq-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.gq-new-card-title a { color: inherit; }
.gq-new-card-title a:hover { color: var(--gq-secondary); }

.gq-new-card-meta { margin-bottom: 10px; }

.gq-new-card-genre {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gq-secondary);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.gq-new-card-desc {
    font-size: 13px;
    color: var(--gq-text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gq-btn-game {
    display: inline-block;
    padding: 9px 24px;
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-accent));
    color: var(--gq-white);
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--gq-transition);
    letter-spacing: 0.5px;
}

.gq-btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
    color: var(--gq-white);
}

/* ===== Empty State ===== */
.gq-empty {
    text-align: center;
    padding: 70px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.gq-empty-icon {
    font-size: 72px;
    color: var(--gq-gray-300);
    margin-bottom: 24px;
    filter: grayscale(0.3);
}

.gq-empty p {
    color: var(--gq-text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.gq-empty-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.gq-empty-btn {
    display: inline-block;
    padding: 13px 30px;
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-primary-dark));
    color: var(--gq-white);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--gq-transition);
}

.gq-empty-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 60, 120, 0.4);
    color: var(--gq-white);
}

.gq-empty-btn--outline {
    display: inline-block;
    padding: 13px 30px;
    background: transparent;
    color: var(--gq-text);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--gq-transition);
}

.gq-empty-btn--outline:hover {
    border-color: var(--gq-secondary);
    color: var(--gq-secondary);
}

/* ===== Tags Page ===== */
.gq-tag-group { margin-bottom: 56px; }

.gq-tag-group-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.gq-group-icon { font-size: 30px; }

.gq-tag-group-head h2 {
    font-size: 26px;
    color: var(--gq-text);
    font-weight: 900;
}

.gq-group-count {
    font-size: 13px;
    color: var(--gq-text-secondary);
    background: rgba(255, 215, 0, 0.04);
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gq-tag-cloud-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.gq-tag-cloud-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    background: var(--gq-glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gq-text);
    cursor: pointer;
    transition: var(--gq-transition);
    text-decoration: none;
}

.gq-tag-cloud-item:hover {
    border-color: var(--gq-secondary);
    background: rgba(255, 215, 0, 0.06);
    color: var(--gq-secondary);
    transform: translateY(-3px);
    box-shadow: var(--gq-shadow-md), 0 0 20px rgba(255, 215, 0, 0.1);
}

.gq-tag-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gq-tag-dot--genre { background: #ff3c78; box-shadow: 0 0 8px rgba(255, 60, 120, 0.5); }
.gq-tag-dot--status { background: #ffd700; box-shadow: 0 0 8px rgba(255, 215, 0, 0.5); }
.gq-tag-dot--feature { background: #a855f7; box-shadow: 0 0 8px rgba(168, 85, 247, 0.5); }
.gq-tag-dot--platform { background: #ff006e; box-shadow: 0 0 8px rgba(255, 0, 110, 0.5); }
.gq-tag-dot--theme { background: #ff7eb3; box-shadow: 0 0 8px rgba(255, 126, 179, 0.5); }

.gq-tag-count {
    font-size: 11px;
    color: var(--gq-text-secondary);
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 700;
}

.gq-tag-cloud-item.is-lg {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 800;
    border-width: 2px;
}

.gq-tag-cloud-item.is-md {
    padding: 13px 24px;
    font-size: 15px;
}

.gq-tag-cloud-item.is-sm {
    padding: 9px 18px;
    font-size: 13px;
}

/* ===== Pagination ===== */
.gq-pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: 36px;
}

.gq-pagination-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gq-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--gq-glass-bg);
    backdrop-filter: blur(10px);
    color: var(--gq-text);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: var(--gq-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--gq-transition);
    cursor: pointer;
}

.gq-pagination-link:hover {
    border-color: var(--gq-secondary);
    color: var(--gq-secondary);
    background: rgba(255, 215, 0, 0.06);
    transform: translateY(-2px);
}

.gq-pagination-item.is-active .gq-pagination-link {
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-primary-dark));
    color: var(--gq-white);
    border-color: var(--gq-primary);
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(255, 60, 120, 0.3);
    cursor: default;
}

.gq-pagination-item.is-active .gq-pagination-link:hover { transform: none; }

.gq-pagination-link--prev,
.gq-pagination-link--next { font-size: 18px; padding: 0 18px; }

.gq-pagination-link.is-disabled {
    color: var(--gq-gray-400);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
    cursor: not-allowed;
    opacity: 0.5;
}

.gq-pagination-link.is-disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    color: var(--gq-gray-400);
    border-color: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

/* ---- Server-rendered pagination (uses .pagination-* without gq- prefix) ---- */
.gq-pagination .pagination { width: 100%; }
.gq-pagination .pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.gq-pagination .pagination-item {
    list-style: none;
}
.gq-pagination .pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--gq-glass-bg);
    backdrop-filter: blur(10px);
    color: var(--gq-text);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: var(--gq-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--gq-transition);
    cursor: pointer;
}
.gq-pagination .pagination-link:hover {
    border-color: var(--gq-secondary);
    color: var(--gq-secondary);
    background: rgba(255, 215, 0, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.gq-pagination .pagination-link.current,
.gq-pagination .pagination-item.active .pagination-link {
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-primary-dark));
    color: var(--gq-white);
    border-color: var(--gq-primary);
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(255, 60, 120, 0.3);
    cursor: default;
}
.gq-pagination .pagination-link.current:hover,
.gq-pagination .pagination-item.active .pagination-link:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(255, 60, 120, 0.3);
    color: var(--gq-white);
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-primary-dark));
}
.gq-pagination .pagination-link.next,
.gq-pagination .pagination-link.prev {
    font-size: 18px;
    padding: 0 18px;
}
.gq-pagination .pagination-link.disabled {
    color: var(--gq-gray-400);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: none;
}
.gq-pagination .pagination-link.disabled:hover {
    transform: none;
    box-shadow: none;
    color: var(--gq-gray-400);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
}

/* ===== Detail Similar Games ===== */
/* ===== Similar Games (Full-width below detail) ===== */
.gq-detail-similar--full {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--gq-glass-border);
}
.gq-detail-similar-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gq-glass-border);
    color: var(--gq-text);
}
.gq-detail-similar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

/* Similar Games Tile Overrides */
.gq-detail-similar--full .gq-new-card-img { height: 140px; }
.gq-detail-similar--full .gq-new-card { min-width: 0; }
.gq-detail-similar--full .gq-new-card-body { padding: 12px; }
.gq-detail-similar--full .gq-new-card-title { font-size: 14px; }
.gq-detail-similar--full .gq-new-card-genre { font-size: 11px; padding: 2px 8px; }
.gq-detail-similar--full .gq-new-card-desc { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 12px; margin-bottom: 6px; }
.gq-detail-similar--full .gq-btn-game { padding: 6px 14px; font-size: 12px; }

/* ===== Cookie Banner ===== */
.gq-cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    color: var(--gq-text);
    padding: 1rem 2rem;
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}
.gq-cookie-banner.show { display: flex; }
.gq-cookie-text { flex: 1; min-width: 280px; font-size: 14px; line-height: 1.5; color: var(--gq-text-secondary); }
.gq-cookie-buttons { display: flex; gap: 1rem; }
.gq-cookie-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: var(--gq-transition);
}
.gq-cookie-btn.is-accept {
    background: linear-gradient(135deg, var(--gq-primary), var(--gq-accent));
    color: var(--gq-white);
}
.gq-cookie-btn.is-accept:hover {
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}
.gq-cookie-btn.is-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gq-text);
}
.gq-cookie-btn.is-decline:hover { border-color: var(--gq-secondary); color: var(--gq-secondary); }
.gq-cookie-link { color: var(--gq-secondary); text-decoration: underline; }

/* ===== Tag Hero Section ===== */
.hero-section {
    background: linear-gradient(160deg, #0d0a18 0%, #120e22 30%, #0f0a1e 60%, #0a0616 100%);
    color: var(--gq-white);
    padding: 64px 48px;
    border-radius: var(--gq-radius-xl);
    text-align: center;
    margin-bottom: 36px;
    box-shadow: var(--gq-shadow-lg), inset 0 1px 0 rgba(255, 215, 0, 0.04);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.08);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -35%; right: -15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: gq-pulse-glow 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 60, 120, 0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: gq-pulse-glow 8s ease-in-out infinite reverse;
}

.hero-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content { position: relative; z-index: 1; }

/* ===== Hero Override: 覆盖模板内联绿色为项目粉紫主题 ===== */
.hero-section {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168, 85, 247, 0.08) 0%, transparent 60%),
                linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f1119 100%) !important;
}

.hero-section::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 60, 120, 0.04) 0%, transparent 50%) !important;
}

.hero-tagline {
    display: inline-flex !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    padding: 0.5rem 1.4rem !important;
    background: rgba(255, 122, 162, 0.12) !important;
    border: 1px solid rgba(255, 122, 162, 0.2) !important;
    border-radius: 50px !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    color: #ff7aa2 !important;
    backdrop-filter: blur(4px);
}

.hero-typewriter {
    background: linear-gradient(135deg, #ff7aa2 0%, #ff3c78 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-cursor {
    color: #ff7aa2 !important;
}

.hero-section h1 {
    margin-bottom: 1.2rem !important;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ff7aa2 0%, #c084fc 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subdescription {
    font-size: 14px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.38);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.stat-item { text-align: center; }

.hero-stats .stat-number {
    display: block;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #ff7aa2 !important;
    line-height: 1 !important;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #ff7aa2;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(255, 122, 162, 0.2);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--gq-transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #ff3c78 0%, #a855f7 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3) !important;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.45) !important;
}

.hero-actions .btn-outline {
    color: #ff7aa2 !important;
    border: 2px solid rgba(255, 122, 162, 0.35) !important;
}

.hero-actions .btn-outline:hover {
    border-color: #ff7aa2 !important;
    background: rgba(255, 122, 162, 0.08) !important;
}

/* ===== Misc ===== */
.gq-tag-hero { margin-bottom: 0; }

/* ===== Toast Notification ===== */
.toast-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    min-width: 320px;
    max-width: 480px;
    background: rgba(24, 20, 36, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    animation: gq-toast-in 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.toast-notification.toast-success {
    border-left: 4px solid #00e676;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 30px rgba(0, 230, 118, 0.15);
}

.toast-notification.toast-error {
    border-left: 4px solid var(--gq-primary);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 30px rgba(255, 60, 120, 0.15);
}

.toast-notification.hide {
    animation: gq-toast-out 0.3s ease forwards;
    pointer-events: none;
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--gq-text);
    letter-spacing: 0.3px;
}

.toast-success .toast-header span { color: #00e676; }
.toast-error .toast-header span { color: var(--gq-primary); }

.toast-header .close-btn {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: var(--gq-text-secondary);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--gq-transition);
}

.toast-header .close-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gq-text);
}

.toast-body {
    padding: 8px 20px 18px;
    font-size: 14px;
    color: #d0cce0;
    line-height: 1.6;
}

/* ===== Utility ===== */
.gq-line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root { --gq-sidebar-width: 200px; }
    .gq-nav-search { max-width: 100%; }
    .gq-games-grid { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 18px; }
    .gq-game-thumb { flex: 0 0 160px; width: 160px; }
    .gq-detail-hero-grid { grid-template-columns: 1fr; }
    .gq-detail-img { min-height: 250px; }
    .gq-detail-sidebar { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .gq-about-grid { grid-template-columns: 1fr; }
    .gq-hero-body h1 { font-size: 38px; }
    .gq-page-hero-body h1 { font-size: 32px; }
    .hero-section { padding: 50px 36px; }
    .hero-title { font-size: 34px; }
    .hero-stats { gap: 36px; }
    .stat-number { font-size: 28px; }
    .gq-detail-similar-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .gq-main { display: block; grid-template-columns: none; }
    .gq-main.is-icon-only { grid-template-columns: none; }

    .gq-sidebar {
        position: fixed;
        top: var(--gq-navbar-height);
        left: 0;
        width: 240px;
        height: calc(100vh - var(--gq-navbar-height));
        transform: translateX(-100%);
        z-index: 1001;
        transition: transform 0.3s ease;
        clip-path: none;
        -webkit-clip-path: none;
    }

    .gq-sidebar:not(.is-folded) { transform: translateX(0); }

    /* Reset icon-only on mobile — show full sidebar when toggled */
    .gq-sidebar.is-icon-only {
        position: fixed;
        top: var(--gq-navbar-height);
        left: 0;
        width: 240px;
        height: calc(100vh - var(--gq-navbar-height));
        overflow-y: auto;
        clip-path: none;
        -webkit-clip-path: none;
        z-index: 1001;
    }
    .gq-sidebar.is-icon-only .gq-sidebar-title {
        opacity: 1;
        height: auto;
        margin-bottom: 16px;
        padding: 0 18px;
        transition: none;
    }
    .gq-sidebar.is-icon-only .gq-sidebar-title::after { opacity: 1; }
    .gq-sidebar.is-icon-only .gq-link-text {
        opacity: 1;
        transition: none;
    }
    .gq-sidebar.is-icon-only .gq-collapse-text {
        opacity: 1;
        width: auto;
        transition: none;
    }
    .gq-sidebar.is-icon-only .gq-collapse-arrow {
        opacity: 0.5;
        transition: none;
    }
    .gq-sidebar.is-icon-only .gq-sidebar-link {
        justify-content: flex-start;
        padding: 10px 14px;
        margin-bottom: 1px;
        border-radius: 10px;
        font-size: 13px;
    }
    .gq-sidebar.is-icon-only .gq-sidebar-link .gq-icon { font-size: 16px; }
    .gq-sidebar.is-icon-only .gq-collapse-head {
        justify-content: space-between;
        width: calc(100% - 20px);
        margin: 0 10px 10px;
        padding: 8px 14px;
        font-size: 11px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }
    .gq-sidebar.is-icon-only .gq-collapse-icon { font-size: inherit; }
    .gq-sidebar.is-icon-only:hover { z-index: 1001; clip-path: none; -webkit-clip-path: none; }
    .gq-sidebar.is-folded.is-icon-only { transform: translateX(-100%); }
    .gq-content { padding: 18px 14px; }
    .gq-footer { margin-left: 0; }

    .gq-nav-inner { gap: 10px; padding: 0 14px; }
    .gq-nav-brand { gap: 8px; flex-shrink: 0; }
    .gq-menu-btn { font-size: 20px; padding: 6px 10px; }
    .gq-logo { font-size: 18px; }
    .gq-nav-search { max-width: none; padding: 4px 12px; }
    .gq-search-input { font-size: 13px; padding: 5px; }
    .gq-nav-actions { flex-shrink: 0; gap: 8px; }
    .gq-nav-btn { padding: 6px 16px; font-size: 12px; }

    .gq-hero { padding: 36px 18px; }
    .gq-hero-body h1 { font-size: 28px; }
    .gq-hero-desc { font-size: 14px; }
    .gq-hero-stats { gap: 20px; }
    .gq-stat-num { font-size: 24px; }
    .gq-stat-label { font-size: 11px; }
    .hero-section { padding: 40px 24px; }
    .hero-title { font-size: 28px; }
    .hero-tagline { font-size: 12px; padding: 5px 18px; }
    .hero-description { font-size: 15px; }
    .hero-subdescription { font-size: 13px; }
    .hero-stats { gap: 28px; }
    .stat-number { font-size: 24px; }
    .stat-label { font-size: 11px; }
    .hero-actions .btn { padding: 13px 28px; font-size: 14px; }
    .gq-games-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .gq-game-card > a { flex-direction: column; }
    .gq-game-thumb { flex: none; width: 100%; aspect-ratio: 16/10; height: auto; }
    .gq-game-thumb::after { background: linear-gradient(0deg, rgba(18, 15, 28, 0.85) 0%, transparent 35%); }
    .gq-game-info { padding: 12px 14px 14px; gap: 6px; flex: none; }
    .gq-game-title { font-size: 14px; }
    .gq-game-cat { font-size: 11px; }
    .gq-game-info .gq-line-clamp { font-size: 12px; min-height: 32px; }
    .gq-play-btn { opacity: 1; padding: 0 16px 0 14px; height: 38px; border-radius: 20px; font-size: 13px; transform: translate(-50%, -50%) scale(1); }
    .gq-badge { font-size: 10px; padding: 3px 8px; }
    .gq-features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .gq-feature-card { padding: 22px 16px; }
    .gq-feature-icon { font-size: 34px; }
    .gq-feature-card h3 { font-size: 15px; }
    .gq-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .gq-section-title { font-size: 22px; }
    .gq-page-hero { padding: 40px 24px; }
    .gq-page-hero-body h1 { font-size: 28px; }
    .gq-policy-box { padding: 28px; }
    .gq-mission-grid { grid-template-columns: 1fr; }
    .gq-detail-stats { grid-template-columns: 1fr 1fr; }
    .gq-detail-actions { flex-direction: column; }
    .gq-screenshots { grid-template-columns: 1fr; }
    .gq-about--alt { padding: 28px; }
    .gq-timeline { padding-left: 32px; }
    .gq-about-cta { padding: 40px 24px; }
    .gq-detail-info { padding: 28px; }
    .gq-contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .gq-pagination-link { min-width: 38px; height: 38px; font-size: 13px; padding: 0 12px; }
    .gq-pagination-list { gap: 5px; }
    .gq-pagination .pagination-link { min-width: 38px; height: 38px; font-size: 13px; padding: 0 12px; }
    .gq-pagination .pagination-list { gap: 5px; }
}

@media (max-width: 480px) {
    .gq-hero { padding: 28px 14px; }
    .gq-hero-body h1 { font-size: 22px; }
    .gq-hero-stats { gap: 14px; }
    .gq-hero-btns { flex-direction: column; align-items: center; }
    .hero-section { padding: 32px 18px; border-radius: var(--gq-radius); }
    .hero-title { font-size: 24px; }
    .hero-tagline { font-size: 11px; padding: 4px 14px; }
    .hero-description { font-size: 14px; }
    .hero-subdescription { font-size: 12px; }
    .hero-stats { gap: 18px; }
    .stat-number { font-size: 22px; }
    .stat-label { font-size: 10px; }
    .hero-actions .btn { padding: 12px 24px; font-size: 13px; }
    .gq-games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gq-game-card > a { flex-direction: column; }
    .gq-game-thumb { flex: none; width: 100%; aspect-ratio: 4/3; height: auto; }
    .gq-game-thumb::after { background: linear-gradient(0deg, rgba(18, 15, 28, 0.85) 0%, transparent 35%); }
    .gq-game-info { padding: 10px 12px 12px; gap: 4px; flex: none; }
    .gq-game-title { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .gq-game-cat { font-size: 10px; }
    .gq-game-info .gq-line-clamp { font-size: 11px; -webkit-line-clamp: 1; min-height: 16px; }
    .gq-badge { font-size: 9px; padding: 2px 7px; }
    .gq-play-btn { opacity: 1; padding: 0 14px 0 12px; height: 34px; border-radius: 18px; font-size: 12px; transform: translate(-50%, -50%) scale(1); }
    .gq-features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gq-feature-card { padding: 18px 12px; }
    .gq-feature-icon { font-size: 28px; margin-bottom: 10px; }
    .gq-feature-card h3 { font-size: 14px; }
    .gq-logo { font-size: 16px; }
    .gq-nav-link { display: none; }
    .gq-nav-search { padding: 3px 10px; }
    .gq-search-input { font-size: 12px; padding: 4px; }
    .gq-nav-btn { padding: 5px 12px; font-size: 11px; }
    .gq-contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .gq-form .gq-form-row { grid-template-columns: 1fr; }
    .gq-contact-hero { padding: 40px 24px; }
    .gq-contact-hero-body h1 { font-size: 28px; }
    .gq-form-box, .gq-info-box { padding: 28px; }
    .gq-faq-grid { grid-template-columns: 1fr; }
    .gq-about-stats { grid-template-columns: 1fr; }
    .gq-pagination-link { min-width: 34px; height: 34px; font-size: 12px; padding: 0 10px; }
    .gq-pagination .pagination-link { min-width: 34px; height: 34px; font-size: 12px; padding: 0 10px; }
    .gq-detail-similar-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ===== Share buttons & copy modal (theme-adaptive) ===== */
.share-copy-modal {
	position: fixed;
	inset: 0;
	background: rgba(8, 8, 16, .82);
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 9999;
	padding: 15px;
}
.share-copy-modal.show {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.share-copy-box {
	background: #0c0c1a;
	border: 1px solid rgba(255, 60, 120, .4);
	border-radius: 12px;
	max-width: 460px;
	width: 100%;
	padding: 28px 24px 24px;
	position: relative;
	box-shadow: 0 0 30px rgba(255, 60, 120, .4);
}
.share-copy-close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	color: #9190a5;
	cursor: pointer;
	transition: color .3s;
}
.share-copy-close:hover {
	color: #ff3c78;
}
.share-copy-title {
	margin: 0 0 6px;
	font-size: 20px;
	color: #fff;
}
.share-copy-desc {
	margin: 0 0 16px;
	color: #9190a5;
	font-size: 14px;
}
.share-copy-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
}
.share-copy-input {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid rgba(255, 60, 120, .45);
	border-radius: 8px;
	font-size: 14px;
	color: #fff;
	background: rgba(255, 255, 255, .06);
}
.share-copy-input:focus {
	outline: none;
	border-color: #ff3c78;
}
.share-copy-btn {
	padding: 10px 18px;
	border: none;
	border-radius: 8px;
	background: linear-gradient(135deg, #ff3c78 0%, #ff76a0 100%);
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity .3s;
}
.share-copy-btn:hover {
	opacity: .9;
}
.share-copy-status {
	margin: 12px 0 0;
	font-size: 13px;
	color: #4ade80;
	min-height: 18px;
}
