body {
    margin: 0;
    background: linear-gradient(180deg, #000, #111);
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    overflow: hidden;
}

.splash {
    position: fixed;
    background: black;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    animation: fadeOut 2s forwards;
    animation-delay: 2s;
}

.splash img {
    width: 200px;
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

.app {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.card {
    background: #121212;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 0 60px rgba(0,255,150,0.15);
}

.logo {
    width: 180px;
}

h1 {
    margin: 15px 0;
    font-weight: 500;
}

.live {
    color: #00ff88;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {opacity: 1;}
    50% {opacity: 0.5;}
    100% {opacity: 1;}
}

.controls button {
    background: #1db954;
    border: none;
    color: white;
    font-size: 30px;
    padding: 15px 25px;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 15px;
}

.now-playing {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.install-btn {
    background: transparent;
    border: 1px solid #1db954;
    color: #1db954;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
}