/* ===================================================
   蜜糖弹幕游戏平台 - 全局样式（增强版）
   =================================================== */

:root {
    --bg-primary: #06060f;
    --bg-secondary: #0d0d20;
    --bg-card: #13133a;
    --bg-card-hover: #1a1a55;
    --accent: #ff6b9d;
    --accent2: #6bc5ff;
    --accent3: #6bff8e;
    --accent4: #ffdb6b;
    --accent5: #c06bff;
    --accent6: #ff9b6b;
    --text-primary: #eaeaf5;
    --text-secondary: #8888b0;
    --border: #1e1e4a;
    --border-glow: rgba(255,107,157,0.3);
    --success: #00cc66;
    --danger: #ff4444;
    --warning: #ffaa00;
    --glow: 0 0 30px rgba(255, 107, 157, 0.25);
    --radius: 14px;
    --radius-sm: 10px;
}

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

/* ========== Body 增强背景 ========== */
body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(255,107,157,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(107,197,255,0.08) 0%, transparent 50%);
    position: relative;
}

/* 浮动光斑层 */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    background:
        radial-gradient(600px 600px at 15% 25%, rgba(255,107,157,0.06), transparent),
        radial-gradient(500px 500px at 85% 75%, rgba(107,197,255,0.05), transparent);
    animation: orbDrift 20s ease-in-out infinite;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(40px, -30px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(-30px, -15px); }
}

/* 噪点纹理 */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image:
        repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.8) 0, transparent 1px),
        repeating-radial-gradient(circle at 20% 80%, rgba(255,255,255,0.5) 0, transparent 1px);
    background-size: 3px 3px, 5px 5px;
}

a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ========== 导航栏增强 ========== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: rgba(6,6,15,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), var(--accent2), var(--border-glow), transparent);
    opacity: 0.6;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.nav-links { display: flex; gap: 24px; }
.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
    border-bottom-color: var(--accent);
    text-decoration: none;
}
.nav-links a:hover { text-shadow: 0 0 12px rgba(255,107,157,0.4); }

/* ========== 页面容器 ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-subtitle { color: var(--text-secondary); font-size: 16px; margin-bottom: 40px; }

/* ========== Hero 区域增强 ========== */
.hero {
    text-align: center;
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Hero 大型光球 */
.hero-glow-orb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255,107,157,0.12) 0%, rgba(107,197,255,0.06) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbPulse 8s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,157,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero 粒子 */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.hero-particles::before {
    width: 4px; height: 4px;
    background: var(--accent);
    top: 20%; left: 15%;
    box-shadow:
        200px 100px 0 0 var(--accent2),
        400px 50px 0 0 var(--accent3),
        600px 200px 0 0 var(--accent4),
        100px 300px 0 0 var(--accent5),
        500px 300px 0 0 var(--accent6),
        700px 100px 0 0 var(--accent2),
        300px 250px 0 0 var(--accent);
}

.hero-particles::after {
    width: 3px; height: 3px;
    background: var(--accent3);
    bottom: 15%; right: 10%;
    box-shadow:
        -150px -80px 0 0 var(--accent4),
        -350px -150px 0 0 var(--accent5),
        -550px -60px 0 0 var(--accent2),
        -80px -250px 0 0 var(--accent),
        -400px -200px 0 0 var(--accent6),
        -650px -120px 0 0 var(--accent3);
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-20px); opacity: 1; }
}

/* Hero 标题增强 */
.hero-title {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b9d 0%, #6bc5ff 40%, #6bff8e 80%, #c06bff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite, titlePulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes titlePulse {
    0%, 100% { filter: brightness(1) saturate(1); }
    50% { filter: brightness(1.3) saturate(1.2); }
}

.hero-desc {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

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

.hero-stat-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    font-family: 'SF Mono', 'Courier New', monospace;
    transition: color 0.3s;
    position: relative;
}

.hero-stat-value::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    transform: translateX(-50%);
    width: 30px; height: 2px;
    background: var(--accent);
    border-radius: 1px;
    opacity: 0.5;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
    letter-spacing: 1px;
}

/* 快速操作 */
.quick-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.quick-input {
    padding: 14px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    text-align: center;
    width: 200px;
    text-transform: uppercase;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.quick-input:focus {
    border-color: var(--accent2);
    outline: none;
    box-shadow: 0 0 20px rgba(107,197,255,0.15);
}
.quick-input::placeholder {
    letter-spacing: 1px;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 14px;
}

/* ========== 分区标题 ========== */
.section-title {
    font-size: 26px;
    font-weight: 700;
    margin: 56px 0 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 80px; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 1px;
}

.section-title .icon { font-size: 30px; }

/* ========== 游戏卡片网格 ========== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

/* 游戏卡片增强 */
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* 顶部彩色渐变条 */
.game-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-accent, var(--accent)), var(--card-accent2, var(--accent2)));
    opacity: 0;
    transition: opacity 0.35s;
}

/* 光标扫描效果 */
.game-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    transition: left 0.6s;
    pointer-events: none;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow), 0 0 0 1px var(--border-glow);
    border-color: var(--card-accent, var(--accent));
    background: var(--bg-card-hover);
}
.game-card:hover::before { opacity: 1; }
.game-card:hover::after { left: 100%; }

/* 卡片颜色变体 */
.game-card[data-game="shooter"] { --card-accent: #ff6b9d; --card-accent2: #ff4088; }
.game-card[data-game="dodge"]   { --card-accent: #6bc5ff; --card-accent2: #3da5f0; }
.game-card[data-game="quiz"]    { --card-accent: #6bff8e; --card-accent2: #3ddc6e; }
.game-card[data-game="battle"]  { --card-accent: #ffdb6b; --card-accent2: #ffc107; }
.game-card[data-game="fishing"] { --card-accent: #ff9b6b; --card-accent2: #ff7744; }
.game-card[data-game="rhythm"]  { --card-accent: #c06bff; --card-accent2: #9b3dff; }
.game-card[data-game="tower"]   { --card-accent: #6bffe0; --card-accent2: #3ddcc0; }

.game-card-icon {
    font-size: 52px;
    margin-bottom: 18px;
    display: block;
    animation: iconFloat 2.5s ease-in-out infinite;
    animation-delay: calc(var(--card-delay, 0) * 0.3s);
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.game-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.game-card-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* 标签 pill 样式 */
.game-card-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.game-card-tag {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    transition: all 0.25s;
}
.game-card:hover .game-card-tag {
    background: rgba(255,255,255,0.06);
    border-color: var(--card-accent, var(--border));
}

.game-card-modes {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.game-card-modes .btn {
    flex: 1;
    transition: all 0.3s ease;
}
.game-card:hover .game-card-modes .btn-primary {
    box-shadow: 0 0 20px rgba(255,107,157,0.4);
    transform: scale(1.02);
}

/* ========== 按钮增强 ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #ff4088);
    color: white;
    box-shadow: 0 4px 15px rgba(255,107,157,0.3);
}
.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(255,107,157,0.5);
    transform: translateY(-2px);
}

.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,107,157,0.4); }
    70% { box-shadow: 0 0 0 14px rgba(255,107,157,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,157,0); }
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--accent2);
    background: var(--bg-card-hover);
    box-shadow: 0 0 15px rgba(107,197,255,0.1);
}

.btn-success { background: var(--success); color: white; }
.btn-success:hover { filter: brightness(1.15); }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { filter: brightness(1.15); }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ========== 输入框 ========== */
.input {
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
}
.input:focus {
    border-color: var(--accent2);
    box-shadow: 0 0 15px rgba(107,197,255,0.1);
}
.input::placeholder { color: var(--text-secondary); }

/* ========== 模态框 ========== */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}
.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal h2 { font-size: 24px; margin-bottom: 24px; }
.modal .form-group { margin-bottom: 16px; }
.modal .form-group label { display: block; margin-bottom: 8px; color: var(--text-secondary); font-size: 14px; }
.modal .form-actions { display: flex; gap: 12px; margin-top: 24px; }

/* Toast */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    z-index: 2000;
    animation: slideIn 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.toast-success { background: var(--success); color: white; }
.toast-error { background: var(--danger); color: white; }
.toast-info { background: var(--accent2); color: var(--bg-primary); }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px; height: 20px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== 房间列表增强 ========== */
.room-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.room-item::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.room-item:hover {
    border-color: var(--accent2);
    box-shadow: 0 0 20px rgba(107,197,255,0.08);
    transform: translateX(4px);
}
.room-item:hover::after { left: 100%; }

.room-item-left { display: flex; align-items: center; gap: 18px; }

.room-code {
    font-family: 'SF Mono', 'Courier New', monospace;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent2);
    text-shadow: 0 0 12px rgba(107,197,255,0.3);
    min-width: 80px;
}

.room-info h3 { font-size: 16px; margin-bottom: 4px; }
.room-info span { color: var(--text-secondary); font-size: 13px; }
.room-meta { display: flex; gap: 16px; color: var(--text-secondary); font-size: 13px; }

/* 游戏中状态脉冲 */
.room-status-playing {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    margin-right: 6px;
    animation: statusPulse 1.5s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,204,102,0.6); }
    50% { box-shadow: 0 0 0 8px rgba(0,204,102,0); }
}

/* ========== 排行榜增强 ========== */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead tr {
    color: var(--text-secondary);
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}

.leaderboard-table th {
    padding: 14px 8px;
    text-align: left;
}

.leaderboard-table th:last-child { text-align: right; }

.leaderboard-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: all 0.25s;
}

.leaderboard-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

.leaderboard-table td {
    padding: 14px 8px;
}

.leaderboard-table td:last-child { text-align: right; }

/* 领奖台样式 */
.podium-1 {
    background: linear-gradient(90deg, rgba(255,215,0,0.12), rgba(255,215,0,0.03)) !important;
    font-weight: 700;
}
.podium-1 td:first-child {
    font-size: 22px;
}

.podium-2 {
    background: linear-gradient(90deg, rgba(192,192,192,0.1), rgba(192,192,192,0.02)) !important;
    font-weight: 700;
}
.podium-2 td:first-child {
    font-size: 20px;
}

.podium-3 {
    background: linear-gradient(90deg, rgba(205,127,50,0.1), rgba(205,127,50,0.02)) !important;
    font-weight: 700;
}
.podium-3 td:first-child {
    font-size: 18px;
}

/* 排名徽章 */
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
}

.podium-1 .rank-badge { background: rgba(255,215,0,0.2); color: #ffd700; }
.podium-2 .rank-badge { background: rgba(192,192,192,0.2); color: #c0c0c0; }
.podium-3 .rank-badge { background: rgba(205,127,50,0.2); color: #cd7f32; }

/* ========== 页脚增强 ========== */
.footer {
    text-align: center;
    padding: 48px 40px;
    color: var(--text-secondary);
    font-size: 13px;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--border), transparent) 1;
    margin-top: 24px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.footer a {
    color: var(--accent2);
    transition: color 0.2s, text-shadow 0.2s;
}
.footer a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(255,107,157,0.3);
}

/* 弹幕画布全屏 */
.danmaku-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 50;
}

/* ========== 滚动显示动画 ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 交错延迟 */
.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }
.reveal:nth-child(7) { transition-delay: 0.35s; }

/* ========== 统计数字过渡 ========== */
.stat-counter {
    transition: color 0.3s ease;
}
.stat-counter.updated {
    color: var(--accent3);
    animation: countFlash 0.6s ease-out;
}

@keyframes countFlash {
    0% { transform: scale(1.1); color: var(--accent3); }
    100% { transform: scale(1); color: var(--accent); }
}

/* ========== 隐藏 ========== */
.hidden { display: none !important; }

/* ========== 响应式 ========== */
@media (max-width: 768px) {
    .container { padding: 20px; }
    .navbar { padding: 12px 20px; }
    .game-grid { grid-template-columns: 1fr; }
    .page-title { font-size: 28px; }
    .hero { padding: 60px 16px 50px; }
    .hero-title { font-size: 32px; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .hero-stat-value { font-size: 30px; }
    .nav-links { gap: 12px; font-size: 13px; }
    .hero-glow-orb { width: 400px; height: 400px; }
    .game-card { padding: 28px 20px; }
    .room-item { padding: 14px 20px; flex-wrap: wrap; gap: 12px; }
    .room-code { font-size: 16px; min-width: 60px; }
    .quick-actions { flex-direction: column; align-items: center; }
    .quick-input { width: 100%; max-width: 280px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .game-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 44px; }
}
