body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #0d0d11, #050508);
    color: white;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
}

/* ЛЕВАЯ КОЛОНКА */

.left-column {
    width: 430px;
}

.banner {
    width: 100%;
    height: 200px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
}

.profile-header {
    margin-top: -40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-wrapper {
    position: relative;
}

.avatar {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 5px solid #0f0f12;
}

.status-dot {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 20px;
    height: 20px;
    background: #44ff66;
    border-radius: 50%;
    border: 3px solid #0f0f12;
}

.profile-info {
    margin-top: 32px; /* опускаем ник и юзернейм ниже, чтобы не налезали на баннер */
}

.username {
    font-size: 22px;
    font-weight: bold;
}

.userid {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 4px;
}

/* СПОТИФАЙ АКТИВНОСТЬ */

.spotify-card {
    margin-top: 20px;
    display: flex;
    background: #101014;
    border-radius: 14px;
    padding: 10px 14px;
    gap: 12px;
    box-shadow: 0 0 18px rgba(0, 255, 90, 0.25);
}

.hidden {
    display: none;
}

.spotify-cover {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
}

.spotify-data {
    flex-grow: 1;
}

.spotify-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spotify-title {
    font-size: 14px;
    font-weight: bold;
}

.spotify-artist {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 2px;
}

.spotify-time {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    opacity: 0.8;
    margin-top: 8px;
}

.spotify-bar {
    width: 100%;
    height: 6px;
    margin-top: 4px;
    border-radius: 3px;
    background: linear-gradient(90deg, #1a1a1a, #0c0c0c);
}

.spotify-progress {
    height: 6px;
    width: 0%;
    border-radius: 3px;
    background: #1db954;
}

.spotify-icon {
    width: 22px;
    height: 22px;
}

/* КНОПКИ */

.links {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.link-btn {
    background: #151515;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.link-btn:hover {
    background: #222;
}

/* ПРАВАЯ КОЛОНКА */

.right-column {
    width: 600px;
}

.card {
    background: #111118;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(90, 90, 120, 0.25);
    margin-bottom: 30px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.game-list {
    margin-top: 6px;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0c0c10;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.game-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.game-title {
    font-size: 15px;
}

/* ПЛЕЕР */

.player-wrapper {
    position: fixed;
    bottom: 18px;
    left: 18px;
}

.player {
    background: #151515;
    padding: 6px 10px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-btn {
    font-size: 16px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.vol-slider {
    width: 80px;
}
