@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap');

h1 {
    color: blueviolet;
}

body {
    margin: 0;
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    background: #0d0b0a;
    color: #e9eaed;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
}

.card {
    width: min(420px, 100%);
    background: #1A1817;
    color: #ffffff;
    border: 1px solid #2B2926;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border-radius: 16px;
    padding: 48px 28px 32px 28px;
    text-align: center;
}

.avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(92, 86, 255, 0.18);
}

.name {
    margin: 16px 0 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #ffffff;
}

.tagline {
    margin: 16px auto 24px;
    color: #ffffff;
    font-size: 15px;
    max-width: 360px;
    text-align: center;
}

.cta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 160px;
    height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #2B2926;
    background: #2B2926;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.cta svg {
    width: 16px;
    height: 16px;
}

.cta.secondary {
    border-color: #2B2926;
    background: #2B2926;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.cta.secondary:hover {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.tip-panel {
    width: 100%;
    max-width: calc(160px * 2 + 24px);
    margin: 0 auto 18px;
    background: #2B2926;
    border: 1px solid #2B2926;
    border-radius: 14px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 180ms ease, padding 180ms ease, margin-top 180ms ease;
    padding: 0 16px;
}

.tip-panel.open {
    max-height: 200px;
    padding: 16px;
    margin-top: 8px;
}

.tip-panel h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 16px;
}

.stripe-placeholder {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px;
    color: #d6d1c9;
    font-size: 14px;
    min-height: 80px;
    display: grid;
    place-items: center;
    text-align: center;
}

.songs {
    margin-top: 28px;
    text-align: left;
}

.search {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-label {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 14px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 382px;
    height: 64px;
    padding: 0 18px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    border: 1px solid #000000;
}

.search-bar input {
    flex: 1;
    padding: 0;
    border: none;
    background: transparent;
    color: #000000;
    font-size: 15px;
}

.search-bar input::placeholder {
    color: #3d3d3d;
}

.search-bar svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.song-list {
    margin-top: 18px;
    border: 1px solid #2B2926;
    border-radius: 12px;
    padding: 0;
    background: #3D3A36;
    min-height: 80px;
}

.song-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px 16px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
    border-radius: 12px;
    cursor: pointer;
}

.song-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.song-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    text-align: left;
}

.song-title {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
}

.song-subline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d6d1c9;
    font-size: 14px;
}

.song-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d6d1c9;
}

.song-arrow svg {
    width: 20px;
    height: 20px;
}

.song-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.song-list .empty {
    display: none;
    margin: 0;
    padding: 16px 24px;
    color: #d6d1c9;
    font-size: 14px;
}

/* Login page */
.landing {
    background: #060606;
    color: #e9eaed;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.2px;
}

.nav nav {
    display: flex;
    gap: 16px;
}

.nav nav a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.nav nav a:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.nav-pill {
    padding: 10px 14px;
    border-radius: 12px;
    background: #2B2926;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #2B2926;
}

.nav-pill.ghost {
    background: transparent;
    border-color: #2B2926;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(94, 234, 212, 0.15), transparent 25%),
        radial-gradient(circle at 70% 20%, rgba(120, 119, 198, 0.2), transparent 30%),
        radial-gradient(circle at 50% 70%, rgba(248, 180, 0, 0.2), transparent 30%),
        #060606;
    filter: blur(6px);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 16px;
}

.badge {
    display: inline-block;
    align-self: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
}

.hero h1 {
    margin: 0;
    font-size: 42px;
    color: #ffffff;
    letter-spacing: -0.8px;
}

.hero-sub {
    margin: 0 auto;
    max-width: 620px;
    color: #cdd2d9;
    font-size: 16px;
    line-height: 1.6;
}

.hero-ctas {
    display: inline-flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.cta.primary {
    background: #ffffff;
    color: #0d0b0a;
    border-color: #ffffff;
}

.hero-tester {
    max-width: 320px;
    margin: 12px auto 0;
}

.footer-note {
    text-align: center;
    padding: 24px;
    color: #9ca3af;
    font-size: 14px;
}

@media (max-width: 720px) {
    .hero {
        padding: 64px 20px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-ctas {
        flex-direction: column;
    }
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 999;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #1A1817;
    border: 1px solid #2B2926;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    padding: 24px 24px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.modal h2 {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

.modal-body {
    margin: 0 0 16px;
    color: #d6d1c9;
    font-size: 15px;
}

.request-summary {
    margin: 0 0 12px;
    display: flex;
    gap: 12px;
    align-items: baseline;
    flex-wrap: wrap;
}

.request-song,
.request-artist {
    margin: 0;
    color: #ffffff;
    font-weight: 800;
    font-size: 20px;
}

.request-artist {
    color: #d6d1c9;
    font-weight: 700;
    font-size: 18px;
}

.request-field {
    display: grid;
    gap: 6px;
    margin: 10px 0 0;
}

.request-field label {
    color: #d6d1c9;
    font-weight: 600;
    font-size: 14px;
}

.request-input,
.request-message {
    width: 100%;
    background: #2B2926;
    border: 1px solid #2B2926;
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 12px;
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    resize: vertical;
    min-height: 72px;
    margin-top: 6px;
    margin-bottom: 14px;
    box-sizing: border-box;
    display: block;
}

.request-input {
    min-height: auto;
    resize: none;
}

.request-message::placeholder {
    color: #bcb7b1;
}

.request-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.request-actions button {
    padding: 12px 0;
    border-radius: 12px;
    border: 1px solid #2B2926;
    font-weight: 700;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, color 120ms ease;
}

.request-cancel {
    background: #2B2926;
    color: #ffffff;
}

.request-cancel:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.request-send {
    background: #D8B200;
    border-color: #D8B200;
    color: #000;
}

.request-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.slider {
    background: #2B2926;
    border-radius: 16px;
    padding: 12px;
    border: 1px solid #2B2926;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.slider-track {
    position: relative;
    height: 64px;
    border-radius: 32px;
    background: #3D3A36;
    display: flex;
    align-items: center;
    padding-left: 12px;
    overflow: hidden;
}

.slider-thumb {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #D8B200;
    display: grid;
    place-items: center;
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: transform 120ms ease;
    cursor: grab;
    user-select: none;
}

.slider-hint {
    position: absolute;
    left: 80px;
    color: #d6d1c9;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 120ms ease;
}
