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

body {
    font-family: 'Lato', sans-serif;
    color: #FFFFFF;
    background-color: #E320B5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

a {
    color: white;
    font-weight: bold;
}

/* Header con logo */
.header {
    padding: 30px 0;
}

.logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 10px;
    opacity: 0.9;
}

/* Contenuto principale */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.coming-soon {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    text-align: center;
}

/* Footer */
footer {
    background: linear-gradient(to right, #78075E, #A70E83);
    padding: 30px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        width: 120px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 100px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
}