/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0f2f, #1a223f);
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.title {
    font-size: 4em;
    color: #d4af37;
    text-shadow: 2px 2px 10px #000000aa, 0 0 20px #d4af37bb;
    animation: glow 2s infinite alternate;
}

.subtitle {
    font-size: 1.5em;
    margin: 20px 0 50px;
    color: #eee;
}

/* BOTONES */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.buttons button {
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    background: linear-gradient(145deg, #d4af37, #fff4b1);
    color: #0a0f2f;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px #d4af37aa, 0 5px 10px #00000055;
}

.buttons button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #d4af37ff, 0 10px 20px #00000066;
}

/* FOOTER */
footer {
    text-align: center;
    margin-top: auto;
    padding: 20px 0;
    color: #aaa;
}

/* ANIMACIÓN GLOW */
@keyframes glow {
    from { text-shadow: 2px 2px 10px #000000aa, 0 0 20px #d4af37bb; }
    to { text-shadow: 2px 2px 20px #000000cc, 0 0 40px #d4af37ff; }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .title {
        font-size: 3em;
    }
    .subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
    }
    .buttons button {
        font-size: 1em;
        padding: 12px 25px;
    }
}
