/* css/styles-cleanup.css - EXTRACTED INLINE STYLES */

/* --- GENERAL UTILS --- */
.text-center { text-align: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.w-100 { width: 100%; }
.relative { position: relative; }
.pointer { cursor: pointer; }

/* --- BACKGROUNDS --- */
.cyber-lines-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; overflow: hidden; pointer-events: none;
}

/* --- STATS CONTAINER --- */
.stats-wrapper {
    display: flex; gap: 12px; margin: 0 15px;
}
.balance-card {
    flex: 1; cursor: pointer; padding: 12px; border-radius: 16px; overflow: hidden;
}
.rank-card {
    flex: 1; padding: 10px 12px; border-radius: 16px; position: relative; overflow: hidden;
}

/* --- BARS --- */
.bars-wrapper {
    display: flex; gap: 10px; margin: 20px 15px; font-size: 10px; font-weight: bold;
}
.bar-unit {
    flex: 1; background: rgba(0,0,0,0.4); padding: 10px; border-radius: 12px;
}
.bar-track-base {
    height: 5px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden;
}

/* --- CORE --- */
.core-container {
    display: flex; justify-content: center; align-items: center; margin-top: 10px;
}
.core-circle {
    width: 240px; height: 240px;
    background: radial-gradient(circle, #ff0040 10%, #550015 70%, #000 100%);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 0 60px rgba(255, 0, 64, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* --- GAMES GRID --- */
.games-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 15px;
}
.game-tile {
    border-radius: 16px; padding: 15px; text-align: center; position: relative;
    cursor: pointer;
}
.game-badge {
    position: absolute; top: 0; right: 0; color: #fff; font-size: 9px;
    padding: 2px 6px; border-bottom-left-radius: 8px;
}

/* --- WALLET SECTION --- */
.wallet-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px;
}
.airdrop-badge {
    position: absolute; top: 10px; right: 10px;
    background: rgba(0,255,156,0.2); color: #00ff9c;
    padding: 4px 8px; border-radius: 4px; font-size: 10px; font-weight: bold;
    border: 1px solid #00ff9c;
}
