/* 字体声明 */
@font-face {
    font-family: 'MiSans';
    src: url('fonts/MiSansLatin-Heavy.ttf') format('truetype');
    unicode-range: U+0000-007F, U+0080-00FF, U+0100-017F; /* 英文字符范围 */
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'MiSans';
    src: url('fonts/MiSans-Heavy.ttf') format('truetype');
    unicode-range: U+4E00-9FFF; /* 中文字符范围 */
    font-weight: 800;
    font-display: swap;
}

/* 全局样式 */
:root {
    --primary-color: #324eef;
    --secondary-color: #20B0E3;
    --text-color: #1d1d1f;
    --bg-color: #ffffff;
    --gradient-start: rgba(245, 245, 247, 0.85);
    --gradient-end: rgba(255, 255, 255, 0.85);
    --blur-strength: 20px;
}

/* 载入动画 */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.CI-OPEN {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'MiSans', -apple-system, BlinkMacSystemFont, "PingFang SC", "HarmonyOS Sans SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
}

/* 导航栏样式 */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 42%;
    min-width: 520px;
    height: 60px;
    background: rgba(235, 235, 235, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background-color, box-shadow;
    border: 1px solid rgba(230, 230, 230, 0.2);
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
}

.header.scrolled {
    background: rgba(235, 235, 235, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 230, 230, 0.3);
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo样式 */
.logo {
    position: relative;
    left: 0;
    z-index: 2;
}

.logo-home {
    display: block;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    will-change: transform;
}

/* 调整Logo大小 */
.logo-img {
    height: 48px;
    width: auto;
    padding: 4px;
}

/* 导航栏容器 */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 100%;
    padding: 0 4px;
}

/* 导航链接容器 */
.nav-links-container {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
}

/* 调整导航链接大小 */
.nav-link {
    font-size: 15px;
    padding: 6px 0;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    opacity: 0.75;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: scale(1);
    will-change: transform;
    display: inline-block;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.2px;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
    text-decoration: none;
}

.nav-link:visited {
    color: var(--text-color);
}

.nav-link:active {
    transform: scale(0.95);
    transition-duration: 0.1s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.2s ease;
    transform-origin: left center;
}

.nav-link:hover::after {
    width: 100%;
}

/* Logo悬停效果 */
.logo-home:hover {
    transform: scale(1.1);
}

.logo-home:active {
    transform: scale(0.95);
    transition-duration: 0.1s;
}

/* 联系按钮样式 */
.contact-btn-wrapper {
    position: relative;
    right: 0;
    z-index: 2;
}

/* 调整联系按钮大小 */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 100px;
    background: rgba(50, 78, 239, 0.9);
    color: #fff !important;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    will-change: transform;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(50, 78, 239, 0.25);
    border: none;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    letter-spacing: 0.3px;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(50, 78, 239, 0.3);
    background: rgba(50, 78, 239, 1);
}

.contact-btn:active {
    transform: scale(0.95);
    transition-duration: 0.1s;
}

/* 移动端菜单样式 */
.nav-mobile {
    display: none;
}

.menu-btn {
    width: 24px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.menu-btn span:first-child {
    top: 25%;
}

.menu-btn span:last-child {
    bottom: 25%;
}

.menu-btn.active span:first-child {
    transform: translateY(6px) rotate(45deg);
}

.menu-btn.active span:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

/* 移动端菜单展开样式 */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.header.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu-links a {
    font-size: 28px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-links a span {
    display: block;
    transition: transform 0.3s ease;
}

.mobile-menu-links a small {
    font-size: 14px;
    color: #86868b;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.mobile-menu-links a:hover span {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.mobile-menu-links a:hover small {
    opacity: 1;
}

.header.menu-open .mobile-menu-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-links a:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-links .contact-btn {
    margin-top: 32px;
    padding: 10px 24px;
    font-size: 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(50, 78, 239, 0.25);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.mobile-menu-links .contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(50, 78, 239, 0.3);
}

.mobile-menu-links .contact-btn:active {
    transform: scale(0.95);
    transition-duration: 0.1s;
}

.mobile-menu-links .contact-btn small {
    display: none;
}

/* 主要内容区样式 */
.main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

/* 背景效果 */
.main::before {
    display: none;
}

.main::after {
    display: none;
}

/* 首屏区域 */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    background-color: #ffffff;
}

/* 球体背景样式 */
.floating-ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0;
    pointer-events: none;
    animation: fadeIn 1s ease-out forwards;
}

.ball-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.9), rgba(255, 142, 83, 0.9));
    top: 25%;
    right: 100px;
    animation: 
        fadeIn 1s ease-out 1.3s forwards,
        floatBall1 15s ease-in-out infinite;
}

.ball-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(102, 152, 255, 0.9), rgba(139, 117, 255, 0.9));
    top: 40%;
    right: 200px;
    animation: 
        fadeIn 1s ease-out 1.4s forwards,
        floatBall2 18s ease-in-out infinite;
}

.ball-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(139, 117, 255, 0.9), rgba(255, 107, 107, 0.9));
    top: 55%;
    right: 150px;
    animation: 
        fadeIn 1s ease-out 1.5s forwards,
        floatBall3 20s ease-in-out infinite;
}

.ball-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, rgba(32, 176, 227, 0.9), rgba(102, 152, 255, 0.9));
    top: 35%;
    right: 300px;
    animation: 
        fadeIn 1s ease-out 1.6s forwards,
        floatBall4 17s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.3;
    }
}

@keyframes floatBall1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 25px); }
}

@keyframes floatBall2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25px, -20px); }
}

@keyframes floatBall3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 15px); }
}

@keyframes floatBall4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 24px;
    text-align: center;
}

.hero-title h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 8px;
    background: linear-gradient(
        to right,
        #6698FF,  /* 浅蓝色开始 */
        #8B75FF,  /* 紫色过渡 */
        #FF6B6B   /* 红色结束 */
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 8s ease infinite;
    opacity: 0;
    animation: 
        gradientFlow 8s ease infinite,
        fadeInUp 0.8s ease-out 0.5s forwards;
}

.hero-title h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    background: linear-gradient(
        to right,
        #6698FF,  /* 浅蓝色开始 */
        #8B75FF,  /* 紫色过渡 */
        #FF6B6B   /* 红色结束 */
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    background-size: 200% auto;
    animation: 
        gradientFlow 8s ease infinite 0.2s,
        fadeInUp 0.8s ease-out 0.7s forwards;
}

.hero p {
    font-size: 20px;
    margin-bottom: 48px;
    color: #86868b;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

/* 按钮波纹效果 */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.primary-btn, .secondary-btn {
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    text-align: center;
    transform: scale(1);
    will-change: transform;
    cursor: pointer;
}

.primary-btn {
    background: #000000;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.primary-btn:hover, .secondary-btn:hover {
    transform: scale(1.1);
}

.primary-btn:hover {
    background: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.12);
}

/* 点击效果 */
.primary-btn:active, .secondary-btn:active {
    transform: scale(0.95);
    transition-duration: 0.1s;
}

/* 功能卡片区样式 */
.features {
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-color);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: #86868b;
    line-height: 1.6;
}

/* 页脚样式 */
.footer {
    background: #e5e5e5;
    padding: 60px 20px 30px;
    position: relative;
    z-index: 1;
    border-top-left-radius: 38px;
    border-top-right-radius: 38px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 60px; /* 为底部版权信息留出空间 */
}

.footer-info {
    text-align: left;
    margin-bottom: 24px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.contact-info {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
}

.info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #000000;
}

.remixicon-heo-zc0v8q {
    width: 20px !important;
    height: 20px !important;
}

.info-text {
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
}

.footer-info p {
    color: #000000;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.social-link {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: #000000;
}

.social-link:hover {
    transform: scale(1.2);
}

.social-link.github:hover {
    color: #333333;
}

.social-link.telegram:hover {
    color: #0088cc;
}

.social-link.email:hover {
    color: #324eef;
}

.social-link.qq:hover {
    color: #eb1c26;
}

.social-icon {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* 友情链接样式 */
.friend-links {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.friend-links h3 {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.friend-links-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex: 1;
}

.friend-link {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 2px 4px;
    transition: all 0.2s ease;
}

.friend-link:hover {
    color: #007AFF;
    transform: scale(1.05);
}

.friend-link span {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

.friend-link small {
    display: none;
}

.footer-bottom {
    position: relative;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-bottom p, 
.footer-bottom a {
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom a img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

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

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

/* 添加按钮动画关键帧 */
@keyframes buttonPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .header {
        width: 60%;
        min-width: 500px;
    }

    .nav-links-container {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .header {
        width: calc(100% - 32px);
        min-width: auto;
        top: 16px;
        height: 56px;
    }

    .header-container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 0 2px;
    }

    .nav-desktop {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    :root {
        --blur-strength: 15px;
    }

    .hero::before,
    .hero::after {
        width: 50%;
        height: 50%;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 22px;
        margin-bottom: 36px;
    }

    .primary-btn, .secondary-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-links a {
        font-size: 24px;
    }

    .mobile-menu-links a small {
        font-size: 13px;
    }

    .mobile-menu-links .contact-btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .logo {
        position: static;
    }

    .contact-btn-wrapper {
        position: static;
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-links-container {
        display: none;
    }

    .contact-btn-wrapper {
        position: static;
        margin-left: auto;
    }

    .mobile-menu .contact-btn {
        width: 100%;
        max-width: 200px;
        margin: 20px auto 0;
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
    }
}

/* 添加触摸设备的特殊处理 */
@media (hover: none) {
    .primary-btn:hover, .secondary-btn:hover,
    .nav-desktop .contact-btn:hover,
    .mobile-menu-links .contact-btn:hover {
        transform: scale(1);
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
}

/* 触摸设备处理 */
@media (hover: none) {
    .nav-link:hover,
    .logo-home:hover,
    .nav-desktop .contact-btn:hover {
        transform: scale(1);
    }
    
    .nav-link:hover::after {
        width: 0;
    }
}

/* 移动端样式 */
@media (max-width: 768px) {
    .header {
        width: calc(100% - 32px);
        background: rgba(245, 245, 245, 0.5);
    }

    .header.scrolled {
        background: rgba(245, 245, 245, 0.8);
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-links-container {
        display: none;
    }

    .contact-btn-wrapper {
        display: none; /* 隐藏顶部导航栏的联系按钮 */
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .mobile-menu-links a {
        font-size: 24px;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header.menu-open .mobile-menu {
        opacity: 1;
        visibility: visible;
    }

    .header.menu-open .mobile-menu-links a {
        opacity: 1;
        transform: translateY(0);
    }

    /* 移除移动端菜单中的联系按钮 */
    .mobile-menu-links .contact-btn {
        display: none;
    }
}

/* 确保在大屏幕上显示联系按钮 */
@media (min-width: 769px) {
    .contact-btn-wrapper {
        display: block;
    }
}

/* 渐变背景动画 */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-title h1 {
    background-size: 200% auto;
    animation: gradientFlow 8s ease infinite;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 48px;
    }

    .hero-title h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title h1 {
        font-size: 36px;
    }

    .hero-title h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

.hero-description {
    font-size: 20px;
    margin-bottom: 48px;
    color: #86868b;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.hero-description:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-1px);
}

.hero-description:hover .arrow {
    animation: arrowBounceHover 0.6s infinite;
    color: var(--primary-color);
}

.arrow {
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.3s ease;
    animation: arrowBounce 2s infinite;
    color: #86868b;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

@keyframes arrowBounceHover {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(12px);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-description {
        font-size: 18px;
        margin-bottom: 36px;
    }

    .arrow {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .arrow {
        font-size: 18px;
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .info-icon,
    .remixicon-heo-zc0v8q {
        width: 18px !important;
        height: 18px !important;
    }

    .info-text,
    .footer-info p {
        font-size: 13px;
    }
}

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.github-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-color);
    transition: fill 0.3s ease;
}

.github-btn:hover .github-icon {
    fill: var(--primary-color);
}

.github-btn span {
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .github-icon {
        width: 18px;
        height: 18px;
    }
    
    .github-btn span {
        font-size: 14px;
    }
}

/* 推荐尝鲜区域 */
.featured {
    min-height: 100vh;
    width: 100%;
    padding: 100px 20px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.featured-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #86868b;
    font-weight: 500;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 -20px;
    padding: 0 20px;
    position: relative;
}

.featured-grid::-webkit-scrollbar {
    display: none;
}

.featured-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.card-text {
    margin-bottom: 30px;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-text h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
}

.card-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-link .arrow {
    margin-left: 8px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.card-link:hover .arrow {
    transform: translateX(5px);
}

.card-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    margin: 0 -5%;
    position: relative;
}

.card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    transform: scale(1.2);
}

.featured-nav {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn:not(:disabled):hover {
    background: #f5f5f7;
    border-color: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-color);
}

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 18px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-card {
        padding: 30px;
        min-height: 350px;
    }

    .card-text h3 {
        font-size: 24px;
    }

    .card-link {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .card-image {
        width: 110%;
        margin: 0 -5%;
    }
    
    .card-image img {
        transform: scale(1.1);
    }
}

/* 第三屏工具展示 */
.tools-showcase {
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.tools-content {
    max-width: 1400px;
    margin: 0 auto;
    width: calc(100% - 80px);
    background-color: #000B1D;
    border-radius: 32px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* 添加背景渐变效果 */
.tools-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(32, 176, 227, 0.1), transparent 60%);
    z-index: 1;
}

.tools-text {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.tools-text .label {
    display: inline-block;
    font-size: 16px;
    color: #FFB800;
    margin-bottom: 20px;
    font-weight: 500;
}

.tools-text h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tools-text p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.tools-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.tool-btn {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tool-btn:first-child {
    background: rgba(0, 106, 255, 0.8);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.tool-btn.tool-btn-dark {
    background: #ffffff;
    color: #000B1D;
}

.tool-btn:hover {
    transform: scale(1.1);
}

.tools-image {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.devices-img {
    width: auto;
    height: 380px;
    object-fit: contain;
    max-width: 100%;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    animation: floatIcon 6s ease-in-out infinite;
}

.icon1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon2 { top: 20%; right: 15%; animation-delay: 1s; }
.icon3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.icon4 { bottom: 10%; right: 10%; animation-delay: 3s; }

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

@media (max-width: 1200px) {
    .tools-content {
        width: calc(100% - 40px);
        padding: 60px 40px;
    }
    
    .tools-text {
        max-width: 600px;
    }
    
    .devices-img {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .tools-showcase {
        padding: 40px 20px;
    }

    .tools-content {
        width: calc(100% - 20px);
        padding: 40px 20px;
    }

    .tools-text {
        margin-bottom: 40px;
    }

    .tools-text h2 {
        font-size: 36px;
    }

    .tools-text p {
        font-size: 16px;
    }

    .devices-img {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .devices-img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .devices-img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .devices-img {
        height: 200px;
    }
}

@media (max-width: 1200px) {
    .tools-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .tools-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .tools-image {
        height: 220px;
    }
}

/* 应用展示区域 */
.apps-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.apps-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    text-align: left;
}

.section-desc {
    font-size: 18px;
    color: #86868b;
    margin-bottom: 48px;
    text-align: left;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    position: relative;
    border: none;
    background: none;
    transition: all 0.3s ease;
}

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

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-info {
    flex: 1;
    padding-left: 10px;
}

.app-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background-color: #006AFF;
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.app-btn:hover {
    transform: scale(1.1);
    background-color: #0055CC;
}

.tag-new {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 8px;
    background-color: #34C759;
    color: #ffffff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .apps-section {
        padding: 60px 20px;
    }

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

    .section-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .app-card {
        padding: 16px 0;
    }

    .app-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .app-icon {
        width: 60px;
        height: 60px;
    }
}

/* TrollStore展示区域 */
.troll-section {
    margin: 60px 0;
}

.troll-section .tools-content {
    background: linear-gradient(135deg, #006AFF 0%, #ffffff 100%);
}

.troll-section .tools-text h2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000000;
    letter-spacing: -0.02em;
}

.troll-section .tools-text p {
    font-size: 24px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    font-weight: 500;
}

.troll-section .tool-btn {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.troll-section .tool-btn-dark {
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.troll-section .tool-btn:hover {
    transform: scale(1.1);
}

.troll-section .tool-btn-dark:hover {
    background: #f5f5f7;
}

.troll-section .tools-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.troll-section .devices-img {
    max-width: 28%;
    height: auto;
}

@media (max-width: 768px) {
    .troll-section {
        margin: 40px 0;
    }
    
    .troll-section .tools-text h2 {
        font-size: 48px;
    }
    
    .troll-section .tools-text p {
        font-size: 20px;
    }

    .troll-section .tools-content {
        padding: 60px 40px;
    }
}

/* TrollStore详细信息区域 */
.troll-details-section {
    min-height: 100vh;
    background-color: #ffffff;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.troll-details-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.troll-icon-container {
    text-align: center;
}

.troll-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    border-radius: 24px;
}

.troll-icon-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    background: linear-gradient(
        to right,
        #006AFF,  /* 蓝色开始 */
        #00C6FF,  /* 浅蓝色过渡 */
        #0072FF   /* 深蓝色结束 */
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 8s ease infinite;
}

.troll-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.troll-btn {
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #000000;
    color: #ffffff;
}

.troll-btn-outline {
    background: transparent;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.troll-btn:hover {
    transform: scale(1.1);
}

.troll-info {
    text-align: center;
    max-width: 800px;
}

.troll-description {
    margin-bottom: 48px;
}

.troll-description .main-desc {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
    background: linear-gradient(
        to right,
        #006AFF,  /* 蓝色开始 */
        #00C6FF,  /* 浅蓝色过渡 */
        #0072FF   /* 深蓝色结束 */
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 8s ease infinite;
    animation-delay: 0.2s;
}

.troll-description p {
    font-size: 18px;
    color: #86868b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.device-support {
    margin-bottom: 48px;
}

.device-support h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    background: linear-gradient(
        to right,
        #006AFF,  /* 蓝色开始 */
        #00C6FF,  /* 浅蓝色过渡 */
        #0072FF   /* 深蓝色结束 */
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 8s ease infinite;
    animation-delay: 0.4s;
}

.support-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 24px;
    background: #f5f5f7;
    border-radius: 16px;
    text-align: left;
}

.support-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.support-item p {
    font-size: 16px;
    color: #86868b;
    line-height: 1.5;
}

.system-helper {
    font-size: 18px;
    color: #86868b;
}

.helper-link {
    color: #006AFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.helper-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .troll-details-section {
        padding: 60px 20px;
    }

    .troll-details-content {
        gap: 40px;
    }

    .troll-icon {
        width: 100px;
        height: 100px;
    }

    .troll-icon-container h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .troll-description .main-desc {
        font-size: 20px;
    }

    .troll-description p {
        font-size: 16px;
    }

    .device-support h3 {
        font-size: 24px;
    }

    .support-item {
        min-width: 100%;
        padding: 20px;
    }

    .system-helper {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .troll-buttons {
        flex-direction: column;
        width: 100%;
    }

    .troll-btn {
        width: 100%;
        text-align: center;
    }
}

/* TrollStore文本渐变动画 */
.troll-icon-container h2,
.troll-description .main-desc,
.device-support h3 {
    background: linear-gradient(
        to right,
        #006AFF,
        #00C6FF,
        #0072FF
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 8s ease infinite;
}

.troll-description .main-desc {
    animation-delay: 0.2s;
}

.device-support h3 {
    animation-delay: 0.4s;
}

/* 项目展示区域 */
.project-section {
    margin: 60px 0;
}

.project-section .tools-content {
    background: linear-gradient(135deg, #ff9eda 0%, #64d3ffbb 100%)
}

.project-section .tools-text h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-section .tools-text p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.project-section .tool-btn-dark {
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-section .tool-btn-dark:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.project-section .tools-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.project-section .project-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .project-section {
        margin: 40px 0;
    }
    
    .project-section .tools-text h2 {
        font-size: 36px;
    }
    
    .project-section .tools-text p {
        font-size: 18px;
    }

    .project-section .tools-content {
        padding: 40px 20px;
    }

    .project-section .project-img {
        width: 150px;
        height: 150px;
    }
}

.status-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00c853;
    border-radius: 50%;
    display: inline-block;
    animation: softPulse 1.5s ease-in-out infinite;
}

@keyframes softPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

@media (max-width: 768px) {
    .status-text {
        font-size: 13px;
    }
    
    .status-dot {
        width: 6px;
        height: 6px;
    }
}

.tuku-container {
    display: flex;
    justify-content: flex-start;
    padding: 12px 0;
}

.tuku-img {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tuku-img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        gap: 12px;
    }

    .tuku-container {
        padding: 8px 0;
    }

    .tuku-img {
        width: 100px;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

/* 友情链接移动端响应式样式 */
@media (max-width: 768px) {
    .friend-links {
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .friend-links h3 {
        font-size: 15px;
        margin: 0;
    }
    
    .friend-links-grid {
        gap: 12px;
        width: 100%;
    }
    
    .friend-link {
        padding: 3px 6px;
    }
    
    .friend-link span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .friend-links-grid {
        gap: 10px;
    }
    
    .friend-link {
        padding: 2px 4px;
    }
}

.footer-logo {
    height: 36px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.website-link {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.website-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .logo-container {
        gap: 16px;
    }

    .footer-logo {
        height: 32px;
    }

    .website-link {
        font-size: 14px;
    }
}