:root {
    --primary-color: #DC143C; /* Crimson Red for Red Peach */
    --secondary-color: #FF69B4; /* Hot Pink */
    --accent-color: #FFD700; /* Gold Accent */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #fff0f5; /* Lavender Blush */
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(220, 20, 60, 0.15);
}

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

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo::before {
    content: '♥'; /* Heart symbol for Red Peach */
    display: inline-block;
    font-size: 24px;
    margin-right: 8px;
    color: var(--primary-color);
}

.site-nav ul {
    display: flex;
    gap: 20px;
}

.site-nav a {
    font-size: 16px;
    font-weight: 500;
}

.site-nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 18px;
    opacity: 0.95;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.section-title h2 {
    font-size: 24px;
    color: var(--text-dark);
}

.more {
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
}

/* Video Grid & Cards */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.video-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.2);
}

.img-wrapper {
    width: 100%;
    height: 150px;
    background-color: #eee;
    position: relative;
}

/* Gradient Box */
.gradient-box {
    width: 100%;
    height: 100%;
}

.card-info {
    padding: 15px;
}

.card-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-dark);
}

.card-info p {
    font-size: 12px;
    color: var(--text-light);
}

/* Article Section */
.article-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.seo-article {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid #ffc0cb;
}

.seo-article h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.seo-article p {
    font-size: 15px;
    color: var(--text-light);
    text-indent: 2em;
    text-align: justify;
}

/* Footer */
.site-footer {
    background-color: #2b2b2b;
    color: #f0f0f0;
    padding: 50px 0 30px;
    margin-top: 50px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-content p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    margin: 0 15px;
    font-size: 14px;
    color: #ccc;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 12px;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .site-nav {
        display: none; 
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .img-wrapper {
        height: 100px;
    }
}
