/* Coming Soon Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #000;
}

.content-wrapper {
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cute-character {
    width: 200px;
    height: 200px;
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(255, 255, 255, 0.1));
}

.eye-group {
    transition: transform 0.1s ease-out;
}

.pupil {
    transition: all 0.15s ease-out;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    width: auto;
    object-fit: contain;
}

.text-content {
    margin-top: 2rem;
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

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

.coming-soon-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 1.5rem;
    }
    
    .logo {
        max-height: 150px;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
    
    .character-container {
        margin: 1.5rem 0;
    }
    
    .cute-character {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 1rem;
    }
    
    .logo {
        max-height: 120px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .character-container {
        margin: 1rem 0;
    }
    
    .cute-character {
        width: 120px;
        height: 120px;
    }
}

/* Support for older browsers */
@supports not (-webkit-background-clip: text) {
    .coming-soon-title {
        background: none;
        -webkit-text-fill-color: #fff;
        color: #fff;
    }
}
