* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Soft, feminine pastel pink mesh gradient */
    background-color: #fdf2f8;
    background-image: 
        radial-gradient(at 0% 0%, hsla(330, 100%, 95%, 1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(340, 100%, 90%, 1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(320, 100%, 93%, 1) 0, transparent 50%);
    background-size: cover;
    background-position: center;
    color: #4c1d95;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

/* Add animated glowing orbs in background for extra Apple feel */
body::before, body::after {
    content: '';
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: #fbcfe8; /* Soft pink */
    filter: blur(120px);
    opacity: 0.6;
    z-index: -1;
    animation: float 10s infinite ease-in-out alternate;
}

body::before {
    top: -10vw;
    left: -10vw;
}

body::after {
    bottom: -10vw;
    right: -10vw;
    background: #fce7f3; /* Very light pink */
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(5vw, 5vw); }
}

.glass-container {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 70px 50px;
    text-align: center;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(219, 39, 119, 0.15); /* Soft pink shadow */
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.brand {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #be185d 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: #9d174d; /* Deep pink */
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 35px;
}

.divider {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(219, 39, 119, 0.3), transparent);
    margin: 0 auto 35px;
}

.coming-soon {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 15px;
    color: #831843;
}

.message {
    font-size: 1.05rem;
    color: #831843;
    margin-bottom: 45px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: #db2777;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 1);
}

.social-links a:hover {
    background: #db2777;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(219, 39, 119, 0.3);
    border-color: #db2777;
}
