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

body {
    font-family: 'Arial', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a1a, #2d1b2e, #1a1a1a);
    min-height: 100vh;
}

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

.header {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #8e44ad;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(142, 68, 173, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #8e44ad;
    object-fit: cover;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8e44ad;
    text-shadow: 0 0 10px rgba(142, 68, 173, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 25px;
}

.nav-menu a:hover {
    color: #8e44ad;
    background: rgba(142, 68, 173, 0.1);
    transform: translateY(-2px);
}

.main-content {
    margin-top: 80px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8e44ad;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(142, 68, 173, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8e44ad, transparent);
    margin: 20px auto;
}

.hero-section {
    text-align: center;
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(142, 68, 173, 0.1), transparent);
}

.hero-title {
    font-size: 4rem;
    color: #8e44ad;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(142, 68, 173, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(142, 68, 173, 0.8); }
    to { text-shadow: 0 0 50px rgba(142, 68, 173, 1), 0 0 60px rgba(142, 68, 173, 0.8); }
}
.hero-subtitle {
    font-size: 1.5rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-img {
    width: 200px;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid #8e44ad;
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(142, 68, 173, 0.5);
}

.hot-news-section, .star-secrets-section, .entertainment-section, 
.exclusive-section, .latest-section, .community-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(142, 68, 173, 0.2);
}

.news-grid, .secrets-grid, .exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.news-card, .secret-card, .exclusive-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(142, 68, 173, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-card:hover, .secret-card:hover, .exclusive-card:hover {
    transform: translateY(-10px);
    border-color: #8e44ad;
    box-shadow: 0 20px 40px rgba(142, 68, 173, 0.4);
}

.card-img, .secret-img, .exclusive-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .card-img, 
.secret-card:hover .secret-img, 
.exclusive-card:hover .exclusive-img {
    transform: scale(1.1);
}

.card-content, .secret-content {
    padding: 30px;
}

.card-content h3, .secret-content h3, .exclusive-card h3 {
    color: #8e44ad;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card-content p, .secret-content p, .exclusive-card p {
    color: #c0c0c0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.exclusive-card {
    padding: 30px;
    text-align: center;
}

.exclusive-card h3 {
    margin-top: 20px;
}

.entertainment-content {
    max-width: 1000px;
    margin: 0 auto;
}

.gossip-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.gossip-item:nth-child(even) {
    flex-direction: row-reverse;
}

.gossip-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #8e44ad;
    flex-shrink: 0;
}

.gossip-text h3 {
    color: #8e44ad;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.gossip-text p {
    color: #c0c0c0;
    line-height: 1.8;
}

.latest-news {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    background: rgba(30, 30, 30, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(142, 68, 173, 0.3);
}

.news-thumb {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.news-info h3 {
    color: #8e44ad;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.news-info p {
    color: #c0c0c0;
    line-height: 1.8;
}

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

.stat-item {
    background: rgba(30, 30, 30, 0.8);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(142, 68, 173, 0.3);
    text-align: center;
}

.stat-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.stat-item h3 {
    color: #8e44ad;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.stat-item p {
    color: #c0c0c0;
    line-height: 1.8;
}

.footer {
    background: rgba(15, 15, 15, 0.95);
    border-top: 2px solid #8e44ad;
    padding: 60px 0 20px;
    margin-top: 50px;
}

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

.footer-section h3 {
    color: #8e44ad;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8e44ad;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(142, 68, 173, 0.3);
    color: #888;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-images {
        justify-content: center;
    }
    
    .hero-img {
        width: 150px;
        height: 120px;
    }
    
    .news-grid, .secrets-grid, .exclusive-grid {
        grid-template-columns: 1fr;
    }
    
    .gossip-item {
        flex-direction: column;
        text-align: center;
    }
    
    .gossip-item:nth-child(even) {
        flex-direction: column;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}