* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-light: #ffe4ec;
    --pink-soft: #ffb6c1;
    --pink-main: #ff69b4;
    --pink-dark: #ff1493;
    --purple-light: #f3e5f5;
    --white: #ffffff;
    --gray-bg: #fff9fb;
    --text-dark: #4a2b3a;
    --text-muted: #b5838d;
    --heart: #ff4d6d;
    --success: #7b2cbf;
    --shadow: 0 8px 20px rgba(255, 105, 180, 0.15);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(145deg, var(--pink-light) 0%, var(--purple-light) 100%);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pink-light); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: var(--pink-main); border-radius: 10px; }

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--pink-soft);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--pink-main), var(--pink-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 10px rgba(255,105,180,0.3);
}

.logo span { color: var(--pink-dark); font-weight: 800; }

.nav-menu { display: flex; gap: 2rem; list-style: none; }
.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}
.nav-menu a:hover { color: var(--pink-main); border-bottom-color: var(--pink-main); }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--pink-dark);
}

.hero {
    margin-top: 88px;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    background: radial-gradient(ellipse at 70% 30%, rgba(255, 180, 200, 0.3), transparent 70%);
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    background: linear-gradient(to right, #ff69b4, #ff1493, #b34180);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 2rem;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(95deg, var(--pink-main), var(--pink-dark));
    padding: 1rem 2rem;
    border: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 12px 20px -8px rgba(255, 20, 147, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 20px 30px -8px rgba(255, 20, 147, 0.6); }

.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--pink-main);
    color: var(--pink-dark);
    box-shadow: none;
}
.cta-button-secondary:hover {
    background: var(--pink-main);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -8px rgba(255, 20, 147, 0.3);
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 1.5rem;
    background: rgba(255,255,240,0.7);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255,105,180,0.2);
    border-bottom: 1px solid rgba(255,105,180,0.2);
}
.stat-number { font-size: 2rem; font-weight: 800; color: var(--pink-dark); }
.stat-label { color: var(--text-muted); font-weight: 600; }

/* SEO Article Block */
.seo-article {
    background: rgba(255,245,250,0.85);
    border-radius: 32px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1100px;
    box-shadow: 0 8px 25px rgba(255,105,180,0.1);
    border: 1px solid rgba(255,105,180,0.3);
}
.seo-article h2 {
    font-size: 2rem;
    color: var(--pink-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.seo-article h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
}
.seo-article p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.seo-article .keyword-highlight {
    color: var(--pink-dark);
    font-weight: 600;
}
.seo-article ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-muted);
}
.seo-article li {
    margin: 0.5rem 0;
}

.main-container { max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }

.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-dark);
}
.section-title::after {
    content: '💖';
    font-size: 2rem;
    display: block;
    margin: 0.5rem auto 0;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0.5rem auto 2.5rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.feature-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,105,180,0.2);
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--pink-soft); background: white; }
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #ffe4ec, #ffb6c1);
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3rem;
}
.room-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.8rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,105,180,0.2);
}
.room-card:hover { transform: scale(1.02); border-color: var(--pink-main); }
.room-status { background: #ffb347; color: white; padding: 0.2rem 1rem; border-radius: 40px; font-size: 0.75rem; font-weight: bold; display: inline-block; margin-bottom: 0.8rem; }
.join-btn {
    background: var(--pink-main);
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}
.join-btn:hover { background: var(--pink-dark); transform: scale(1.02); }

.chatexperience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.exp-card {
    background: rgba(255,255,245,0.9);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    border-left: 5px solid var(--pink-main);
    transition: all 0.2s;
}
.exp-card h4 { margin-bottom: 0.5rem; color: var(--pink-dark); display: flex; align-items: center; gap: 8px; }
.exp-card p { color: var(--text-muted); font-size: 0.9rem; }

.faq-item {
    background: rgba(255,255,240,0.9);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.faq-question {
    padding: 1rem 1.5rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    background: rgba(255,200,220,0.3);
    cursor: pointer;
    user-select: none;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-muted);
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 200px; padding: 0 1.5rem 1.2rem 1.5rem; }
.faq-item.active .faq-question { color: var(--pink-dark); background: #ffe4ec; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.testimonial-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before { content: '“'; font-size: 4rem; color: var(--pink-soft); position: absolute; top: 0.5rem; left: 1rem; opacity: 0.5; }

.cta-section {
    background: linear-gradient(125deg, #ffe0e7, #ffc0d0);
    border-radius: var(--radius-xl);
    text-align: center;
    padding: 3rem;
    margin: 3rem 0;
}

.footer {
    background: #2d1f28;
    color: #ffdbeb;
    padding: 3rem 1.5rem 1rem;
    border-top: 3px solid var(--pink-main);
}
.footer a { color: #ffb6c1; text-decoration: none; }
.footer a:hover { color: white; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; margin-top: 1rem; }

.chat-iframe-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    flex-direction: column;
}
.chat-iframe-container.active { display: flex; }
.chat-iframe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #ff69b4;
    color: white;
}
.chat-close-btn {
    background: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    color: #ff1493;
    font-weight: bold;
    cursor: pointer;
}
.chat-iframe-wrapper { flex: 1; width: 100%; }
.chat-iframe-wrapper iframe { width: 100%; height: 100%; border: none; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.mobile-menu a { display: block; padding: 0.8rem; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid #ffe0e7; }

@media (max-width: 800px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 2.4rem; }
}
@media (max-width: 500px) {
    .hero h1 { font-size: 2rem; }
}

