:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content-wrapper {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; filter: blur(10px); }
    to { opacity: 1; filter: blur(0); }
}

.player-container {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    gap: 12px;
    width: 90%;
    max-width: 600px;
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
    color: rgba(0, 0, 0, 0.8);
}

.play-btn:active {
    transform: scale(0.95);
}

.play-btn svg {
    width: 28px;
    height: 28px;
}

/* Remove margin tweak for pause icon */
.play-btn svg#pause-icon {
    margin-left: 0;
}

#waveform {
    flex-grow: 1;
    height: 44px;
    cursor: pointer;
    overflow: hidden;
}
