body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #87ceeb 0%, #a0e7ff 100%); /* Cielo azul estilo Angry Birds */
    font-family: "Comic Sans MS", "Segoe UI", Arial, sans-serif;
    text-align: center;
    color: #2b2b2b;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Título estilo Angry Birds */
h2 {
    margin-top: 60px;
    font-size: 48px;
    color: #ff3333; /* Rojo vibrante de los pajaritos */
    font-weight: 700;
    text-shadow: 2px 2px #ffd700; /* Sombras doradas al estilo mexicano festivo */
}

/* Caja estilo panel de juego */
.container {
    margin-top: 50px;
    padding: 40px 55px;
    background: #fff8dc; /* Amarillo pálido tipo arena o madera */
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid #ff6600; /* borde naranja festivo */
}

/* Botón estilo bloque de Angry Birds */
button {
    margin-top: 20px;
    padding: 16px 32px;
    font-size: 18px;
    font-family: inherit;
    color: white;
    background: #ff4444; /* Rojo pajarito */
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

button:hover {
    background: #cc0000;
    transform: scale(1.1) rotate(-2deg);
}

/* Botón secundario estilo mexicano */
.back-btn {
    margin: 30px 0 60px 0;
    padding: 16px 36px;
    font-size: 18px;
    font-family: inherit;
    color: white;
    background: #ffbb33; /* Amarillo festivo */
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.back-btn:hover {
    background: #ffaa00;
    transform: scale(1.1) rotate(2deg);
}