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

body {
    background-color: #f7fbff;
    color: #4a4a4a;
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    overflow: hidden; /* Hide scrollbars for floating effect */
}

h1, h2, h3, h4 {
    font-family: 'Fredoka', sans-serif;
}

/* Animated Gradient Background */
.coming-soon-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(-45deg, #ff9a9e, #fecfef, #a1c4fd, #c2e9fb);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    padding: 20px;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Content Box */
.content-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 40px;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    width: 100%;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.6);
    z-index: 10;
    animation: popIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform: scale(0);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes popIn {
    to { transform: scale(1); }
}

/* Interactive Logo */
.logo {
    font-size: 38px;
    font-weight: 900;
    color: #3b3b3b;
    letter-spacing: 1px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-block;
}

.logo:hover {
    transform: scale(1.08) rotate(-3deg);
}

.logo span {
    color: #ff5252;
}

/* Main Message Area */
.main-message h2 {
    font-size: 42px;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 19px;
    color: #555;
    margin-bottom: 25px;
    font-weight: 600;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Visual Divider */
.divider {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}

.divider span {
    width: 12px;
    height: 12px;
    background-color: #e2e8f0;
    border-radius: 50%;
}

.divider span:nth-child(2) {
    background-color: #cbd5e1;
}

/* Collaboration Section */
.collab-section {
    width: 100%;
    margin-bottom: 25px;
}

.collab-section h3 {
    font-size: 24px;
    color: #2d3436;
    margin-bottom: 8px;
}

.collab-section p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 20px;
}

/* Email CTA Button */
.email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #2d3436;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid #e9ecef;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.email-btn .icon {
    margin-right: 10px;
    font-size: 20px;
}

.email-btn:hover {
    background-color: #ffffff;
    border-color: #4ecdc4;
    color: #4ecdc4;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.15);
}

/* Interactive Hint */
.interactive-hint {
    font-size: 13px;
    color: #a0a0a0;
    margin-top: 15px;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Floating Bubbles (JS Generated) */
.bubble {
    position: absolute;
    bottom: -100px;
    z-index: 1;
    user-select: none;
    cursor: pointer;
    animation: floatUp linear forwards;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
    transition: transform 0.2s;
}

.bubble:hover {
    transform: scale(1.2);
}

@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
}

/* Mobile Responsiveness (Cross-platform UI) */
@media (max-width: 768px) {
    .coming-soon-wrapper {
        padding: 15px;
    }
    
    .content-box {
        padding: 40px 20px;
        border-radius: 28px;
    }
    
    .logo { font-size: 32px; margin-bottom: 15px; }
    
    .main-message h2 { font-size: 34px; }
    
    .description {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .divider {
        margin: 20px 0;
    }
    
    .collab-section h3 { font-size: 22px; }
    
    .email-btn {
        font-size: 16px;
        padding: 12px 20px;
        width: 100%; /* Full width on very small screens */
        max-width: 300px;
    }
}
