.arcade-container {}

.arcade-points-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: var(--social-bg);
    border-radius: var(--radius);
    margin-bottom: var(--space-lg);
}

.arcade-points-section .label { font-size: 14px; color: var(--text); }
.arcade-points-section .value { font-size: 24px; font-weight: 700; color: var(--accent); }

.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.game-card {
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    position: relative;
}

.game-card-image { font-size: 48px; margin-bottom: var(--space-sm); }
.game-card-name { font-weight: 600; color: var(--text-h); }
.game-card-badge {
    margin-top: var(--space-sm);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}
.coming-soon {
    background: var(--warning);
    color: #fff;
}

.score-list {}

.arcade-score-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.rank {
    width: 30px;
    font-weight: 700;
    color: var(--accent);
}

.score-name { flex: 1; color: var(--text-h); }
.score-value { font-weight: 600; color: var(--text-h); }

.arcade-tabs {
    display: flex;
    border-bottom: 1px solid var(--border, #444);
    margin-bottom: 16px;
}
.arcade-tab {
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--text-secondary, #999);
    font-size: 1em;
}
.arcade-tab.active {
    color: var(--text-primary, #fff);
    border-bottom: 2px solid var(--accent, #4CAF50);
}
.arcade-panel { display: none; }
.arcade-panel.active { display: block; }
