/* Divano Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --soft-blue: #AEC6CF;
    --night-blue: #2C3E50;
    --cloud-white: #F4F6F6;
    --pj-grey: #BDC3C7;
}

body {
    font-family: 'Comfortaa', sans-serif;
    background-color: var(--soft-blue);
    color: var(--night-blue);
    text-align: center;
    overflow-x: hidden;
}

.clouds-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, var(--cloud-white) 0%, var(--soft-blue) 100%);
    opacity: 0.8;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 2px solid white;
}

.moon-icon {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.header h1 {
    font-size: 3.5rem;
    color: var(--night-blue);
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.8;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input,
select {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid var(--pj-grey);
    background: var(--cloud-white);
    font-family: inherit;
    font-size: 1.1rem;
}

input:focus,
select:focus {
    border-color: var(--night-blue);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    border-radius: 30px;
    background: var(--night-blue);
    color: white;
    border: none;
    font-size: 1.3rem;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #1a252f;
    transform: scale(0.98);
}

.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(174, 198, 207, 0.9);
}

.modal {
    background: rgba(0, 0, 0, 0.8);
}

.hidden {
    display: none !important;
}

.spinner {
    font-size: 5rem;
    animation: breathe 3s infinite;
}

.loading-text {
    font-size: 2rem;
    color: var(--night-blue);
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
}

.error-title {
    font-size: 3rem;
    color: var(--night-blue);
}

.download-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--pj-grey);
    color: var(--night-blue);
    text-decoration: none;
    border-radius: 10px;
    margin: 20px 0;
}

.close-btn {
    padding: 10px 20px;
    background: #eee;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}