.forest-main-content {
    background: linear-gradient(135deg, var(--forest-bg-light) 0%, #f0f8f0 100%);
    min-height: calc(100vh - 75px);
    padding: 0;
    position: relative;
    overflow: visible !important;
}

.forest-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23e8f5e8" opacity="0.3"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="40" r="1.5"/><circle cx="40" cy="80" r="1"/><circle cx="70" cy="10" r="1.2"/><circle cx="10" cy="60" r="1.8"/></svg>') repeat;
    background-size: 100px 100px;
    opacity: 0.3;
    animation: forestFloat 20s ease-in-out infinite;
}

@keyframes forestFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.forest-main-content.forest-loaded {
    animation: forestMainFadeIn 0.8s ease-out;
}

@keyframes forestMainFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.forest-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.forest-welcome-banner {
    padding: 60px;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-primary-light) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.forest-welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: forestBannerGlow 6s ease-in-out infinite;
}

@keyframes forestBannerGlow {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
}

.forest-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.forest-banner-text {
    flex: 1;
    max-width: 600px;
}

.forest-banner-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.forest-banner-title i {
    font-size: 40px;
    color: var(--forest-accent);
    animation: forestTitlePulse 2s ease-in-out infinite;
}

@keyframes forestTitlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.forest-banner-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
}

.forest-banner-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.forest-banner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.forest-banner-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.forest-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.forest-stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.forest-banner-decoration {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.forest-leaf {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 100% 0 100%;
    animation: forestLeafFloat 4s ease-in-out infinite;
}

.forest-leaf-1 {
    top: 20px;
    left: 30px;
    animation-delay: 0s;
}

.forest-leaf-2 {
    top: 80px;
    right: 40px;
    animation-delay: 1s;
}

.forest-leaf-3 {
    bottom: 30px;
    left: 60px;
    animation-delay: 2s;
}

@keyframes forestLeafFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

.forest-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.forest-content-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.forest-articles-section {
    background: var(--forest-bg);
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--forest-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.forest-articles-section:hover {
    box-shadow: 0 6px 30px var(--forest-shadow-dark);
}

.forest-section-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-primary-light) 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.forest-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.forest-section-title i {
    font-size: 24px;
    color: var(--forest-accent);
}

.forest-section-tabs {
    display: flex;
    gap: 10px;
}

.forest-tab-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forest-tab-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.forest-tab-item.active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.forest-tab-item i {
    font-size: 16px;
}

.forest-articles-container {
    padding: 30px;
}

.forest-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--forest-text-light);
}

.forest-empty-icon {
    margin-bottom: 20px;
}

.forest-empty-icon i {
    font-size: 80px;
    color: #ddd;
    opacity: 0.6;
}

.forest-empty-text h3 {
    font-size: 20px;
    color: var(--forest-text);
    margin: 0 0 10px 0;
}

.forest-empty-text p {
    font-size: 14px;
    color: var(--forest-text-light);
    margin: 0;
}

.forest-articles-grid {
    display: grid;
    gap: 25px;
}

.forest-article-card {
    background: var(--forest-bg-light);
    border: 2px solid var(--forest-border);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.forest-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 90, 39, 0.05), transparent);
    transition: left 0.5s ease;
}

.forest-article-card:hover::before {
    left: 100%;
}

.forest-article-card:hover,
.forest-article-card.forest-card-hover {
    background: var(--forest-bg);
    border-color: var(--forest-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--forest-shadow-dark);
}

.forest-article-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.forest-article-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.forest-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forest-badge-top {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.forest-badge-new {
    background: linear-gradient(135deg, var(--forest-secondary) 0%, var(--forest-accent) 100%);
}

.forest-badge-hot {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
}

.forest-article-number {
    width: 35px;
    height: 35px;
    background: var(--forest-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.forest-article-content {
    margin-bottom: 20px;
}

.forest-article-title {
    margin: 0 0 15px 0;
}

.forest-article-title a {
    font-size: 18px;
    font-weight: 600;
    color: var(--forest-text);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
}

.forest-article-title a:hover {
    color: var(--forest-primary);
}

.forest-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.forest-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--forest-text-light);
}

.forest-meta-item i {
    font-size: 14px;
    color: var(--forest-primary);
}

.forest-article-footer {
    display: flex;
    justify-content: flex-end;
}

.forest-read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--forest-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forest-read-more:hover {
    background: var(--forest-primary-dark);
    transform: translateX(3px);
}

.forest-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.forest-read-more:hover i {
    transform: translateX(2px);
}

.forest-content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
    align-self: start;
}

.forest-sidebar-card {
    background: var(--forest-bg);
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--forest-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.forest-sidebar-card:hover {
    box-shadow: 0 6px 30px var(--forest-shadow-dark);
    transform: translateY(-2px);
}

.forest-card-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-primary-light) 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forest-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.forest-card-title i {
    font-size: 20px;
    color: var(--forest-accent);
}

.forest-card-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.forest-card-more:hover {
    color: #fff;
    gap: 6px;
}

.forest-card-content {
    padding: 30px;
}

.forest-profile-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.forest-profile-avatar {
    position: relative;
    flex-shrink: 0;
}

.forest-profile-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--forest-primary);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.forest-profile-avatar:hover img {
    transform: scale(1.05);
}

.forest-avatar-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: var(--forest-secondary);
    border: 2px solid var(--forest-bg);
    border-radius: 50%;
    animation: forestStatusPulse 2s ease-in-out infinite;
}

@keyframes forestStatusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.forest-profile-info {
    flex: 1;
}

.forest-profile-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--forest-text);
    margin: 0 0 8px 0;
}

.forest-profile-bio {
    font-size: 14px;
    color: var(--forest-text-light);
    line-height: 1.5;
    margin: 0;
}

.forest-profile-stats {
    border-top: 2px solid var(--forest-border);
    padding-top: 20px;
}

.forest-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.forest-stat-item {
    text-align: center;
    padding: 15px 10px;
    background: var(--forest-bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.forest-stat-item:hover {
    background: var(--forest-primary);
    color: #fff;
    transform: translateY(-2px);
}

.forest-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--forest-primary);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.forest-stat-item:hover .forest-stat-value {
    color: #fff;
}

.forest-stat-label {
    font-size: 12px;
    color: var(--forest-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.forest-stat-item:hover .forest-stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.forest-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.forest-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--forest-bg-light);
    border: 1px solid var(--forest-border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--forest-text);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.forest-category-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 90, 39, 0.1), transparent);
    transition: left 0.4s ease;
}

.forest-category-item:hover::before {
    left: 100%;
}

.forest-category-item:hover,
.forest-category-item.forest-category-clicked {
    background: var(--forest-bg);
    border-color: var(--forest-primary);
    color: var(--forest-primary);
    transform: translateX(5px);
}

.forest-category-icon {
    width: 35px;
    height: 35px;
    background: var(--forest-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.forest-category-item:hover .forest-category-icon {
    background: var(--forest-secondary);
    transform: scale(1.1);
}

.forest-category-icon i {
    font-size: 16px;
}

.forest-category-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.forest-category-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.forest-category-count {
    font-size: 12px;
    color: var(--forest-text-light);
}

.forest-category-arrow {
    font-size: 14px;
    color: var(--forest-text-lighter);
    transition: all 0.3s ease;
}

.forest-category-item:hover .forest-category-arrow {
    color: var(--forest-primary);
    transform: translateX(3px);
}

.forest-sites-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.forest-sites-list::-webkit-scrollbar {
    width: 6px;
}

.forest-sites-list::-webkit-scrollbar-track {
    background: var(--forest-bg-light);
    border-radius: 3px;
}

.forest-sites-list::-webkit-scrollbar-thumb {
    background: var(--forest-primary);
    border-radius: 3px;
}

.forest-site-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--forest-bg-light);
    border: 1px solid var(--forest-border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.forest-site-item:hover,
.forest-site-item.forest-site-hover {
    background: var(--forest-bg);
    border-color: var(--forest-primary);
    transform: translateX(3px);
}

.forest-site-rank {
    width: 28px;
    height: 28px;
    background: var(--forest-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.forest-site-content {
    flex: 1;
    min-width: 0;
}

.forest-site-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-text);
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 4px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.forest-site-title:hover {
    color: var(--forest-primary);
}

.forest-site-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.forest-site-time,
.forest-site-views {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--forest-text-light);
}

.forest-site-time i,
.forest-site-views i {
    font-size: 12px;
    color: var(--forest-primary);
}

.forest-empty-sites {
    text-align: center;
    padding: 40px 20px;
    color: var(--forest-text-light);
}

.forest-empty-sites i {
    font-size: 40px;
    color: #ddd;
    margin-bottom: 10px;
}

.forest-empty-sites p {
    font-size: 14px;
    margin: 0;
}

.forest-quick-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.forest-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    background: var(--forest-bg-light);
    border: 1px solid var(--forest-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--forest-text);
    transition: all 0.3s ease;
    text-align: center;
}

.forest-nav-item:hover,
.forest-nav-item.forest-nav-hover {
    background: var(--forest-primary);
    color: #fff;
    border-color: var(--forest-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--forest-shadow);
}

.forest-nav-icon {
    width: 45px;
    height: 45px;
    background: var(--forest-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.forest-nav-item:hover .forest-nav-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.forest-nav-icon i {
    font-size: 20px;
}

.forest-nav-item span {
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .forest-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .forest-content-sidebar {
        order: 1;
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .forest-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .forest-banner-decoration {
        width: 150px;
        height: 150px;
    }

    .forest-section-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .forest-section-tabs {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .forest-container {
        padding: 0 15px;
    }

    .forest-welcome-banner {
        padding: 40px 0;
        margin-bottom: 30px;
    }

    .forest-banner-title {
        font-size: 28px;
    }

    .forest-banner-title i {
        font-size: 32px;
    }

    .forest-banner-desc {
        font-size: 16px;
    }

    .forest-banner-stats {
        gap: 20px;
        justify-content: center;
    }

    .forest-banner-stat {
        padding: 12px 16px;
    }

    .forest-stat-num {
        font-size: 24px;
    }

    .forest-banner-decoration {
        display: none;
    }

    .forest-content-layout {
        gap: 25px;
    }

    .forest-section-header {
        padding: 25px 20px;
    }

    .forest-section-title {
        font-size: 20px;
    }

    .forest-articles-container,
    .forest-card-content {
        padding: 20px;
    }

    .forest-article-card {
        padding: 20px;
    }

    .forest-article-title a {
        font-size: 16px;
    }

    .forest-profile-section {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .forest-profile-avatar img {
        width: 70px;
        height: 70px;
    }

    .forest-stat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .forest-stat-value {
        font-size: 20px;
    }

    .forest-quick-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .forest-nav-item {
        padding: 15px 10px;
    }

    .forest-nav-icon {
        width: 40px;
        height: 40px;
    }

    .forest-nav-icon i {
        font-size: 18px;
    }

    .forest-nav-item span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .forest-container {
        padding: 0 10px;
    }

    .forest-welcome-banner {
        padding: 30px 0;
        margin-bottom: 20px;
    }

    .forest-banner-title {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }

    .forest-banner-desc {
        font-size: 14px;
    }

    .forest-banner-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .forest-banner-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .forest-banner-stat {
        width: 100%;
        max-width: 200px;
    }

    .forest-content-layout {
        gap: 20px;
    }

    .forest-section-header {
        padding: 20px 15px;
    }

    .forest-section-title {
        font-size: 18px;
    }

    .forest-articles-container,
    .forest-card-content {
        padding: 15px;
    }

    .forest-article-card {
        padding: 15px;
    }

    .forest-article-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .forest-article-badges {
        justify-content: center;
    }

    .forest-article-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin: 0 auto;
    }

    .forest-article-title a {
        font-size: 15px;
        text-align: center;
    }

    .forest-article-meta {
        justify-content: center;
        gap: 15px;
    }

    .forest-meta-item {
        font-size: 12px;
    }

    .forest-read-more {
        padding: 6px 12px;
        font-size: 12px;
    }

    .forest-content-sidebar {
        gap: 20px;
    }

    .forest-card-header {
        padding: 20px;
    }

    .forest-card-title {
        font-size: 16px;
    }

    .forest-card-content {
        padding: 20px;
    }

    .forest-profile-section {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .forest-profile-avatar img {
        width: 60px;
        height: 60px;
    }

    .forest-profile-name {
        font-size: 18px;
    }

    .forest-profile-bio {
        font-size: 13px;
    }

    .forest-stat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .forest-stat-item {
        padding: 12px 8px;
    }

    .forest-stat-value {
        font-size: 18px;
    }

    .forest-stat-label {
        font-size: 11px;
    }

    .forest-category-item {
        padding: 10px 12px;
    }

    .forest-category-icon {
        width: 30px;
        height: 30px;
    }

    .forest-category-icon i {
        font-size: 14px;
    }

    .forest-category-name {
        font-size: 13px;
    }

    .forest-category-count {
        font-size: 11px;
    }

    .forest-site-item {
        padding: 10px 12px;
    }

    .forest-site-rank {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .forest-site-title {
        font-size: 13px;
    }

    .forest-site-meta {
        gap: 8px;
    }

    .forest-site-time,
    .forest-site-views {
        font-size: 10px;
    }

    .forest-quick-nav {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .forest-nav-item {
        padding: 15px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
    }

    .forest-nav-icon {
        width: 35px;
        height: 35px;
    }

    .forest-nav-icon i {
        font-size: 16px;
    }

    .forest-nav-item span {
        font-size: 12px;
    }

    .forest-empty-sites {
        padding: 30px 15px;
    }

    .forest-empty-sites i {
        font-size: 32px;
    }

    .forest-empty-sites p {
        font-size: 12px;
    }

    @media (max-width: 320px) {
        .forest-container {
            padding: 0 8px;
        }

        .forest-welcome-banner {
            padding: 25px 0;
            margin-bottom: 15px;
        }

        .forest-banner-title {
            font-size: 22px;
        }

        .forest-banner-desc {
            font-size: 13px;
        }

        .forest-banner-stats {
            gap: 12px;
        }

        .forest-banner-stat {
            padding: 10px 12px;
        }

        .forest-stat-num {
            font-size: 20px;
        }

        .forest-stat-text {
            font-size: 12px;
        }

        .forest-content-layout {
            gap: 15px;
        }

        .forest-section-header {
            padding: 15px 12px;
        }

        .forest-section-title {
            font-size: 16px;
        }

        .forest-tab-item {
            padding: 8px 12px;
            font-size: 12px;
        }

        .forest-articles-container,
        .forest-card-content {
            padding: 12px;
        }

        .forest-article-card {
            padding: 12px;
        }

        .forest-article-meta {
            flex-direction: column;
            gap: 8px;
        }

        .forest-card-header {
            padding: 15px;
        }

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

        .forest-profile-avatar img {
            width: 50px;
            height: 50px;
        }

        .forest-profile-name {
            font-size: 16px;
        }

        .forest-stat-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
        }

        .forest-stat-item {
            padding: 10px 6px;
        }

        .forest-stat-value {
            font-size: 16px;
        }

        .forest-stat-label {
            font-size: 10px;
        }

        .forest-category-item {
            padding: 8px 10px;
        }

        .forest-site-item {
            padding: 8px 10px;
        }

        .forest-nav-item {
            padding: 12px;
        }
    }

    body.forest-dark .forest-main-content {
        background: linear-gradient(135deg, var(--forest-bg-light) 0%, #1a2a1a 100%);
    }

    body.forest-dark .forest-welcome-banner {
        background: linear-gradient(135deg, var(--forest-primary-dark) 0%, #1e3a1a 100%);
    }

    body.forest-dark .forest-articles-section,
    body.forest-dark .forest-sidebar-card {
        background: var(--forest-bg);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    body.forest-dark .forest-article-card,
    body.forest-dark .forest-stat-item,
    body.forest-dark .forest-category-item,
    body.forest-dark .forest-site-item,
    body.forest-dark .forest-nav-item {
        background: var(--forest-bg-light);
        border-color: var(--forest-border);
    }

    body.forest-dark .forest-article-title a,
    body.forest-dark .forest-site-title,
    body.forest-dark .forest-nav-item span {
        color: var(--forest-text);
    }

    body.forest-dark .forest-article-meta,
    body.forest-dark .forest-site-meta,
    body.forest-dark .forest-category-count {
        color: var(--forest-text-light);
    }

    @media (prefers-contrast: high) {

        .forest-article-card,
        .forest-stat-item,
        .forest-category-item,
        .forest-site-item,
        .forest-nav-item {
            border-width: 2px;
        }

        .forest-article-title a,
        .forest-site-title,
        .forest-nav-item {
            font-weight: 600;
        }

        .forest-read-more,
        .forest-tab-item {
            border: 2px solid currentColor;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .forest-main-content::before,
        .forest-welcome-banner::before,
        .forest-leaf {
            display: none;
        }

        .forest-avatar-status {
            animation: none;
        }
    }

    @media print {
        .forest-main-content {
            background: #fff !important;
            color: #000 !important;
        }

        .forest-welcome-banner {
            background: #f0f0f0 !important;
            color: #000 !important;
            border: 2px solid #000;
        }

        .forest-banner-title,
        .forest-section-title,
        .forest-card-title {
            color: #000 !important;
        }

        .forest-article-card,
        .forest-sidebar-card {
            break-inside: avoid;
            border: 1px solid #000;
            box-shadow: none !important;
        }

        .forest-articles-grid {
            display: block;
        }

        .forest-content-sidebar {
            display: none;
        }

        .forest-read-more,
        .forest-tab-item,
        .forest-card-more {
            display: none;
        }
    }

    .forest-tab-item:focus,
    .forest-article-title a:focus,
    .forest-read-more:focus,
    .forest-category-item:focus,
    .forest-site-title:focus,
    .forest-nav-item:focus {
        outline: 2px solid var(--forest-accent);
        outline-offset: 2px;
    }

    .forest-main-content ::selection {
        background: var(--forest-secondary);
        color: #fff;
    }

    .forest-main-content ::-moz-selection {
        background: var(--forest-secondary);
        color: #fff;
    }

    .forest-article-card,
    .forest-stat-item,
    .forest-category-item,
    .forest-site-item,
    .forest-nav-item {
        will-change: transform;
        backface-visibility: hidden;
    }

    .forest-main-content * {
        box-sizing: border-box;
    }

    .forest-loading {
        opacity: 0.6;
        pointer-events: none;
    }

    .forest-loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: forestLoading 1.5s ease-in-out infinite;
    }

    @keyframes forestLoading {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(100%);
        }
    }

    .forest-error {
        background: #ffe6e6 !important;
        border-color: #ff6b6b !important;
        color: #d63031 !important;
    }

    .forest-error-icon {
        color: #d63031;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .forest-success {
        background: #e8f5e8 !important;
        border-color: var(--forest-secondary) !important;
        color: var(--forest-primary) !important;
    }

    .forest-success-icon {
        color: var(--forest-secondary);
        font-size: 24px;
        margin-bottom: 10px;
    }

    .forest-disabled {
        opacity: 0.5;
        pointer-events: none;
        cursor: not-allowed;
    }

    .forest-text-center {
        text-align: center;
    }

    .forest-text-left {
        text-align: left;
    }

    .forest-text-right {
        text-align: right;
    }

    .forest-mt-1 {
        margin-top: 0.5rem;
    }

    .forest-mt-2 {
        margin-top: 1rem;
    }

    .forest-mt-3 {
        margin-top: 1.5rem;
    }

    .forest-mt-4 {
        margin-top: 2rem;
    }

    .forest-mb-1 {
        margin-bottom: 0.5rem;
    }

    .forest-mb-2 {
        margin-bottom: 1rem;
    }

    .forest-mb-3 {
        margin-bottom: 1.5rem;
    }

    .forest-mb-4 {
        margin-bottom: 2rem;
    }

    .forest-hidden {
        display: none !important;
    }

    .forest-visible {
        display: block !important;
    }

    .forest-sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .forest-custom-scroll::-webkit-scrollbar {
        width: 8px;
    }

    .forest-custom-scroll::-webkit-scrollbar-track {
        background: var(--forest-bg-light);
        border-radius: 4px;
    }

    .forest-custom-scroll::-webkit-scrollbar-thumb {
        background: var(--forest-primary);
        border-radius: 4px;
    }

    .forest-custom-scroll::-webkit-scrollbar-thumb:hover {
        background: var(--forest-primary-dark);
    }

    .forest-lazy-load {
        background: var(--forest-bg-light);
        position: relative;
        overflow: hidden;
    }

    .forest-lazy-load::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: forestLoading 1.5s ease-in-out infinite;
    }

    .forest-skeleton {
        background: linear-gradient(90deg, var(--forest-bg-light) 25%, var(--forest-bg) 50%, var(--forest-bg-light) 75%);
        background-size: 200% 100%;
        animation: forestSkeleton 1.5s ease-in-out infinite;
        border-radius: 4px;
    }

    @keyframes forestSkeleton {
        0% {
            background-position: 200% 0;
        }

        100% {
            background-position: -200% 0;
        }
    }

    .forest-skeleton-text {
        height: 1em;
        margin-bottom: 0.5em;
    }

    .forest-skeleton-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .forest-skeleton-rect {
        height: 100px;
        border-radius: 8px;
    }

    .forest-fade-enter {
        opacity: 0;
        transform: translateY(20px);
    }

    .forest-fade-enter-active {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .forest-fade-exit {
        opacity: 1;
        transform: translateY(0);
    }

    .forest-fade-exit-active {
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .forest-scale {
        transition: transform 0.3s ease;
    }

    .forest-scale:hover {
        transform: scale(1.02);
    }

    .forest-rotate {
        transition: transform 0.3s ease;
    }

    .forest-rotate:hover {
        transform: rotate(5deg);
    }

    .forest-blink {
        animation: forestBlink 2s ease-in-out infinite;
    }

    @keyframes forestBlink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.5;
        }
    }

    .forest-breathe {
        animation: forestBreathe 3s ease-in-out infinite;
    }

    @keyframes forestBreathe {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .forest-skeleton,
        .forest-lazy-load::before,
        .forest-fade-enter-active,
        .forest-fade-exit-active,
        .forest-scale,
        .forest-rotate,
        .forest-blink,
        .forest-breathe {
            animation: none !important;
            transition: none !important;
        }
    }
}

.forest-article-content {
    display: flex;
    flex-direction: column;
    gap: 25px;

}