    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 0.55rem 0;
    margin-top: -0.35rem;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    background: linear-gradient(
        180deg,
        rgba(var(--sp-ambient-r, 18), var(--sp-ambient-g, 18), var(--sp-ambient-b, 18), 0.34) 0%,
        rgba(18, 18, 18, 0.94) 52%,
        rgba(18, 18, 18, 0.82) 100%
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-app__brand {
    margin: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.dash-app__brand--live .dash-app__brand__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.55);
    animation: dash-live-pulse 1.35s ease-in-out infinite;
    flex-shrink: 0;
}

.dash-app__brand--live .dash-app__brand__text {
    font-family: "DM Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff5c4d;
    text-shadow: 0 0 1.1rem rgba(255, 59, 48, 0.45);
}

@keyframes dash-live-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.55);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 0.45rem rgba(255, 59, 48, 0);
    }
}

.page--spotify .dashboard-now__bar {
    height: 6px;
    background: rgba(243, 235, 224, 0.06);
}

.page--spotify .dashboard-now__fill {
    background: linear-gradient(90deg, var(--violet), var(--mint), var(--sp-accent));
    box-shadow: 0 0 12px rgba(94, 228, 199, 0.35);
}

.page--spotify .dash-playlist img,
.page--spotify .dash-playlist__ph {
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.page--spotify .dash-playlist:hover img,
.page--spotify .dash-playlist:hover .dash-playlist__ph {
    transform: scale(1.02);
    border-color: rgba(94, 228, 199, 0.25);
}

/* Spotify tarzı profil bağlantısı */
.sp-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    max-width: min(100%, 16.5rem);
    padding: 0.4rem 0.65rem 0.4rem 0.4rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(22, 20, 31, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--cream);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow:
        0 0.35rem 1.25rem rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.sp-profile-link:hover,
.sp-profile-link:focus-visible {
    border-color: rgba(29, 185, 84, 0.4);
    background: rgba(29, 185, 84, 0.08);
    color: #fff;
    transform: translateY(-1px);
    box-shadow:
        0 0.5rem 1.5rem rgba(29, 185, 84, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    outline: none;
}

.sp-profile-link__media {
    flex-shrink: 0;
}

.sp-profile-link__avatar {
    display: block;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    object-fit: cover;
}

.sp-profile-link__avatar--ph {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(29, 185, 84, 0.35);
    color: #1db954;
}

.sp-profile-link__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.05rem;
    min-width: 0;
    flex: 1;
    line-height: 1.2;
}

.sp-profile-link__eyebrow {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1db954;
}

.sp-profile-link__title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.sp-profile-link--static {
    position: relative;
    top: auto;
    right: auto;
    z-index: auto;
    margin: 0 0 0 auto;
    flex-shrink: 0;
}

.dash-app__top {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
    min-height: 0;
    margin-bottom: 0.85rem;
    flex-shrink: 0;
}

/* Spotify profil kartı */
.sp-profile-hero {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    min-width: 0;
    padding: 0.72rem 0.85rem 0.72rem 0.72rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(
            128deg,
            rgba(var(--sp-ambient-r, 18), var(--sp-ambient-g, 18), var(--sp-ambient-b, 18), 0.38) 0%,
            rgba(255, 255, 255, 0.04) 42%,
            rgba(18, 18, 18, 0.72) 100%
        );
    color: var(--cream);
    text-decoration: none;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    box-shadow:
        0 0.45rem 1.35rem rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition:
        border-color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.sp-profile-hero__accent {
    position: absolute;
    left: 0;
    top: 0.65rem;
    bottom: 0.65rem;
    width: 0.2rem;
    border-radius: 0 0.2rem 0.2rem 0;
    background: linear-gradient(180deg, #1ed760 0%, #169c46 100%);
    box-shadow: 0 0 0.75rem rgba(30, 215, 96, 0.45);
}

.sp-profile-hero__avatar-wrap {
    flex-shrink: 0;
    width: 2.85rem;
    height: 2.85rem;
    padding: 0.14rem;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(30, 215, 96, 0.85), rgba(255, 255, 255, 0.18));
    box-shadow: 0 0.35rem 1rem rgba(30, 215, 96, 0.22);
}

.sp-profile-hero__avatar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #121212;
}

.sp-profile-hero__avatar--ph {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(30, 215, 96, 0.35);
}

.sp-profile-hero__logo {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
}

.sp-profile-hero__copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.18rem;
    line-height: 1.2;
}

.sp-profile-hero__label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1ed760;
}

.sp-profile-hero__title {
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
}

.sp-profile-hero__go {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: rgba(30, 215, 96, 0.14);
    color: #1ed760;
    transition: background 0.2s ease, transform 0.15s ease;
}

.sp-profile-hero:hover,
.sp-profile-hero:focus-visible {
    border-color: rgba(30, 215, 96, 0.42);
    background:
        linear-gradient(
            128deg,
            rgba(var(--sp-ambient-r, 18), var(--sp-ambient-g, 18), var(--sp-ambient-b, 18), 0.48) 0%,
            rgba(30, 215, 96, 0.08) 38%,
            rgba(18, 18, 18, 0.78) 100%
        );
    box-shadow:
        0 0.55rem 1.65rem rgba(30, 215, 96, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    outline: none;
}

.sp-profile-hero:hover .sp-profile-hero__go,
.sp-profile-hero:focus-visible .sp-profile-hero__go {
    background: rgba(30, 215, 96, 0.28);
    transform: translate(1px, -1px);
}

.sp-profile-hero:active {
    transform: scale(0.985);
}

.sp-profile-link__action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-dim);
    transition: color 0.15s ease, transform 0.15s ease;
}

.sp-profile-link:hover .sp-profile-link__action,
.sp-profile-link:focus-visible .sp-profile-link__action {
    color: #1db954;
    transform: translate(1px, -1px);
}

