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

body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 20px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 14px;
    opacity: 0.9;
}

/* Navigation Styles */
.navigation {
    background-color: white;
    border-bottom: 3px solid #ff69b4;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin-right: 40px;
}

.nav-menu a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff69b4;
    border-bottom-color: #ff69b4;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Article Styles */
.main-article {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-header h2::before {
    content: "☆";
    color: #ff69b4;
    font-size: 20px;
}

.article-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.article-meta .date {
    color: #ff69b4;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.article-image {
    margin: 30px 0;
    text-align: center;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.article-text {
    margin-top: 20px;
}

.article-text p {
    color: #555;
    line-height: 1.8;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
    color: #ff69b4;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff69b4;
}

.theme-list,
.latest-articles {
    list-style: none;
}

.theme-list li,
.latest-articles li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    transition: color 0.3s ease;
}

.theme-list li:hover,
.latest-articles li:hover {
    color: #ff69b4;
}

.theme-list li:last-child,
.latest-articles li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
    }
    
    .nav-menu li {
        margin-right: 20px;
        margin-bottom: 10px;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .main-article {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-article,
.sidebar-section {
    animation: fadeIn 0.6s ease-out;
}

/* Hover Effects */
.main-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.sidebar-section:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Gallery Page Styles */
.gallery-container {
    max-width: 100%;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-header h2 {
    color: #ff69b4;
    font-size: 28px;
    margin-bottom: 10px;
}

.gallery-header p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #ff69b4;
    background: white;
    color: #ff69b4;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff69b4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.image-container {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.category-tag {
    display: inline-block;
    background: #ff69b4;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-bottom: 10px;
}

.view-btn {
    background: white;
    color: #ff69b4;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #ff69b4;
    color: white;
    transform: scale(1.05);
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0,0,0,0.5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 105, 180, 0.8);
    transform: scale(1.1);
}

#modalImage {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}

.modal-info {
    padding: 20px;
    text-align: center;
}

.modal-info h3 {
    color: #ff69b4;
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-info p {
    color: #666;
    font-size: 16px;
}

/* Featured Page Styles */
.featured-container {
    max-width: 100%;
}

.featured-header {
    text-align: center;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.featured-header h2 {
    color: #ff69b4;
    font-size: 28px;
    margin-bottom: 10px;
}

.featured-header p {
    color: #666;
    font-size: 16px;
}

.featured-hero {
    margin-bottom: 40px;
}

.hero-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-article:hover .hero-image img {
    transform: scale(1.05);
}

.hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff69b4;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.hero-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-category {
    color: #ff69b4;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #999;
}

.read-more-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.featured-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.featured-card:hover .card-image img {
    transform: scale(1.1);
}

.card-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 105, 180, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.card-content {
    padding: 25px;
}

.card-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #999;
}

.card-read-btn {
    background: transparent;
    color: #ff69b4;
    border: 2px solid #ff69b4;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-read-btn:hover {
    background: #ff69b4;
    color: white;
    transform: scale(1.05);
}

.featured-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.trending-section,
.newsletter-section {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trending-section h3,
.newsletter-section h3 {
    color: #ff69b4;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff69b4;
}

.trending-list {
    list-style: none;
}

.trending-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.trending-list li:hover {
    color: #ff69b4;
}

.trending-list li:last-child {
    border-bottom: none;
}

.newsletter-section p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #ff69b4;
}

.newsletter-form button {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff1493;
    transform: scale(1.05);
}

/* All Articles Page Styles */
.all-articles-container {
    max-width: 100%;
}

.all-header {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.all-header h2 {
    color: #ff69b4;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.all-header p {
    color: #666;
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.article-filters {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.filter-group,
.search-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.category-filter,
.sort-filter,
.article-search {
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.category-filter:focus,
.sort-filter:focus,
.article-search:focus {
    border-color: #ff69b4;
}

.search-group {
    flex-direction: row;
    align-items: stretch;
}

.article-search {
    flex: 1;
    border-radius: 25px 0 0 25px;
    border-right: none;
}

.search-btn {
    background: #ff69b4;
    color: white;
    border: 2px solid #ff69b4;
    padding: 10px 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #ff1493;
    border-color: #ff1493;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 105, 180, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #999;
}

.article-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #666;
}

.read-article-btn {
    background: transparent;
    color: #ff69b4;
    border: 2px solid #ff69b4;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.read-article-btn:hover {
    background: #ff69b4;
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    padding: 10px 15px;
    border: 2px solid #eee;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    border-color: #ff69b4;
    color: #ff69b4;
}

.page-btn.active {
    background: #ff69b4;
    border-color: #ff69b4;
    color: white;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

.page-dots {
    color: #999;
    padding: 0 10px;
}

/* Category Page Styles */
.category-container {
    max-width: 100%;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.category-header h2 {
    color: #ff69b4;
    font-size: 28px;
    margin-bottom: 10px;
}

.category-header p {
    color: #666;
    font-size: 16px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 300px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--category-color, #ff69b4) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.category-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.category-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.article-count {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    display: inline-block;
}

.explore-btn {
    background: white;
    color: var(--category-color, #ff69b4);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.category-stats {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stats-header {
    text-align: center;
    margin-bottom: 30px;
}

.stats-header h3 {
    color: #ff69b4;
    font-size: 22px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #fff0f8;
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.stat-info h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.stat-info span {
    color: #666;
    font-size: 14px;
}

/* VIP Page Styles */
.vip-container {
    max-width: 100%;
}

.vip-hero {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: white;
}

.vip-hero-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.vip-hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.vip-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.benefit-icon {
    font-size: 24px;
}

.vip-hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.membership-plans {
    margin-bottom: 50px;
}

.membership-plans h3 {
    text-align: center;
    color: #ff69b4;
    font-size: 28px;
    margin-bottom: 40px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.plan-card.featured {
    border: 3px solid #ff69b4;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff69b4;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 18px;
    color: #666;
}

.amount {
    font-size: 48px;
    font-weight: bold;
    color: #ff69b4;
}

.period {
    font-size: 16px;
    color: #666;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid #ff69b4;
    background: white;
    color: #ff69b4;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.plan-btn:hover,
.premium-btn {
    background: #ff69b4;
    color: white;
}

.premium-btn:hover {
    background: #ff1493;
    border-color: #ff1493;
}

.points-system {
    margin-bottom: 50px;
}

.points-system h3 {
    text-align: center;
    color: #ff69b4;
    font-size: 28px;
    margin-bottom: 40px;
}

.points-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.points-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.points-card h4 {
    color: #ff69b4;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.points-list {
    list-style: none;
}

.points-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.points-list li:last-child {
    border-bottom: none;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.reward-item {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.reward-item:hover {
    background: #fff0f8;
    transform: translateY(-5px);
}

.reward-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.reward-item h5 {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.points-cost {
    color: #ff69b4;
    font-size: 12px;
    font-weight: 500;
}

.vip-testimonials h3 {
    text-align: center;
    color: #ff69b4;
    font-size: 28px;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info span {
    color: #ff69b4;
    font-size: 12px;
    font-weight: 500;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .hero-article {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 30px;
    }

    .featured-sidebar {
        grid-template-columns: 1fr;
    }

    .vip-hero {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }

    .points-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu li {
        margin-right: 15px;
        margin-bottom: 10px;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .main-article {
        padding: 20px;
    }

    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-filters {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Featured page responsive */
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content h3 {
        font-size: 20px;
    }

    /* All articles responsive */
    .article-filters {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Category responsive */
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* VIP responsive */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-card.featured {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vip-hero-content h2 {
        font-size: 28px;
    }

    .vip-hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 15px 0;
    }

    .logo-text h1 {
        font-size: 24px;
    }

    .logo-text p {
        font-size: 12px;
    }

    .nav-menu a {
        padding: 12px 0;
        font-size: 14px;
    }

    .main-article {
        padding: 15px;
    }

    .article-header h2 {
        font-size: 20px;
    }

    .sidebar-section {
        padding: 20px;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-header {
        padding: 20px;
    }

    .gallery-header h2 {
        font-size: 24px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    /* Modal responsive */
    .modal-content {
        margin: 10% auto;
        max-width: 95%;
    }

    .close-modal {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    /* VIP mobile */
    .vip-hero {
        padding: 20px;
    }

    .vip-hero-content h2 {
        font-size: 24px;
    }

    .plan-card {
        padding: 20px;
    }

    .amount {
        font-size: 36px;
    }

    .rewards-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .reward-item img {
        width: 50px;
        height: 50px;
    }

    /* Search responsive */
    .search-group {
        flex-direction: column;
        gap: 10px;
    }

    .article-search {
        border-radius: 25px;
        border-right: 2px solid #eee;
    }

    .search-btn {
        border-radius: 25px;
    }

    /* Pagination responsive */
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }

    .page-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .page-numbers {
        gap: 3px;
    }
}

/* Article Detail Page Styles */
.article-detail-container {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #ff69b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff1493;
}

.breadcrumb span {
    margin: 0 10px;
    color: #999;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

.article-detail {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.article-detail-header {
    padding: 40px;
    border-bottom: 1px solid #eee;
}

.article-category-tag {
    display: inline-block;
    background: #ff69b4;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}

.article-detail h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-left span {
    color: #666;
    font-size: 14px;
}

.meta-right {
    display: flex;
    gap: 15px;
}

.meta-right span {
    color: #666;
    font-size: 14px;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #f8f9fa;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #eee;
}

.article-image-hero {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.article-image-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content-detail {
    padding: 40px;
    line-height: 1.8;
    color: #333;
}

.article-content-detail h3 {
    color: #ff69b4;
    font-size: 20px;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff69b4;
}

.article-content-detail p {
    margin-bottom: 20px;
    font-size: 16px;
}

.article-content-detail ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.article-content-detail li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.article-content-detail li:before {
    content: "•";
    color: #ff69b4;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.article-content-detail strong {
    color: #ff69b4;
    font-weight: 600;
}

.article-footer {
    padding: 30px 40px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

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

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #eee;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.action-btn:hover {
    border-color: #ff69b4;
    color: #ff69b4;
    transform: translateY(-2px);
}

.action-btn.liked,
.action-btn.collected {
    background: #ff69b4;
    border-color: #ff69b4;
    color: white;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-btn {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ff69b4;
    background: white;
    color: #ff69b4;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #ff69b4;
    color: white;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.related-articles {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-articles h3 {
    color: #ff69b4;
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.related-grid {
    display: grid;
    gap: 20px;
}

.related-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: #ff69b4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-card img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.related-content {
    flex: 1;
}

.related-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.related-meta {
    color: #999;
    font-size: 12px;
}

.error-page {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.error-page h2 {
    color: #ff69b4;
    font-size: 24px;
    margin-bottom: 15px;
}

.error-page p {
    color: #666;
    margin-bottom: 25px;
}

.back-btn {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #ff1493;
    transform: translateY(-2px);
}

/* 推荐阅读无内容时的样式 */
.no-related {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eee;
}

.no-related p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

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

.quick-links a {
    display: inline-block;
    padding: 8px 16px;
    background: #ff69b4;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: #ff1493;
    transform: translateY(-2px);
}
