* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

.container {
    text-align: center;
    z-index: 2;
    position: relative;
}

.logo {
    max-width: 250px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px #ff4500, 0 0 20px #ff4500;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-ordenar, .btn-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-ordenar {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    box-shadow: 0 0 15px #00ff00;
}

.btn-ordenar:hover {
    background: linear-gradient(45deg, #00cc00, #00ff00);
    transform: scale(1.1);
    box-shadow: 0 0 25px #00ff00, 0 0 50px #00ff00;
}

.btn-menu {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    box-shadow: 0 0 15px #ff0000;
}

.btn-menu:hover {
    background: linear-gradient(45deg, #cc0000, #ff0000);
    transform: scale(1.1);
    box-shadow: 0 0 25px #ff0000, 0 0 50px #ff0000;
}

/* Canvas para el efecto de llamas */
#flameCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7; /* Alta opacidad para pruebas */
}

/* Media Queries para responsividad */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .btn-ordenar, .btn-menu {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .button-group {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 150px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn-ordenar, .btn-menu {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}