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

:root {
    --lavender: #9B6FB8;
    --lavender-light: #CDB4DB;
    --pink-light: #FFC8DD;
    --pink-medium: #FF8FB8;
    --blue-light: #BDE0FE;
    --blue-medium: #6BA8E5;
    --text-dark: #2D2D2D;
    --text-darker: #1A1A1A;
    --error-red: #E85D7A;
    --success-green: #6BA8E5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%);
    color: var(--text-darker);
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 300;
}

.hamburger-menu {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 100;
}

.hamburger-btn {
    background: transparent;
    border: none;
    border-radius: 8px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 6px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--lavender);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-nav {
    position: relative;
    top: 5px;
    left: 0;
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 8px;
    min-width: 140px;
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu-nav.active {
    display: flex;
}

.menu-nav a {
    color: var(--text-darker);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.85);
}

.menu-nav a:hover {
    background: rgba(205, 180, 219, 0.9);
    color: white;
}

#app {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.screen {
    display: none;
    min-height: 100vh;
    padding: 20px;
    animation: fadeIn 0.8s ease-in;
}

.screen.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes wiggle {
    0%, 100% { transform: translateY(0px); }
    25% { transform: translateY(-5px); }
    75% { transform: translateY(5px); }
}

@keyframes shake-celebration {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px) rotate(-0.5deg); }
    20%, 40%, 60%, 80% { transform: translateX(3px) rotate(0.5deg); }
}

@keyframes firework-burst {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0;
    }
}

@keyframes heart-float-up {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--x-movement)) rotate(var(--rotation));
        opacity: 0.8;
    }
}

@keyframes confettiSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#welcome-screen {
    text-align: center;
}

.fade-message h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--lavender);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.fade-message p {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-darker);
}

.fade-in {
    animation: fadeIn 1s ease-in forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 2s;
}

.delay-2 {
    animation-delay: 4s;
}

.delay-3 {
    animation-delay: 6s;
}

.delay-4 {
    animation-delay: 8s;
}

button {
    background: var(--lavender);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    margin-top: 2rem;
}

button:hover {
    background: #8A5BA3;
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

.content {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--lavender);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--pink-medium);
    font-weight: 400;
}

.qualities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 2rem 0;
}

.quality-btn {
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-darker);
    border: 2px solid var(--lavender-light);
    transition: all 0.3s ease;
    margin: 0;
    font-weight: 400;
}

.quality-btn:hover {
    transform: scale(1.02);
}

.quality-btn.selected {
    background: var(--blue-medium);
    color: white;
    border-color: var(--blue-medium);
}

.quality-btn.fade-away {
    animation: fadeOut 0.5s ease-out forwards;
    pointer-events: none;
}

.competition-container {
    position: relative;
    margin: 2rem 0;
}

.vs-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--lavender);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 50%;
    z-index: 10;
    border: 3px solid var(--lavender-light);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.competition-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.competition-option {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid var(--lavender-light);
    flex: 1;
    max-width: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.competition-option:hover {
    transform: scale(1.05);
    border-color: var(--lavender);
}

.competition-option.shake {
    animation: shake 0.5s ease;
    border-color: var(--error-red);
}

.competition-option .image-placeholder {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    flex-shrink: 0;
}

.competition-option .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.competition-option p {
    font-size: 0.9rem;
    color: var(--text-darker);
    font-weight: 400;
}

.error-message {
    color: var(--error-red);
    font-size: 0.9rem;
    margin-top: 1rem;
    min-height: 20px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.next-btn {
    background: var(--blue-medium);
    margin-top: 1rem;
}

.next-btn:hover {
    background: #8BBFEF;
}

.hidden {
    display: none;
}

.big-question {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.wheel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    font-size: 2rem;
    color: var(--lavender);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    z-index: 10;
}

.spin-btn {
    background: var(--lavender);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 20px;
}

.spin-btn:hover:not(:disabled) {
    background: #8A5BA3;
    transform: scale(1.05);
}

.spin-btn:disabled {
    cursor: not-allowed;
}

.wheel-result {
    margin-top: 30px;
    padding: 20px;
    border-radius: 20px;
    min-height: 50px;
    text-align: center;
}

.wheel-result:not(:empty) {
    background: rgba(255, 255, 255, 0.9);
}

.wheel-result h3 {
    margin: 0;
    font-size: 1.3rem;
}

.wheel-result ul {
    list-style: none;
    padding: 0;
}

.wheel-result li {
    color: var(--text-darker);
    font-weight: 400;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 3rem;
}

.yes-btn {
    background: var(--blue-medium);
    font-size: 1.3rem;
    padding: 20px 50px;
    font-weight: 500;
}

.yes-btn:hover {
    background: #5A92D1;
}

.no-btn {
    background: var(--error-red);
    font-size: 1rem;
    padding: 15px 40px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.no-btn:hover {
    background: #D64A68;
}

.no-btn.shrink {
    transform: scale(0.8);
    opacity: 0.7;
}

.shake-celebration {
    animation: shake-celebration 2s ease;
}

.celebration-message {
    text-align: center;
    margin-top: 2rem;
}

.celebration-text {
    font-size: 2rem;
    color: var(--lavender);
    margin-bottom: 1rem;
    animation: pulse 1s ease infinite;
}

.celebration-subtitle {
    font-size: 1.2rem;
    color: var(--text-darker);
    margin-bottom: 1rem;
}

.music-intro-text {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1rem;
    max-width: 300px;
    line-height: 1.5;
    font-style: italic;
}

.fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.firework {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    --tx: calc((random() - 0.5) * 200px);
    --ty: calc((random() - 0.5) * 200px);
    animation: firework-burst 1s ease-out forwards;
}

.celebration-heart {
    position: absolute;
    font-size: 2rem;
    animation: heart-float-up linear forwards;
    pointer-events: none;
}

.music-link-btn {
    background: var(--lavender);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 2rem;
}

.music-link-btn:hover {
    background: #8A5BA3;
}

.no-btn.tiny {
    transform: scale(0.5);
    opacity: 0.5;
}

.no-btn.hidden {
    display: none;
}

.yes-btn.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    font-size: 3rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: expandFullscreen 0.5s ease-out forwards;
}

@keyframes expandFullscreen {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1);
    }
}

.love-letter {
    max-width: 600px;
    padding: 30px;
}

.love-letter h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.letter-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    line-height: 1.8;
    border: 2px solid var(--lavender-light);
}

.letter-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-darker);
}

.signature {
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
    font-size: 1.2rem !important;
    color: var(--lavender);
    font-weight: 500;
}

.counter-container {
    margin-top: 2rem;
    text-align: center;
}

.counter-label {
    font-size: 1rem !important;
    color: var(--pink-medium);
    margin-bottom: 1rem !important;
    font-weight: 500;
}

.time-counter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 15px 20px;
    border-radius: 15px;
    min-width: 70px;
    border: 2px solid var(--lavender-light);
}

.time-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--lavender);
    line-height: 1;
}

.time-label {
    font-size: 0.75rem;
    color: var(--pink-medium);
    margin-top: 5px;
    font-weight: 500;
    text-transform: lowercase;
}

.music-link-btn {
    background: var(--lavender);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 2rem;
}

.music-link-btn:hover {
    background: #8A5BA3;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.music-player {
    max-width: 600px;
    padding: 30px 20px;
}

.music-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 2rem 0;
}

.song-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 15px 20px;
    border-radius: 15px;
    border: 2px solid var(--lavender-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.song-item:hover {
    transform: translateX(5px);
    border-color: var(--lavender);
    background: rgba(255, 255, 255, 0.85);
}

.song-item.playing {
    background: var(--lavender-light);
    border-color: var(--lavender);
    box-shadow: 0 4px 15px rgba(155, 111, 184, 0.3);
}

.song-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.song-icon {
    font-size: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.song-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    flex: 1;
}

.song-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-darker);
}

.song-artist {
    font-size: 0.9rem;
    color: var(--pink-medium);
    font-weight: 400;
}

.play-btn {
    background: var(--lavender);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.play-btn:hover {
    background: #8A5BA3;
    transform: scale(1.1);
}

.song-item.playing .play-btn {
    background: var(--blue-medium);
}

.audio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    padding: 15px;
}

.control-btn {
    background: var(--lavender);
    color: white;
    border: 2px solid var(--lavender-light);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover:not(:disabled) {
    background: #8A5BA3;
    border-color: #8A5BA3;
    transform: scale(1.1);
}

.control-btn:disabled {
    background: #ccc;
    border-color: #aaa;
    cursor: not-allowed;
    opacity: 0.5;
}

.play-pause-btn {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    background: var(--pink-medium);
    border-color: var(--pink-light);
}

.play-pause-btn:hover:not(:disabled) {
    background: #FF8FB8;
    border-color: #FF8FB8;
}

.progress-container {
    margin-top: 1.5rem;
    padding: 0 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    --progress: 0%;
}

.progress-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress);
    background: linear-gradient(90deg, var(--lavender), var(--pink-medium));
    border-radius: 10px;
    transition: width 0.1s linear;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-darker);
    font-weight: 500;
}

.now-playing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid var(--lavender-light);
    margin-top: 2rem;
}

.now-playing-icon {
    font-size: 1.5rem;
    animation: wiggle 2s ease-in-out infinite;
    display: flex;
    align-items: center;
}

.now-playing-text {
    font-size: 1rem;
    color: var(--text-darker);
    font-weight: 500;
}

.date {
    text-align: center;
    font-size: 0.9rem !important;
    color: var(--pink-medium);
    margin-top: 1rem;
    font-weight: 500;
}

.hearts-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1000;
}

.heart {
    position: absolute;
    font-size: 2rem;
    animation: confettiFall 4s linear infinite;
    top: -50px;
    opacity: 0;
}

.heart:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    --x-movement: 50px;
    --rotation: 360deg;
}

.heart:nth-child(2) {
    left: 25%;
    animation-delay: 0.3s;
    --x-movement: -30px;
    --rotation: -270deg;
}

.heart:nth-child(3) {
    left: 45%;
    animation-delay: 0.6s;
    --x-movement: 40px;
    --rotation: 450deg;
}

.heart:nth-child(4) {
    left: 65%;
    animation-delay: 0.9s;
    --x-movement: -50px;
    --rotation: -360deg;
}

.heart:nth-child(5) {
    left: 85%;
    animation-delay: 1.2s;
    --x-movement: 30px;
    --rotation: 540deg;
}

.heart:nth-child(6) {
    left: 15%;
    animation-delay: 1.5s;
    --x-movement: -40px;
    --rotation: -450deg;
}

.heart:nth-child(7) {
    left: 35%;
    animation-delay: 1.8s;
    --x-movement: 60px;
    --rotation: 720deg;
}

.heart:nth-child(8) {
    left: 55%;
    animation-delay: 2.1s;
    --x-movement: -25px;
    --rotation: -540deg;
}

.heart:nth-child(9) {
    left: 75%;
    animation-delay: 2.4s;
    --x-movement: 45px;
    --rotation: 630deg;
}

.heart:nth-child(10) {
    left: 95%;
    animation-delay: 2.7s;
    --x-movement: -55px;
    --rotation: -720deg;
}

.heart:nth-child(11) {
    left: 5%;
    animation-delay: 3s;
    --x-movement: 35px;
    --rotation: 810deg;
}

.heart:nth-child(12) {
    left: 20%;
    animation-delay: 3.3s;
    --x-movement: -45px;
    --rotation: -630deg;
}

.heart:nth-child(13) {
    left: 40%;
    animation-delay: 3.6s;
    --x-movement: 55px;
    --rotation: 900deg;
}

.heart:nth-child(14) {
    left: 60%;
    animation-delay: 3.9s;
    --x-movement: -35px;
    --rotation: -810deg;
}

.heart:nth-child(15) {
    left: 80%;
    animation-delay: 0.2s;
    --x-movement: 40px;
    --rotation: 495deg;
}

.heart:nth-child(16) {
    left: 12%;
    animation-delay: 0.5s;
    --x-movement: -50px;
    --rotation: -585deg;
}

.heart:nth-child(17) {
    left: 32%;
    animation-delay: 0.8s;
    --x-movement: 65px;
    --rotation: 675deg;
}

.heart:nth-child(18) {
    left: 52%;
    animation-delay: 1.1s;
    --x-movement: -40px;
    --rotation: -495deg;
}

.heart:nth-child(19) {
    left: 72%;
    animation-delay: 1.4s;
    --x-movement: 50px;
    --rotation: 765deg;
}

.heart:nth-child(20) {
    left: 92%;
    animation-delay: 1.7s;
    --x-movement: -60px;
    --rotation: -675deg;
}

@media (max-width: 480px) {
    .fade-message h1 {
        font-size: 2rem;
    }

    .fade-message p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .big-question {
        font-size: 1.8rem;
    }

    .qualities-grid {
        gap: 10px;
    }

    .quality-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .image-placeholder {
        width: 120px;
        height: 120px;
    }

    .love-letter {
        padding: 20px;
    }

    .letter-content {
        padding: 15px;
    }

    .letter-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .time-counter {
        gap: 8px;
        flex-wrap: wrap;
    }

    .time-unit {
        padding: 8px 12px;
        min-width: 55px;
        flex: 1 1 auto;
    }

    .time-value {
        font-size: 1.25rem;
    }

    .time-label {
        font-size: 0.6rem;
    }

    .music-player {
        padding: 15px 12px;
        border-radius: 8px;
    }

    .song-item {
        padding: 10px 12px;
        border-radius: 6px;
        margin-bottom: 8px;
    }

    .song-icon {
        font-size: 1.25rem;
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .song-title {
        font-size: 0.95rem;
        font-weight: 600;
    }

    .song-artist {
        font-size: 0.8rem;
        opacity: 0.8;
    }

    .play-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }

    .now-playing {
        padding: 12px;
        margin-top: 10px;
        border-radius: 6px;
    }

    .now-playing-text {
        font-size: 0.85rem;
        font-weight: 500;
    }
}