@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=ZCOOL+XiaoWei&display=swap');

:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --secondary: #81c784;
    --bg-light: #f1f8e9;
    --bg-white: #ffffff;
    --text-primary: #1b5e20;
    --text-secondary: #4e6a51;
    --text-muted: #7a8a7c;
    --border: #c8e6c9;
    --card-shadow: 0 4px 16px rgba(27, 94, 32, 0.08);
    --card-hover-shadow: 0 8px 32px rgba(27, 94, 32, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5 {
    font-family: 'ZCOOL XiaoWei', 'Noto Sans SC', serif;
    color: var(--primary-dark);
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

header {
    background: var(--bg-white);
    box-shadow: 0 2px 12px rgba(27, 94, 32, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo-icon {
    font-size: 32px;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

nav ul li a {
    display: block;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 15px;
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    background: var(--bg-light);
    color: var(--primary-dark);
}

nav ul li a.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-white);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input {
    padding: 10px 16px;
    border: 2px solid var(--border);
    border-radius: 24px;
    font-size: 14px;
    width: 220px;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.header-search input:focus {
    border-color: var(--primary);
    width: 260px;
}

.header-search button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 500;
    font-family: inherit;
    transition: var(--transition);
}

.header-search button:hover {
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-dark);
}

.banner {
    position: relative;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 40%, #4caf50 100%);
    color: white;
    padding: 80px 0 100px;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.banner h1 {
    font-size: 56px;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.banner h1 .mushroom {
    margin-right: 12px;
}

.banner p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.7;
}

.banner-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: 32px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    color: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 32px;
    border-radius: 32px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.section {
    padding: 64px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title .icon {
    font-size: 28px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 15px;
}

.view-all {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.view-all:hover {
    color: var(--primary-dark);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--secondary);
}

.card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

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

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

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.card-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffd54f;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.card-body {
    padding: 18px;
}

.card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--secondary);
}

.category-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.category-icon.green {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.category-icon.light {
    background: linear-gradient(135deg, #81c784, #a5d6a7);
}

.category-icon.dark {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.category-icon.pale {
    background: linear-gradient(135deg, #c8e6c9, #e8f5e9);
}

.category-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.category-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    align-items: center;
}

.filter-label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 14px;
    margin-right: 4px;
}

.filter-chip {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-chip:hover,
.filter-chip.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

.page-header {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
}

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

.breadcrumb .separator {
    color: var(--border);
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 500;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ranking-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.ranking-item:hover {
    box-shadow: var(--card-hover-shadow);
    border-color: var(--secondary);
}

.ranking-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.ranking-item:nth-child(1) .ranking-number {
    background: linear-gradient(135deg, #ff6f00, #ffb300);
}

.ranking-item:nth-child(2) .ranking-number {
    background: linear-gradient(135deg, #455a64, #78909c);
}

.ranking-item:nth-child(3) .ranking-number {
    background: linear-gradient(135deg, #bf360c, #d84315);
}

.ranking-item:nth-child(n+4) .ranking-number {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.ranking-info {
    flex: 1;
    min-width: 0;
}

.ranking-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.ranking-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.ranking-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.ranking-stats .stat {
    text-align: center;
}

.ranking-stats .stat-value {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.ranking-stats .stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.brand-story h2,
.team-section h2,
.partner-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.brand-story p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

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

.feature-list li .check {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

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

.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--card-hover-shadow);
    border-color: var(--secondary);
}

.contact-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-card .contact-info {
    margin-top: 16px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.submit-btn:hover {
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
    transform: translateY(-2px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
}

.team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 16px;
}

.team-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.stat-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.stat-value {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 4px;
}

footer {
    background: var(--primary-dark);
    color: #c8e6c9;
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

.footer-column ul li a {
    color: #c8e6c9;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

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

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination .active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 0;
        gap: 12px;
    }

    nav ul {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 4px;
    }

    nav ul li a {
        padding: 8px 14px;
        font-size: 14px;
    }

    .header-search {
        width: 100%;
    }

    .header-search input {
        flex: 1;
        width: auto;
    }

    .header-search input:focus {
        width: auto;
    }

    .banner {
        padding: 48px 0 64px;
    }

    .banner h1 {
        font-size: 36px;
    }

    .banner p {
        font-size: 16px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .card-body {
        padding: 14px;
    }

    .card-title {
        font-size: 15px;
    }

    .ranking-item {
        flex-wrap: wrap;
        gap: 16px;
    }

    .ranking-stats {
        width: 100%;
        justify-content: space-around;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stat-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-menu-btn {
        display: block;
    }
}