/* -----------------------------------------------------------
   SCREEN 7: LOBBY DASHBOARD
----------------------------------------------------------- */

/* ... (Keep Header styles) ... */

/* 2. Lobby Content (Scrollable Grid) */
.lobby-content {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 90px;
    /* Space for Footer */
    display: flex;
    flex-direction: column;
}

/* Character Preview Container */
.lobby-character-preview {
    width: 100%;
    height: 350px;
    /* Adjust as needed for Spine player */
    position: relative;
    /* margin-bottom to separate from buttons? 
       Buttons are overlay or below? User said "introduce character before buttons".
       So character takes large space.
    */
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    /* Subtle glow */
}

/* Actions Row (Horizontal) */
.lobby-actions-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
}

/* Small Buttons */
.lobby-small-btn {
    flex: 1;
    /* Distribute equal width */
    height: 70px;
    /* Compact height */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s, background 0.2s;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
}

.lobby-small-btn:active {
    transform: scale(0.95);
}

.small-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.btn-icon-small {
    font-size: 24px;
}

.btn-title-small {
    font-size: 11px;
    color: #ccc;
    font-weight: normal;
}

/* Variants (Optional: Subtle tints) */
.btn-pvp-small {
    background: linear-gradient(to bottom, rgba(74, 144, 226, 0.1), rgba(20, 20, 20, 0.6));
    border-color: rgba(74, 144, 226, 0.2);
}

.btn-hero-small {
    background: linear-gradient(to bottom, rgba(80, 200, 120, 0.1), rgba(20, 20, 20, 0.6));
}

.btn-trade-small {
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.1), rgba(20, 20, 20, 0.6));
}

.btn-tasks-small {
    background: linear-gradient(to bottom, rgba(155, 89, 182, 0.1), rgba(20, 20, 20, 0.6));
}

/* CTA Banner */
.cta-banner-container {
    margin-top: auto;
    /* Push to bottom if space allows, or just flow */
}

/* ... (Keep Footer styles) ... */
/* -----------------------------------------------------------
   LOBBY STATS CONTAINER
----------------------------------------------------------- */
.lobby-stats-container {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    /* Fit within canvas */
    margin: 0;
    z-index: 20;
}

.stat-mini-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 4px;
    min-width: 40px;
    flex: 1 1 0;
    backdrop-filter: blur(4px);
}

.stat-label {
    font-size: 10px;
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 13px;
    color: #fff;
    font-weight: bold;
    font-family: 'Cinzel', serif;
}