/* 公共底部导航样式 - 所有页面共用 */

.footer-navbar {
    height: 112px;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* 社交图标和链接之间的间隔 */
.social-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    width: 120px;
    height: auto;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icon {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* X图标尺寸 - 统一设置为25px */
.x-footer-icon {
    width: 25px;
    height: 25px;
}

/* Telegram图标尺寸 - 统一设置为25px */
.tg-footer-icon {
    width: 25px;
    height: 25px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-family: 'BlenderPro', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00F0FF;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-right {
        gap: 15px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-link {
        font-size: 13px;
    }

    /* 移动端图标尺寸调整 - 统一20px */
    .x-footer-icon {
        width: 20px;
        height: 20px;
    }

    .tg-footer-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        gap: 10px;
    }

    .footer-logo {
        width: 80px;
    }

    .footer-right {
        gap: 10px;
    }

    .footer-links {
        gap: 15px;
    }
} 