/* Dieta Styles */
* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #FFD700;
    color: #D84315;
    text-align: center;
    margin: 0;
}

h1,
h2,
h3 {
    font-family: 'Chewy', cursive;
}

.junk-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle, #FFA000 0%, #FF6F00 100%);
    opacity: 0.2;
}

.bounce-in {
    animation: bounce 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

@keyframes bounce {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.container {
    max-width: 650px;
    margin: 40px auto;
    padding: 20px;
}

.header {
    background: #fff;
    padding: 20px;
    border-radius: 50px;
    border: 8px solid #FF5722;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.header h1 {
    font-size: 3.5rem;
    color: #FF3D00;
    margin: 0;
}

.header p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
}

.form-container {
    background: #FFF3E0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-top: 10px solid #FF9800;
    border-bottom: 10px solid #E65100;
}

.form-container h2 {
    font-size: 2.5rem;
    color: #BF360C;
    margin-top: 0;
}

.input-line {
    text-align: left;
    margin-bottom: 25px;
}

label {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    color: #3E2723;
    margin-bottom: 8px;
}

input,
select {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: 2px solid #FFCC80;
    font-size: 1.1rem;
    text-align: center;
}

input:focus,
select:focus {
    border-color: #FF5722;
    outline: none;
}

.burger-btn {
    width: 100%;
    padding: 20px;
    background: #4CAF50;
    color: white;
    border: none;
    font-size: 1.8rem;
    font-family: 'Chewy', cursive;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 0 #2E7D32;
    transition: 0.1s;
}

.burger-btn:hover {
    background: #66BB6A;
    transform: translateY(2px);
    box-shadow: 0 6px 0 #2E7D32;
}

.burger-btn:active {
    transform: translateY(8px);
    box-shadow: 0 0 0 #2E7D32;
}

.overlay,
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay {
    background: rgba(255, 152, 0, 0.9);
}

.modal {
    background: rgba(0, 0, 0, 0.85);
}

.hidden {
    display: none !important;
}

.spinner {
    font-size: 5rem;
    animation: spin-eat 1.5s infinite alternate;
}

@keyframes spin-eat {
    0% {
        transform: scale(1) rotate(-10deg);
    }

    100% {
        transform: scale(1.3) rotate(10deg);
    }
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 30px;
    border: 8px solid #FF5722;
    max-width: 500px;
    text-align: center;
}

.pop-anim {
    animation: pop 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes pop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.download-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #FF9800;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    margin: 20px 0;
    font-family: 'Chewy', cursive;
    font-size: 1.5rem;
}

#close-modal {
    padding: 10px 20px;
    background: #ddd;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Chewy', cursive;
    font-size: 1.5rem;
}