body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, rgba(71, 200, 255, 0.08), transparent 40%), var(--background-color);
    font-family: 'Rubik', sans-serif;
    color: #fff;
    backdrop-filter: blur(6px);
}

.container {
    width: min(520px, 92vw);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    border-radius: 18px;
    background: rgba(17, 23, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px) saturate(180%);
}

.title {
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

p.title {
    margin: 0;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    flex-direction: row;

}

.title-main {
    color: #fff;
}

.content {
    width: 100%;
    padding: 12px 0 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.message {
    margin: 0;
    font-size: clamp(16px, 3.5vw, 20px);
    color: rgba(255, 255, 255, 0.9);
}

.subtitle {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.4px;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(71, 200, 255, 0.12);
    border: 1px solid rgba(71, 200, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
}

.actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0b0f18;
    background: linear-gradient(135deg, #7c5dff, #47c8ff);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn.red {
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.95), rgba(255, 20, 20, 0.7));
    border-color: rgba(255, 77, 77, 0.75);
    color: #ffe5e5;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, rgba(124, 93, 255, 0.95), rgba(71, 200, 255, 0.95));
    color: #0b0f18;
}

.btn.red:hover {
    background: linear-gradient(135deg, rgba(255, 120, 120, 1), rgba(255, 60, 60, 0.95));
    color: #fff;
    box-shadow: 0 15px 35px rgba(255, 50, 50, 0.35);
}

.btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.25);
    outline-offset: 3px;
}

.red {
    color: #ff4d4d;
}

@media (max-width: 500px) {
    .container {
        padding: 22px 20px;
        gap: 14px;
    }

    .btn {
        font-size: 14px;
    }
}

@media (min-width: 520px) {
    .actions {
        flex-direction: row;
    }
}
