.forest-links-section {
    background: linear-gradient(135deg, var(--forest-bg-light) 0%, #f0f8f0 100%);
    padding: 50px 0;
    border-top: 3px solid var(--forest-primary);
    position: relative;
    overflow: hidden;
}

.forest-links-section::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 20" fill="%23e8f5e8"><polygon points="0,20 100,0 100,20"/></svg>') repeat-x;
    background-size: 100px 20px;
    opacity: 0.3;
}

.forest-links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.forest-links-header {
    text-align: center;
    margin-bottom: 40px;
}

.forest-links-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.forest-links-title i {
    font-size: 28px;
    color: var(--forest-primary);
    animation: forestLinkPulse 2s ease-in-out infinite;
}

@keyframes forestLinkPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.forest-links-title h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--forest-text);
    margin: 0;
    letter-spacing: -0.5px;
}

.forest-links-subtitle {
    font-size: 15px;
    color: var(--forest-text-light);
    margin: 0;
    font-weight: 400;
}

.forest-links-content {
    position: relative;
}

.forest-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.link-item.forest-link-hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px var(--forest-shadow-dark);
    border-color: var(--forest-primary);
}

.forest-stats-section {
    background: var(--forest-primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.forest-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: forestStatsShine 3s ease-in-out infinite;
}

@keyframes forestStatsShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.forest-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.forest-stats-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.forest-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.forest-stat-card::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%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.forest-stat-card:hover::before {
    transform: scale(1);
}

.forest-stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.forest-stat-icon2 {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.forest-stat-card:hover .forest-stat-icon2 {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.forest-stat-icon2 i {
    font-size: 32px;
    color: #fff;
}

.forest-stat-info {
    position: relative;
    z-index: 1;
}

.forest-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.forest-stat-label2 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.forest-footer {
    background: linear-gradient(135deg, var(--forest-primary-dark) 0%, #1a2f1a 100%);
    color: #e8e8e8;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.forest-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-secondary) 0%, var(--forest-accent) 50%, var(--forest-secondary) 100%);
}

.forest-footer.forest-footer-loaded {
    animation: forestFooterFadeIn 0.8s ease-out;
}

@keyframes forestFooterFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.forest-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.forest-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    box-sizing: border-box;
}

.forest-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 0;
}

.forest-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    width: fit-content;
}

.forest-footer-logo:hover {
    transform: translateY(-2px);
    color: var(--forest-accent);
}

.forest-footer-logo i {
    font-size: 32px;
    color: var(--forest-secondary);
    transition: all 0.3s ease;
}

.forest-footer-logo:hover i {
    color: var(--forest-accent);
    transform: rotate(5deg);
}

.forest-footer-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.forest-footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #b8b8b8;
    margin: 0;
    max-width: 400px;
}

.forest-footer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.forest-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
    color: #e8e8e8;
    transition: all 0.3s ease;
}

.forest-feature-item:hover {
    background: var(--forest-secondary);
    color: #fff;
    transform: translateY(-1px);
}

.forest-feature-item i {
    font-size: 14px;
    color: var(--forest-secondary);
    transition: color 0.3s ease;
}

.forest-feature-item:hover i {
    color: #fff;
}

.forest-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
}

.forest-nav-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.forest-nav-title2 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 8px;
}

.forest-nav-title2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--forest-secondary);
    border-radius: 1px;
}

.forest-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.forest-nav-list li {
    margin: 0;
}

.forest-nav-list a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: block;
    position: relative;
}

.forest-nav-list a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--forest-secondary);
    transition: width 0.3s ease;
}

.forest-nav-list a:hover::before,
.forest-nav-list a.forest-nav-hover::before {
    width: 10px;
}

.forest-nav-list a:hover,
.forest-nav-list a.forest-nav-hover {
    color: var(--forest-accent);
    padding-left: 20px;
}

.forest-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.forest-contact-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 8px;
}

.forest-contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--forest-secondary);
    border-radius: 1px;
}

.forest-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.forest-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.forest-contact-item:hover,
.forest-contact-item.forest-contact-clicked {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--forest-secondary);
    transform: translateX(5px);
}

.forest-contact-item i {
    font-size: 16px;
    color: var(--forest-secondary);
    width: 20px;
    text-align: center;
}

.forest-contact-item span {
    font-size: 14px;
    color: #b8b8b8;
    transition: color 0.3s ease;
}

.forest-contact-item:hover span {
    color: #e8e8e8;
}

.forest-social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.forest-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.forest-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--forest-secondary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.forest-social-link:hover::before {
    transform: scale(1);
}

.forest-social-link:hover {
    color: #fff;
    border-color: var(--forest-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(82, 196, 26, 0.3);
}

.forest-social-link.forest-social-clicked {
    transform: scale(0.9);
}

.forest-social-link i {
    font-size: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.forest-social-link:hover i {
    transform: scale(1.1);
}

.forest-footer-bottom {
    padding: 30px 0;
    width: 100%;
    box-sizing: border-box;
}

.forest-copyright-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.forest-copyright-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.forest-icp-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}

.forest-icp-info i {
    font-size: 14px;
    color: var(--forest-secondary);
}

.forest-icp-info a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forest-icp-info a:hover {
    color: var(--forest-accent);
}

.forest-copyright-text {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.forest-copyright-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.forest-build-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}

.forest-build-info i {
    font-size: 14px;
    color: var(--forest-secondary);
}

.forest-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px var(--forest-shadow-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.forest-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.forest-back-to-top:hover {
    background: linear-gradient(135deg, var(--forest-secondary) 0%, var(--forest-accent) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(82, 196, 26, 0.4);
}

.forest-back-to-top i {
    font-size: 20px;
    color: #fff;
    margin-bottom: 2px;
}

.forest-back-to-top span {
    font-size: 10px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .forest-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .forest-footer-contact {
        grid-column: 1 / -1;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .forest-links-section {
        padding: 40px 0;
    }

    .forest-links-container,
    .forest-stats-container,
    .forest-footer-container {
        padding: 0 15px;
    }

    .forest-links-title h3 {
        font-size: 22px;
    }

    .forest-stats-section {
        padding: 50px 0;
    }

    .forest-stats-grid2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .forest-stat-card {
        padding: 25px 20px;
    }

    .forest-stat-number {
        font-size: 30px;
    }

    .forest-footer {
        padding: 50px 0 0;
    }

    .forest-footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .forest-footer-features {
        justify-content: center;
    }

    .forest-nav-column {
        text-align: left;
    }

    .forest-nav-title2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .forest-contact-list {
        align-items: center;
    }

    .forest-social-links {
        justify-content: center;
    }

    .forest-copyright-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .forest-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .forest-back-to-top i {
        font-size: 18px;
    }

    .forest-back-to-top span {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .forest-links-section {
        padding: 30px 0;
    }

    .forest-links-container,
    .forest-stats-container,
    .forest-footer-container {
        padding: 0 10px;
    }

    .forest-links-title h3 {
        font-size: 20px;
    }

    .forest-links-subtitle {
        font-size: 14px;
    }

    .forest-stats-section {
        padding: 40px 0;
    }

    .forest-stat-card {
        padding: 20px 15px;
    }

    .forest-stat-icon2 {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .forest-stat-icon2 i {
        font-size: 28px;
    }

    .forest-stat-number {
        font-size: 26px;
    }

    .forest-stat-label2 {
        font-size: 14px;
    }

    .forest-footer {
        padding: 40px 0 0;
    }

    .forest-footer-main {
        gap: 30px;
        padding-bottom: 40px;
    }

    .forest-footer-logo i {
        font-size: 28px;
    }

    .forest-footer-name {
        font-size: 20px;
    }

    .forest-footer-desc {
        font-size: 14px;
    }

    .forest-footer-features {
        gap: 15px;
    }

    .forest-feature-item {
        padding: 6px 12px;
        font-size: 13px;
    }

    .forest-nav-title2 {
        font-size: 16px;
    }

    .forest-contact-title {
        font-size: 16px;
    }

    .forest-social-link {
        width: 40px;
        height: 40px;
    }

    .forest-social-link i {
        font-size: 16px;
    }

    .forest-copyright-info {
        gap: 8px;
    }

    .forest-icp-info,
    .forest-copyright-text,
    .forest-build-info {
        font-size: 12px;
    }

    .forest-back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .forest-back-to-top i {
        font-size: 16px;
    }

    .forest-back-to-top span {
        font-size: 8px;
    }
}

@media (max-width: 320px) {
    .forest-links-grid {
        gap: 10px;
    }

    .forest-stats-grid2 {
        gap: 15px;
    }

    .forest-footer-main {
        gap: 25px;
    }

    .forest-footer-features {
        flex-direction: column;
        align-items: center;
    }

    .forest-social-links {
        gap: 8px;
    }
}

body.forest-dark .forest-links-section {
    background: linear-gradient(135deg, var(--forest-bg-light) 0%, #2a3a2a 100%);
}

body.forest-dark .forest-links-title h3,
body.forest-dark .forest-nav-title2,
body.forest-dark .forest-contact-title {
    color: var(--forest-text);
}

body.forest-dark .forest-links-subtitle,
body.forest-dark .forest-footer-desc,
body.forest-dark .forest-nav-list a,
body.forest-dark .forest-contact-item span {
    color: var(--forest-text-light);
}

body.forest-dark .forest-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.forest-dark .forest-contact-item {
    background: rgba(255, 255, 255, 0.03);
}

body.forest-dark .forest-social-link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

@media (prefers-contrast: high) {

    .forest-stat-card,
    .forest-contact-item,
    .forest-social-link {
        border-width: 2px;
    }

    .forest-nav-list a,
    .forest-social-link {
        outline: 1px solid transparent;
    }

    .forest-nav-list a:hover,
    .forest-social-link:hover {
        outline-color: var(--forest-accent);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .forest-links-section::before,
    .forest-stats-section::before {
        display: none;
    }
}

@media print {

    .forest-links-section,
    .forest-stats-section {
        background: #fff !important;
        color: #000 !important;
    }

    .forest-footer {
        background: #fff !important;
        color: #000 !important;
        border-top: 2px solid #000;
    }

    .forest-back-to-top,
    .forest-social-links {
        display: none !important;
    }
}

.forest-nav-list a:focus,
.forest-contact-item:focus,
.forest-social-link:focus,
.forest-back-to-top:focus {
    outline: 2px solid var(--forest-accent);
    outline-offset: 2px;
}

.forest-footer ::selection {
    background: var(--forest-secondary);
    color: #fff;
}

.forest-footer ::-moz-selection {
    background: var(--forest-secondary);
    color: #fff;
}

.forest-stat-card,
.forest-contact-item,
.forest-social-link,
.forest-back-to-top {
    will-change: transform;
    backface-visibility: hidden;
}

.forest-links-section *,
.forest-stats-section *,
.forest-footer * {
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100vw;
}

.forest-links-container,
.forest-stats-container,
.forest-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.forest-links-grid,
.forest-stats-grid2,
.forest-footer-main {
    width: 100%;
    box-sizing: border-box;
}

.forest-links-section,
.forest-stats-section,
.forest-footer {
    width: 100%;
    overflow-x: hidden;
}

.forest-stat-card,
.forest-nav-column,
.forest-footer-brand,
.forest-footer-contact {
    min-width: 0;
    flex-shrink: 1;
}

@media (max-width: 768px) {

    .forest-links-container,
    .forest-stats-container,
    .forest-footer-container {
        padding: 0 15px;
    }

    .forest-stats-grid2 {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .forest-footer-main {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {

    .forest-links-container,
    .forest-stats-container,
    .forest-footer-container {
        padding: 0 10px;
    }

    .forest-stats-grid2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 1024px) {
    .forest-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .forest-footer-contact {
        grid-column: 1 / -1;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .forest-footer {
        padding: 50px 0 0;
    }

    .forest-footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .forest-footer-brand,
    .forest-footer-nav {
        align-items: center;
    }

    .forest-nav-column {
        text-align: center;
    }

    .forest-nav-title2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .forest-contact-list {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .forest-footer {
        padding: 40px 0 0;
    }

    .forest-footer-main {
        gap: 30px;
        padding-bottom: 40px;
    }

    .forest-footer-features {
        flex-direction: column;
        align-items: center;
    }

    .forest-copyright-info {
        flex-direction: column;
        text-align: center;
    }
}

.forest-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.forest-footer * {
    max-width: 100%;
}

.forest-nav-list a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
}

.forest-stat-card {
    box-sizing: border-box;
    width: 100%;
}

.forest-social-links {
    flex-wrap: wrap;
    justify-content: center;
}