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

body {

    font-family: Arial, Helvetica, sans-serif;

    background:

        linear-gradient(135deg,
            #121212,
            #1a1a2e);

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 100vh;

}

.container {

    width: 90%;

    max-width: 420px;

    background: #1E1E1E;

    padding: 2rem;

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .45);

    border: 1px solid rgba(255, 255, 255, .05);

}

h1 {

    text-align: center;

    margin-bottom: .5rem;

}
.subtitle {

    text-align: center;

    color: var(--text-secondary);

    font-size: 1rem;

    font-weight: 500;

    margin-bottom: 2rem;

}
p {

    text-align: center;

    margin-bottom: 2rem;

}

label {

    display: block;

    margin-top: 1.2rem;

    margin-bottom: .55rem;

    font-weight: 600;

    color: var(--text);

}

input {

    width: 100%;

    padding: 1rem;

    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, .08);

    background: rgba(255, 255, 255, .03);

    color: var(--text);

    font-size: 1rem;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .2s ease;

}

input:focus {

    outline: none;

    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(139, 92, 246, .20);

}

button {

    margin-top: 2rem;

    width: 100%;

    padding: 1rem;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-hover));

    box-shadow:
        0 10px 25px rgba(124, 58, 237, .30);

    color: white;

    border: none;

    border-radius: 10px;

    cursor: pointer;

    font-size: 1rem;

    font-weight: bold;

    transition:
        transform .2s ease,
        opacity .2s ease,
        box-shadow .2s ease;

}

button:hover {

    transform: translateY(-2px);

    opacity: 1;

    box-shadow:
         0 14px 30px rgba(124, 58, 237, .45);

}

button:active {

    transform: scale(.98);

}

.container {

    animation: fadeIn .5s ease;

}
.message {

    margin-top: 1rem;

    padding: 1rem;

    border-radius: 12px;

    text-align: center;

    font-weight: 600;

    font-size: 1.05rem;

}
.message.error {

    background:
        rgba(239,68,68,.15);

    color:
        #FCA5A5;

    border:
        1px solid rgba(239,68,68,.35);

    font-size: 1.15rem;

    font-weight: 700;

}

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}
.request-status-card {

    background: var(--surface);

    border-radius: 18px;

    padding: 2rem;

    box-shadow:
        0 12px 30px rgba(0,0,0,.35);

    border: 1px solid rgba(255,255,255,.05);

    animation: fadeIn .4s ease;

}

.request-status-card h2 {

    text-align: center;

    margin-bottom: 1rem;

}

.request-divider {

    height: 1px;

    background: rgba(255,255,255,.08);

    margin: 1rem 0 1.5rem;

}

.request-song {

    font-size: 1.35rem;

    font-weight: 700;

    text-align: left;

    margin-bottom: 1.5rem;

}

.request-info {

    text-align: left;

    color: var(--text-secondary);

    margin-bottom: .8rem;

    overflow-wrap: anywhere;

}

.request-status-badge {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: .75rem 1.2rem;

    margin: 1.5rem auto 0;

    border-radius: 999px;

    background: var(--warning);

    color: white;

    font-weight: 700;

}

.request-status-card {

    display: flex;

    flex-direction: column;

}
.badge-pending {

    background: var(--warning);

}

.badge-called {

    background: var(--success);

}