/* 樱桃涩 - 可爱樱桃风格 */
:root {
    --cherry-pink: #ff6b9d;
    --cherry-pink-light: #ffb3c6;
    --cherry-pink-dark: #e94d7a;
    --cherry-red: #e74c3c;
    --cherry-red-dark: #c0392b;
    --cherry-cream: #fff5f7;
    --cherry-purple: #c39bd3;
    --cherry-purple-dark: #9b59b6;
    --cherry-text: #2c3e50;
    --cherry-text-light: #7f8c8d;
    --cherry-white: #ffffff;
    --cherry-border: #ffd6e0;
}

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

body {
    font-family: 'Segoe UI', 'PingFang SC', sans-serif;
    background: var(--cherry-cream);
    color: var(--cherry-text);
    line-height: 1.7;
}

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

/* Header */
.cherry-header {
    background: linear-gradient(135deg, var(--cherry-pink) 0%, var(--cherry-red) 100%);
    padding: 18px 0;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}

.cherry-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cherry-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cherry-logo-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.cherry-logo-text .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
}

.cherry-logo-text .tagline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 2px;
}

/* Nav */
.cherry-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cherry-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

.cherry-nav a {
    display: block;
    padding: 14px 28px;
    color: var(--cherry-text);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
}

.cherry-nav a::after {
    content: '🍒';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.cherry-nav a:hover::after,
.cherry-nav a.active::after {
    opacity: 1;
}

.cherry-nav a:hover,
.cherry-nav a.active {
    color: var(--cherry-pink);
}

/* Hero */
.cherry-hero {
    background: linear-gradient(180deg, var(--cherry-cream) 0%, var(--cherry-pink-light) 100%);
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.cherry-hero::before {
    content: '🍒 🍒 🍒';
    position: absolute;
    top: 20px;
    opacity: 0.15;
    font-size: 8rem;
    width: 100%;
    text-align: center;
    letter-spacing: 50px;
}

.cherry-hero-content {
    position: relative;
    text-align: center;
}

.cherry-hero-badge {
    display: inline-block;
    background: white;
    color: var(--cherry-pink);
    padding: 8px 22px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.cherry-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--cherry-red);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cherry-hero-title span {
    color: var(--cherry-pink);
}

.cherry-hero-sub {
    color: var(--cherry-text-light);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cherry-hero-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.cherry-btn {
    display: inline-block;
    padding: 14px 38px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 30px;
}

.cherry-btn-primary {
    background: linear-gradient(135deg, var(--cherry-pink), var(--cherry-red));
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.cherry-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
}

.cherry-btn-ghost {
    background: white;
    color: var(--cherry-pink);
    border: 2px solid var(--cherry-pink);
}

.cherry-btn-ghost:hover {
    background: var(--cherry-pink);
    color: white;
}

/* Stats */
.cherry-stats {
    background: white;
    padding: 35px 0;
    margin-top: -30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 20px;
}

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

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

.cherry-stat-num {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--cherry-pink), var(--cherry-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cherry-stat-label {
    color: var(--cherry-text-light);
    margin-top: 5px;
}

/* Section */
.cherry-section { padding: 65px 0; }

.cherry-section-alt { background: white; }

.cherry-section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cherry-section-title span {
    color: var(--cherry-pink);
}

.cherry-section-sub {
    text-align: center;
    color: var(--cherry-text-light);
    letter-spacing: 2px;
    margin-bottom: 45px;
}

/* Cards */
.cherry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

.cherry-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cherry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    border-color: var(--cherry-pink-light);
}

.cherry-card-thumb {
    height: 170px;
    background: linear-gradient(135deg, var(--cherry-pink-light), var(--cherry-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.cherry-card-body { padding: 22px; }

.cherry-card-tag {
    display: inline-block;
    background: var(--cherry-pink-light);
    color: var(--cherry-red);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.82rem;
    margin-bottom: 10px;
}

.cherry-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.cherry-card-body p {
    color: var(--cherry-text-light);
    font-size: 0.95rem;
}

.cherry-card-meta {
    display: flex;
    gap: 18px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--cherry-border);
    font-size: 0.85rem;
    color: var(--cherry-text-light);
}

/* Rank */
.cherry-rank {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.cherry-rank-item {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.cherry-rank-head {
    background: linear-gradient(135deg, var(--cherry-pink), var(--cherry-red));
    color: white;
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cherry-rank-title { font-weight: 600; }
.cherry-rank-tag {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.cherry-rank-body { padding: 22px; }
.cherry-rank-content { display: flex; gap: 18px; }

.cherry-rank-thumb {
    width: 80px; height: 110px;
    background: linear-gradient(135deg, var(--cherry-pink-light), var(--cherry-pink));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.cherry-rank-info h4 { margin-bottom: 6px; }
.cherry-rank-info p { color: var(--cherry-text-light); font-size: 0.88rem; }
.cherry-rank-meta { margin-top: 8px; color: var(--cherry-red); font-weight: 600; font-size: 0.88rem; }

/* Contact */
.cherry-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.cherry-contact-panel {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.cherry-contact-panel h3 {
    color: var(--cherry-red);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.cherry-contact-list { list-style: none; }
.cherry-contact-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cherry-border);
    align-items: center;
}

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

.cherry-contact-icon { font-size: 1.5rem; width: 40px; text-align: center; }
.cherry-contact-label { color: var(--cherry-text-light); font-size: 0.88rem; }
.cherry-contact-value { font-weight: 600; }

.cherry-form { margin-top: 15px; }
.cherry-form-group { margin-bottom: 20px; }

.cherry-form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 500;
}

.cherry-form-group input,
.cherry-form-group textarea,
.cherry-form-group select {
    width: 100%;
    padding: 13px 16px;
    background: var(--cherry-cream);
    border: 2px solid var(--cherry-border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.cherry-form-group input:focus,
.cherry-form-group textarea:focus {
    outline: none;
    border-color: var(--cherry-pink);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.15);
}

.cherry-form-group textarea { resize: vertical; min-height: 120px; }

.cherry-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--cherry-pink), var(--cherry-red));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cherry-submit:hover { box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4); }

/* Footer */
.cherry-footer {
    background: linear-gradient(135deg, var(--cherry-red) 0%, var(--cherry-pink) 100%);
    color: white;
    padding: 55px 0 25px;
    margin-top: 50px;
}

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

.cherry-footer-col h4 {
    color: white;
    margin-bottom: 18px;
}

.cherry-footer-col ul { list-style: none; }
.cherry-footer-col li { margin-bottom: 10px; }

.cherry-footer-col a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.cherry-footer-col a:hover { color: white; }

.cherry-footer-about p { color: rgba(255,255,255,0.85); line-height: 1.8; }

.cherry-footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .cherry-nav ul { flex-direction: column; }
    .cherry-nav a { text-align: center; border-bottom: 1px solid var(--cherry-border); }
    .cherry-hero-title { font-size: 2.4rem; }
    .cherry-contact { grid-template-columns: 1fr; }
}