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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.danger-button {
    background-color: #ff0000;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 2rem 4rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.3);
}

.danger-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(255, 0, 0, 0.4);
}

.danger-button:active {
    transform: scale(0.98);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

#message {
    color: #ff6b6b;
    font-size: 1.2rem;
    min-height: 1.5em;
    font-weight: 500;
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .danger-button {
        font-size: 1.2rem;
        padding: 1.5rem 3rem;
    }
}