/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

body {
    background: #0a0508;
    background-image: radial-gradient(circle at 20% 30%, #2a0a0a, #0a0508);
    min-height: 100vh;
    padding-bottom: 90px;
    color: #f5edf0;
    touch-action: none;
}

/* ===== СКРОЛЛБАР ===== */
::-webkit-scrollbar {
    width: 3px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #ff444466;
    border-radius: 20px;
}

/* ===== ХЕДЕР ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 12px 24px;
    background: rgba(20, 8, 10, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 50, 50, 0.1);
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(255, 50, 50, 0.4));
    transition: transform 0.2s ease;
}

.logo img:active {
    transform: scale(0.92);
}

.logo span {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ff6b6b, #e63946);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-actions i {
    font-size: 22px;
    color: #cdb7b7;
    transition: 0.2s;
    cursor: pointer;
}

.header-actions i:active {
    transform: scale(0.92);
    color: #ff4444;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: #0a0508;
    box-shadow: 0 0 0 2px rgba(255, 50, 50, 0.25);
    cursor: pointer;
}

/* ===== КОНТЕНТ ===== */
.content {
    padding: 24px 20px 20px 20px;
}

.greeting {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 6px;
}

.greeting strong {
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b6b, #e63946);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub {
    color: #9a858a;
    font-size: 15px;
    margin-bottom: 28px;
    border-left: 3px solid #e63946;
    padding-left: 12px;
}

.card {
    background: rgba(30, 15, 18, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 50, 50, 0.08);
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.card h3 {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.3px;
    color: #ccb5b5;
    margin-bottom: 14px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 50, 50, 0.05);
}

.track-item:last-child {
    border-bottom: none;
}

.track-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #2a1518;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b6b;
    font-size: 18px;
}

.track-info {
    flex: 1;
}

.track-name {
    font-weight: 500;
    font-size: 16px;
}

.track-artist {
    font-size: 13px;
    color: #8f7a7a;
}

.track-play {
    color: #ff6b6b;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.track-play:active {
    transform: scale(0.85);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 420px) {
    .header {
        padding: 14px 16px 10px 16px;
    }
    .logo img {
        height: 26px;
    }
    .logo span {
        font-size: 19px;
    }
    .greeting {
        font-size: 22px;
    }
}