:root {
    --bg-dark: #0a0a0c;
    --neon-cyan: #00f3ff;
    --neon-magenta: #ff00ff;
    --glass-bg: rgba(20, 20, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #e0e0e0;
    overflow: hidden;
}

#underground-dashboard {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0c 100%);
}

#vibe-fight-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fight-card {
    position: relative;
    z-index: 2;
    width: 380px;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.neon-text {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.status-badge {
    font-size: 0.7rem;
    color: #888;
    margin-top: 5px;
}

.sprite-frame {
    height: 200px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-row {
    display: grid;
    grid-template-columns: 80px 1fr 30px;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.stat-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    border-radius: 3px;
    box-shadow: 0 0 10px currentColor;
}

.stat-fill.str { color: #ff4d4d; background-color: #ff4d4d; }
.stat-fill.def { color: #4dff88; background-color: #4dff88; }
.stat-fill.agi { color: var(--neon-cyan); background-color: var(--neon-cyan); }

.stat-val {
    text-align: right;
    font-family: monospace;
}

.action-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--neon-magenta);
    color: var(--neon-magenta);
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.action-btn:hover {
    background: var(--neon-magenta);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}
