/* Global styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1b1b1b, #2c3e50);
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: rgba(44, 62, 80, 0.85);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: #f39c12;
}

p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #ecf0f1;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.button {
    width: 220px;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ecf0f1;
    background: #34495e;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background: #f39c12;
    color: #1b1b1b;
    transform: scale(1.05);
}

@media (max-width: 500px) {
    .button {
        width: 80%;
        padding: 15px 0;
    }
    h1 {
        font-size: 2rem;
    }
}
