:root {
    --gold: #c5a059;
    --dark: #1a1a1a;
}

body {
    margin: 0;
    font-family: 'Georgia', serif;
    background: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    z-index: -1;
}

.container {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

p {
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

input {
    padding: 12px;
    width: 250px;
    border: none;
    outline: none;
}

button {
    padding: 12px 24px;
    background: var(--gold);
    border: none;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #b08d48;
}

#message {
    margin-top: 1rem;
    font-size: 0.9rem;
}