:root {
    --primary: #FFB7B2; /* Soft pastel pink */
    --primary-hover: #FF9E99;
    --bg-color: #FFF9F2; /* Warm creamy background */
    --card-bg: rgba(255, 255, 255, 0.85);
    --text-main: #5D4037; /* Warm chocolate brown */
    --text-muted: #8D6E63;
    --accent: #FFD166; /* Sweet yellow */
}

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    /* Cute pattern background */
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 30px 30px;
}

.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

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

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.08);
    border: 3px solid #FFF;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.logo-container {
    margin-bottom: 20px;
    animation: bounce 2s infinite ease-in-out;
}

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

.logo {
    width: 150px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(255, 183, 178, 0.4);
}

.title {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 600;
}

.coming-soon-badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-main);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(255, 209, 102, 0.4);
}

.title-cn {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    display: block;
    margin-top: 10px;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background-color: #1EBE5C;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #FFF;
    color: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(93, 64, 55, 0.05);
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px) rotate(10deg);
}

/* Responsive */
@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }
    .title-cn {
        font-size: 1.6rem;
    }
    .card {
        padding: 40px 20px;
    }
}
