* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin: 10px 0;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-image {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main-content {
    text-align: center;
    margin: 20px 0;
}

.construction-message {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.construction-message h2 {
    font-size: 2.2rem;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: 700;
}

.construction-message p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}



@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Podcast Section */
.podcast-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 20px auto;
    max-width: 450px;
    text-align: center;
}

.podcast-section h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.spotify-embed {
    margin: 10px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.podcast-info {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* WhatsApp Button */

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    background: #128c7e;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 8px;
    }
    
    .logo {
        padding: 12px 18px;
    }
    
    .logo-image {
        width: 70px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .construction-message {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .construction-message h2 {
        font-size: 1.8rem;
    }
    
    .construction-message p {
        font-size: 0.9rem;
    }
    
    .podcast-section {
        padding: 15px 18px;
        margin: 15px 10px;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 60px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .construction-message h2 {
        font-size: 1.5rem;
    }
    
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        padding: 15px;
        border-radius: 50%;
        min-width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn i {
        font-size: 1.8rem;
    }
} 