* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(255, 208, 76, 0.18), transparent 32%),
        linear-gradient(180deg, #111111 0%, #050505 100%);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.app {
    width: min(1100px, 92vw);
    margin: 0 auto;
    padding: 42px 0 210px;
}

.hero {
    text-align: center;
    padding: 44px 20px 34px;
}

.band-name {
    font-size: clamp(38px, 7vw, 82px);
    letter-spacing: 0.08em;
    font-weight: 900;
}

.band-name span {
    color: #ffd447;
    text-shadow: 0 0 28px rgba(255, 212, 71, 0.45);
}

.hub-title {
    margin-top: 8px;
    color: #d7d7d7;
    font-size: 18px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.tagline {
    margin-top: 18px;
    color: #9d9d9d;
    font-size: 15px;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 28px 0 18px;
    flex-wrap: wrap;
}

button,
select {
    font-family: inherit;
}

button {
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.primary-btn {
    background: #ffd447;
    color: #111111;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.small-control {
    padding: 12px 15px;
    min-width: 54px;
}

.section-title {
    margin: 34px 0 16px;
    color: #ffffff;
    font-size: 22px;
}

.song-list {
    display: grid;
    gap: 12px;
}

.song-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    cursor: pointer;
    transition: 0.2s ease;
}

.song-card:hover {
    background: rgba(255, 255, 255, 0.11);
}

.song-card.now-active {
    border-color: rgba(255, 212, 71, 0.75);
    background: rgba(255, 212, 71, 0.12);
}

.play-dot {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 212, 71, 0.18);
    color: #ffd447;
    font-size: 18px;
}

.song-play-btn {
    border: none;
    padding: 0;
}

.song-title {
    font-size: 18px;
    font-weight: 800;
}

.song-date {
    margin-top: 5px;
    color: #9d9d9d;
    font-size: 13px;
}

.song-side {
    display: grid;
    gap: 7px;
    justify-items: end;
}

.song-duration {
    color: #bdbdbd;
    font-size: 14px;
}

.download-link {
    color: #ffd447;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.download-link:hover {
    text-decoration: underline;
}

.empty-state {
    padding: 34px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: #c7c7c7;
    text-align: center;
}

.bottom-player {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(1040px, 92vw);
    padding: 14px 18px;
    border-radius: 24px;
    background: rgba(18, 18, 18, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
}

.player-info {
    min-width: 0;
}

.now-playing {
    color: #ffffff;
    font-weight: 800;
}

.player-subtitle {
    margin-top: 4px;
    color: #8f8f8f;
    font-size: 13px;
}

.player-progress-wrap {
    margin-top: 10px;
}

.progress-range {
    width: 100%;
    accent-color: #ffd447;
}

.time-row {
    display: flex;
    justify-content: space-between;
    margin-top: 3px;
    color: #8f8f8f;
    font-size: 12px;
}

.loop-status {
    margin-top: 8px;
    color: #ffd447;
    font-size: 13px;
    font-weight: 700;
}

.player-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.speed-select {
    height: 45px;
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
    font-weight: 700;
}

.speed-select option {
    color: #111111;
}

.loop-btn {
    padding: 12px 15px;
}

.loop-active {
    background: #ffd447;
    color: #111111;
}

@media (max-width: 700px) {
    .song-card {
        grid-template-columns: auto 1fr;
    }

    .song-side {
        grid-column: 2;
        justify-items: start;
    }

    .bottom-player {
        grid-template-columns: 1fr;
        max-height: 55vh;
        overflow-y: auto;
    }

    .player-controls {
        justify-content: center;
    }
}