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

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: #fff5f5;
    color: #333;
}

header {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(255,107,157,0.3);
}

.logo h1 {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
}

.logo p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: #ffeaa7;
}

.hero {
    background: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=beautiful%20peach%20color%20gradient%20background%20soft%20pink&image_size=landscape_16_9') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1rem !important;
    color: #ffeaa7 !important;
    margin-bottom: 2rem !important;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255,107,157,0.4);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 5%;
    background: white;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: #c44569;
}

.stat-item p {
    color: #666;
    margin-top: 0.25rem;
}

.quick-entries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 5%;
}

.entry-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.entry-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.entry-card h3 {
    padding: 1rem;
    color: #2c3e50;
}

.entry-card p {
    padding: 0 1rem 1rem;
    color: #999;
    font-size: 0.9rem;
}

.trending {
    padding: 3rem 5%;
    background: white;
}

.trending h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trending-item {
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    align-items: center;
}

.trending-item .rank {
    width: 30px;
    height: 30px;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.trending-info {
    flex: 1;
}

.trending-info h4 {
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.trending-info p {
    color: #999;
    font-size: 0.9rem;
}

.page-title {
    padding: 2rem 5%;
    text-align: center;
    background: white;
}

.page-title h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.page-title p {
    color: #666;
}

.featured-categories {
    padding: 1rem 5%;
    background: #f8f9fa;
}

.featured-categories h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.category-tags button {
    padding: 0.6rem 1.5rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.category-tags button.active, .category-tags button:hover {
    background: #ff6b9d;
    color: white;
    border-color: #ff6b9d;
}

.featured-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem 5%;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    color: white;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-info {
    padding: 1.2rem;
}

.video-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.video-info .description {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    gap: 1.5rem;
    color: #999;
    font-size: 0.85rem;
}

.live-categories {
    padding: 1rem 5%;
    background: #f8f9fa;
}

.live-categories h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.live-streams {
    padding: 3rem 5%;
}

.live-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.live-card.featured {
    border: 2px solid #ff6b9d;
}

.live-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: relative;
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f39c12;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.live-info {
    padding: 1.2rem;
}

.streamer-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.streamer-info h3 {
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.streamer-info p {
    color: #999;
    font-size: 0.85rem;
}

.live-title {
    color: #666;
    margin-bottom: 0.7rem;
}

.live-meta {
    display: flex;
    gap: 1.5rem;
}

.live-meta .viewers {
    color: #c44569;
    font-weight: 600;
}

.live-meta .likes {
    color: #27ae60;
    font-weight: 600;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 2rem 5%;
    background: white;
}

.community-content {
    padding: 3rem 5%;
}

.post-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    gap: 1.5rem;
}

.post-card.featured {
    border: 2px solid #ff6b9d;
}

.post-card .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.post-content {
    flex: 1;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.user-info h3 {
    color: #2c3e50;
}

.user-info .level {
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
}

.post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-image {
    margin-bottom: 1rem;
}

.post-image img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.post-meta {
    display: flex;
    gap: 2rem;
    color: #999;
    font-size: 0.9rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 5%;
    background: white;
}

.about-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
}

.about-content li {
    padding: 0.5rem 0;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
}

.about-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: #ff6b9d;
    border-radius: 50%;
}

.feedback-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.feedback-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.feedback-form h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.feedback-form .form-group {
    margin-bottom: 1.5rem;
}

.feedback-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 500;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: #ff6b9d;
}

.feedback-form textarea {
    resize: vertical;
    min-height: 150px;
}

.feedback-form .btn {
    width: 100%;
    text-align: center;
}

.feedback-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    line-height: 2;
    margin-bottom: 0.5rem;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .stats, .community-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .quick-entries, .featured-videos {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .trending-item {
        flex-wrap: wrap;
    }
    
    .post-card {
        flex-direction: column;
    }
    
    .feedback-content {
        grid-template-columns: 1fr;
    }
}
