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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafbfc;
}

.content-container-wrapper-p5k9m {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header-navigation-w3m7v {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #ffecd2 100%);
    box-shadow: 0 2px 15px rgba(255,154,158,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-navigation-bar-q8v2k {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.brand-logo-section-r4p7m {
    flex-shrink: 0;
}

.site-brand-title-s9k3v a {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.site-brand-title-s9k3v a:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 20px rgba(255,255,255,0.5);
}

.navigation-menu-list-t2m8p {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.menu-link-normal-v3p9m,
.menu-link-normal-w8k2v,
.menu-link-normal-x4v7p,
.menu-link-normal-y9m3k,
.menu-link-normal-z5p8v,
.menu-link-active-u7v4k {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.menu-link-normal-v3p9m:hover,
.menu-link-normal-w8k2v:hover,
.menu-link-normal-x4v7p:hover,
.menu-link-normal-y9m3k:hover,
.menu-link-normal-z5p8v:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.menu-link-active-u7v4k {
    background: rgba(255,255,255,0.3);
}

.hero-banner-section-a2k7m {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container-b8v3p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-image-container-b8v3p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,154,158,0.7) 0%, rgba(250,208,196,0.7) 100%);
}

.hero-content-overlay-c4m9k {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-main-heading-d7p2v {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-subtitle-text-e3k8m {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-action-buttons-f9v4p {
    display: flex;
    gap: 1.2rem;
}

.primary-cta-button-g2m7k,
.secondary-outline-button-h8p3v {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-cta-button-g2m7k {
    background: #fff;
    color: #ff6b9d;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.primary-cta-button-g2m7k:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255,255,255,0.5);
}

.secondary-outline-button-h8p3v {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.secondary-outline-button-h8p3v:hover {
    background: #fff;
    color: #ff6b9d;
}

.featured-content-section-i4k9m,
.lifestyle-categories-section-v7k2p,
.popular-posts-section-c3v8m,
.community-showcase-section-m5p9k {
    padding: 5rem 0;
}

.section-title-heading-j7v2p {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #2c3e50;
    position: relative;
}

.section-title-heading-j7v2p::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff9a9e 0%, #fecfef 100%);
    border-radius: 2px;
}

.content-grid-layout-k3m8v {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.content-card-item-l9p4k {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.content-card-item-l9p4k:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255,107,157,0.15);
}

.card-image-wrapper-m2v7p {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-cover-image-n8k3m {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.content-card-item-l9p4k:hover .card-cover-image-n8k3m {
    transform: scale(1.08);
}

.category-badge-tag-o4p9v {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,107,157,0.95);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255,107,157,0.3);
}

.card-text-content-p7m2k {
    padding: 1.8rem;
}

.card-content-title-q3v8p {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.4;
}

.card-description-text-r9k4m {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.card-meta-info-s2p7v {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #95a5a6;
}

.categories-grid-layout-w3m8v {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card-box-x9p4k {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.category-card-box-x9p4k:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,107,157,0.12);
}

.category-icon-circle-y2v7m {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.category-title-text-z8k3p {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.category-desc-text-a4m9v {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-link-button-b7p2k {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-link-button-b7p2k:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,157,0.3);
}

.posts-list-container-d9k4p {
    display: grid;
    gap: 2rem;
}

.post-card-horizontal-e2m7v {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.post-card-horizontal-e2m7v:hover {
    box-shadow: 0 8px 30px rgba(255,107,157,0.12);
}

.post-thumbnail-image-f8p3k {
    width: 320px;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}

.post-content-area-g4v9m {
    padding: 2rem;
    flex: 1;
}

.post-title-heading-h7k2p {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.post-excerpt-text-i3m8v {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.post-meta-bar-j9p4k {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #95a5a6;
}

.community-grid-layout-n2v7m {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.community-item-card-o8k3p {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.community-item-card-o8k3p:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,107,157,0.12);
}

.community-image-cover-p4m9v {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.community-info-text-q7p2k {
    padding: 1.5rem;
}

.community-user-name-r3v8m {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ff6b9d;
}

.community-share-desc-s9k4p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.site-footer-section-t6m2v {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content-grid-u9p7k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title-heading-w8v2p {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-description-text-x4m9k {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-links-list-y7p3v,
.footer-contact-list-a9v4p {
    list-style: none;
}

.footer-link-item-z2k8m {
    color: #ecf0f1;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-link-item-z2k8m:hover {
    opacity: 1;
    color: #ff9a9e;
    transform: translateX(3px);
}

.contact-info-item-b3m7k {
    opacity: 0.85;
    margin-bottom: 0.6rem;
}

.footer-bottom-bar-c8p2v {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright-text-content-d4k9m {
    font-size: 0.9rem;
    opacity: 0.75;
}

@media (max-width: 768px) {
    .navigation-menu-list-t2m8p {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .hero-main-heading-d7p2v {
        font-size: 2.2rem;
    }

    .hero-subtitle-text-e3k8m {
        font-size: 1.1rem;
    }

    .content-grid-layout-k3m8v,
    .categories-grid-layout-w3m8v,
    .community-grid-layout-n2v7m {
        grid-template-columns: 1fr;
    }

    .post-card-horizontal-e2m7v {
        flex-direction: column;
    }

    .post-thumbnail-image-f8p3k {
        width: 100%;
        height: 240px;
    }
}