* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #141414;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 100rem;
    width: 100%;
    padding: 3rem;
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

h1 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
    letter-spacing: 2px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.button, .button-admin {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.button {
    background-color: #e50914;
    color: white;
}

.button:hover {
    background-color: #f40612;
    transform: translateY(-5px);
}

.button-admin {
    background-color: transparent;
    color: #ddd;
    border: 2px solid #666;
}

.button-admin:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: #999;
    transform: translateY(-5px);
}

@media (min-width: 600px) {
    .buttons {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .button, .button-admin {
        min-width: 220px;
    }
}
