* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffeaf5 0%, #fff0f7 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
}

.splash-content {
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(255, 126, 179, 0.2), 0 5px 15px rgba(124, 77, 255, 0.1);
    padding: 50px 40px;
    text-align: center;
    animation: bounceIn 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border: 3px solid rgba(255, 126, 179, 0.1);
}

@keyframes bounceIn {
    0% { opacity: 0; transform: translateY(50px) scale(0.9); }
    70% { transform: translateY(-10px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.logo-container {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container:after {
    content: "✨";
    position: absolute;
    top: -5px;
    right: calc(50% - 90px);
    font-size: 1.5rem;
    animation: sparkle 2s infinite;
}

.logo-container:before {
    content: "✨";
    position: absolute;
    bottom: 10px;
    left: calc(50% - 90px);
    font-size: 1.5rem;
    animation: sparkle 2s 0.5s infinite;
}

@keyframes sparkle {
    0% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
    100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.logo-style {
    background: linear-gradient(90deg, #ff7eb3, #ff65a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.logo-mind {
    color: #333;
    font-weight: 600;
}

.logo-ai {
    color: #7c4dff;
    font-weight: 300;
}

.tagline {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.tagline:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, rgba(255, 126, 179, 0.3), rgba(124, 77, 255, 0.3));
    border-radius: 10px;
    z-index: -1;
}

.description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    background-color: rgba(255, 240, 247, 0.5);
    padding: 20px;
    border-radius: 15px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    flex: 1 1 200px;
    max-width: 250px;
    padding: 25px 20px;
    background-color: #fff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border: 2px solid rgba(255, 126, 179, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.feature:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff7eb3, #9166ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 126, 179, 0.15);
    border-color: rgba(255, 126, 179, 0.3);
}

.feature:hover:before {
    transform: scaleX(1);
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff7eb3, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.5s ease;
}

.feature:hover i {
    transform: scale(1.2) rotate(5deg);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #444;
}

.feature p {
    font-size: 0.9rem;
    color: #777;
}

.coming-soon {
    margin-bottom: 40px;
    position: relative;
    padding: 30px 0;
}

.coming-soon:before, .coming-soon:after {
    content: "🌟";
    position: absolute;
    font-size: 1.5rem;
}

.coming-soon:before {
    left: calc(50% - 100px);
    top: 0;
}

.coming-soon:after {
    right: calc(50% - 100px);
    top: 0;
}

.coming-soon h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #7c4dff;
    position: relative;
    display: inline-block;
}

.coming-soon h2:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff7eb3, #7c4dff);
    border-radius: 10px;
}

.email-signup {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.email-signup input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 15px 0 0 15px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-signup input:focus {
    border-color: rgba(255, 126, 179, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 126, 179, 0.1);
}

.email-signup button {
    background: linear-gradient(90deg, #ff7eb3, #9166ff);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 0 15px 15px 0;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.email-signup button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #9166ff, #ff7eb3);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.email-signup button:hover:before {
    opacity: 1;
}

.email-signup button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(145, 102, 255, 0.4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    text-decoration: none;
    position: relative;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: linear-gradient(135deg, #ff7eb3, #7c4dff);
    color: white;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.2);
}

/* Cute animation for social icons on hover */
.social-icon:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff7eb3, #7c4dff);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.social-icon:hover:before {
    opacity: 0.2;
    transform: scale(1.5);
}

.mascot {
    position: relative;
    margin-bottom: 15px;
    animation: float 6s ease-in-out infinite;
}

.mascot-image {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 5px 15px rgba(255, 126, 179, 0.3));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.countdown-item {
    background: linear-gradient(135deg, #fff, #fff0f7);
    border: 2px solid rgba(255, 126, 179, 0.2);
    border-radius: 15px;
    padding: 10px;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(255, 126, 179, 0.1);
    position: relative;
    overflow: hidden;
}

.countdown-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff7eb3, #9166ff);
}

.countdown-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #7c4dff;
    text-align: center;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 5px;
}

.button-emoji {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.email-signup button:hover .button-emoji {
    animation: rocket 1s infinite;
}

@keyframes rocket {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

.floating-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bubble {
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 126, 179, 0.2), rgba(124, 77, 255, 0.2));
    animation: float-bubble 8s infinite ease-in;
    opacity: 0.5;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 7s;
    background: linear-gradient(135deg, rgba(255, 126, 179, 0.3), rgba(124, 77, 255, 0.2));
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 25%;
    animation-delay: 3s;
    animation-duration: 10s;
    background: linear-gradient(135deg, rgba(255, 126, 179, 0.2), rgba(124, 77, 255, 0.3));
}

.bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 40%;
    animation-delay: 1s;
    animation-duration: 8s;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.2), rgba(255, 126, 179, 0.3));
}

.bubble:nth-child(4) {
    width: 35px;
    height: 35px;
    left: 65%;
    animation-delay: 4s;
    animation-duration: 11s;
    background: linear-gradient(135deg, rgba(255, 126, 179, 0.3), rgba(124, 77, 255, 0.1));
}

.bubble:nth-child(5) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 9s;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.3), rgba(255, 126, 179, 0.2));
}

@keyframes float-bubble {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.footer {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 126, 179, 0.1);
}

.footer p {
    font-size: 0.9rem;
    color: #888;
}

.heart {
    animation: heartbeat 1.5s infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .splash-content {
        padding: 30px 20px;
    }
    
    .features {
        gap: 20px;
    }
    
    .feature {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .email-signup {
        flex-direction: column;
    }
    
    .email-signup input {
        border-radius: 15px;
        margin-bottom: 10px;
    }
    
    .email-signup button {
        border-radius: 15px;
    }
    
    .logo-container:after,
    .logo-container:before {
        display: none;
    }
} 