:root {
    --bg1: #1a001a;
    --bg2: #0c000c;
    --accent: #ff007f;
    --accent-soft: rgba(255,0,127,0.2);
    --white-soft: rgba(255,255,255,0.9);
}

* { box-sizing: border-box; }
body, html { height: 100%; margin: 0; font-family: 'Inter', sans-serif; }

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(1000px 600px at 10% 20%, rgba(255,0,127,0.08), transparent),
                radial-gradient(800px 500px at 90% 80%, rgba(255,0,127,0.05), transparent),
                linear-gradient(160deg,var(--bg1),var(--bg2));
    color: #fff;
    overflow: hidden;
    padding: 20px;
}

.container { width: 100%; max-width: 480px; }

.card {
    padding: 48px 32px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 0 40px rgba(255,0,127,0.12), inset 0 0 20px rgba(255,0,127,0.04);
    backdrop-filter: blur(8px);
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.neon-text {
    font-size: clamp(24px, 6vw, 48px);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent), #ff7fcf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 12px rgba(255,0,127,0.25);
    margin-bottom: 24px;
    position: relative;
}

.btn-neon {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #ff4fbf);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(255,0,127,0.3);
    transition: transform .3s ease, box-shadow .3s ease;
}
.btn-neon:hover { transform: scale(1.05); box-shadow: 0 0 28px rgba(255,0,180,0.5); }

.btn-dj {
    display: block;
    margin: 24px auto 0 auto;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff4fbf, #ff007f);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(255,0,127,0.3);
    transition: transform .3s ease, box-shadow .3s ease;
}
.btn-dj:hover { transform: scale(1.05); box-shadow: 0 0 28px rgba(255,0,180,0.5); }

.input-song {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    margin-bottom: 16px;
    font-size: 16px;
}

.song-form { display: flex; flex-direction: column; }

.request-list { text-align: left; max-height: 400px; overflow-y: auto; margin-top: 16px; }

.request-item {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(255,0,127,0.1);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.btn-remove {
    background: #ff007f;
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}
.btn-remove:hover { background: #ff4fbf; }

/* Numerazione nella lista */
.request-number {
    font-weight: bold;
    margin-right: 8px;
    color: #ff4fbf;
}

/* Mobile friendly tweaks */
@media (max-width: 480px) {
    .card {
        padding: 32px 16px;
    }
    .neon-text {
        font-size: clamp(28px, 8vw, 48px);
    }
    .btn-neon, .btn-dj {
        font-size: 16px;
        padding: 14px 28px;
    }
    .input-song {
        font-size: 16px;
        padding: 12px;
    }
    .request-item {
        font-size: 16px;
        padding: 10px 12px;
    }
}
