
        :root {
            --bg-black: #0A0A0A;
            --bg-dark-green: #0F2C2A;
            --primary-green: #10A37F;
            --light-green: #34D399;
            --text-white: #E2E8F0;
            --text-gray: #94A3B8;
        }

        /* 核心：设置根字体为12px，确保1rem=12px，最小字体基础 */
        html {
            font-size: 12px; 
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            -webkit-tap-highlight-color: transparent;
        }
        a {
            text-decoration: none;
            color: inherit;
        }

        body {
            background-color: var(--bg-black);
            color: var(--text-white);
            max-width: 420px;
            margin: 0 auto;
            overflow-x: hidden;
            min-height: 100vh;
            padding-bottom: 5rem; /* 适配rem单位 */
            
        }

        /* PC端样式 */
        @media screen and (min-width: 768px) {
            body {
                max-width: 100%;
                padding-bottom: 0;
                margin: 0;
            }
            .carousel-content {
            left: 8rem!important;
           
            }
            /* PC端顶部导航栏 */
            .pc-header {
                position: fixed;
                background-color: rgba(10, 10, 10, 0.85);
                backdrop-filter: blur(10px);
                padding: 0 2rem;
                height: 6rem;
                border-bottom: 1px solid rgba(52, 211, 153, 0.1)!important;
                position: fixed;
                width: 100%;
                top: 0;
                z-index: 100;
            }
            
            .pc-nav {
                display: flex;
                align-items: center;
                justify-content: space-between;
                height: 100%;
                max-width: 1200px;
                padding: 0 2rem;
                margin: 0 auto;
            }
            
            .pc-logo {
                font-size: 1.6rem;
                font-weight: bold;
                color: var(--light-green);
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }
            
            .pc-menu {
                display: flex;
                align-items: center;
                gap: 2rem;
            }
            
            .pc-menu-item {
                font-size: 1.3rem;
                color: #94a3b8;
                padding: 0.5rem 0;
                position: relative;
                cursor: pointer;
                transition: color 0.3s ease;
            }
            
            .pc-menu-item:hover {
                color: var(--light-green);
            }
            .pc-menu-item.active{color:var(--light-green);}
            .pc-menu-item.active::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 2px;
                background-color: var(--light-green);
            }
            
            .pc-user-actions {
                display: flex;
                align-items: center;
                gap: 1rem;
            }
            
            .pc-vip-btn {
                background: linear-gradient(135deg, var(--light-green), var(--primary-green));
                color: var(--bg-black);
                border: none;
                padding: 0.6rem 1.2rem;
                border-radius: 0.33rem;
                font-size: 1.1rem;
                font-weight: 500;
                cursor: pointer;
                transition: transform 0.2s ease;
            }
            
            .pc-vip-btn:hover {
                transform: translateY(-2px);
            }
            
            .pc-user-avatar {
                width: 2.5rem;
                height: 2.5rem;
                border-radius: 50%;
                background-color: var(--primary-green);
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
            }
            
            /* PC端主要内容容器 */
            .pc-main-container {
                /*max-width: 1200px;*/
                margin: 0 auto;
                
            }
            
            /* PC端轮播调整 */
            .header-carousel {
                border-radius: 0rem;
                overflow: hidden;
                margin-top: 0rem;
                height:450px!important ;
            }
            
            /* PC端功能入口调整 */
            .features {
                padding: 3rem 2rem!important;
                max-width: 1200px;
                margin: 0 auto!important;
            }
            .feature-grid>a{     position: relative;   background: rgba(118,145,147,.1);padding:2rem 0;border-radius:0.5rem}
            .feature-grid>a::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--bg-dark-green), transparent, #10a37f);
    z-index: -1;
    border-radius: 17px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}
.feature-grid>a:hover::before {
    opacity: 1;
}
            .feature-grid {
                grid-template-columns: repeat(10, 1fr);
                gap: 1.5rem 1.5rem!important;
            }
            
            /* PC端热门玩法调整 */
            .hot-games {
                padding: 0  2rem!important;
                margin: 1rem auto;
                max-width: 1200px;
            }
            
            .games-scroll {
                padding-bottom: 0.8rem;
            }
            
            .game-card {
                min-width: 15rem!important;
            }
            
            .game-img {
                height: 8rem;
            }
            
            /* PC端分类标签调整 */
            .category-tabs {
                padding: 1rem 2rem!important;
                 margin: 0rem auto;
                max-width: 1200px;
                gap: 2rem;
            }
            
            /* PC端瀑布流调整 */
            .discover-grid {
                column-count: 4!important;
                column-gap: 1rem;
                row-gap: 1rem;
                padding: 0 2rem!important;
                 margin: 0rem auto;
                max-width: 1200px;
            }
            
            .case-card {
                margin-bottom: 1rem!important;
            }
            .case-img{height:auto!important}
            
            /* PC端隐藏移动端元素 */
            .menu-btn,.bottom-nav {
                display: none!important;
            }
            
            .menu-btn, .vip-btn {
                display: none;
            }
            .carousel-indicators {
            position: absolute;
            bottom: 1rem;
            right: 0;
            left: 49.5%;
            display: flex;
            gap: 0.3rem;
            z-index: 2;
           }
        }

        /* 移动端样式保持不变 */
      
        /* 头部轮播 */
        .header-carousel {
            position: relative;
            width: 100%;
            height: 15rem; /* 180px = 15rem（12px*15） */
            overflow: hidden;
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .carousel-slide {
            flex: 0 0 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-slide::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 5rem; /* 60px = 5rem */
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
        }

        .carousel-content {
            position: absolute;
            bottom: 1.5rem; /* 增大间距，强调文字 */
            z-index: 2;
            left:1.5rem;
        }

        .carousel-title {
            font-size: 1.5rem!important; /* 18px，强调标题 */
            font-weight: 700!important;
            margin-bottom: 0.3rem!important;
        }

        .carousel-subtitle {
            font-size: 1.1rem; /* 13.2px，最小12px以上 */
            color: rgba(255,255,255,0.8);
        }

        .carousel-indicators {
            position: absolute;
            bottom: 1rem;
            right: 1.2rem;
            display: flex;
            gap: 0.3rem;
            z-index: 2;
        }

        .indicator {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            transition: all 0.3s ease;
        }

        .indicator.active {
            background-color: var(--light-green);
            width: 1.5rem;
            border-radius: 0.25rem;
        }

        .menu-btn {
            position: absolute;
            top: 1.2rem;
            left: 1.2rem;
            z-index: 2;
            background: none;
            border: none;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem; /* 增大图标 */
            color: #FFFFFF;
            cursor: pointer;
        }

        .vip-btn {
            position: absolute;
            top: 1.2rem;
            right: 1.2rem;
            background-color: rgba(16, 163, 127, 0.2);
            color: var(--light-green);
            border: none;
            padding: 0.4rem 0.8rem;
            border-radius: 0.33rem;
            font-size: 1rem; /* 12px，最小字体 */
            backdrop-filter: blur(10px);
            cursor: pointer;
        }

        /* 功能入口 - 图标和文字间距紧凑，字体增大 */
        .features {
            padding: 2rem 1rem;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem 0.5rem;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            /*gap: 0.3rem;*/
            font-size: 1.1rem; /* 13.2px，比最小字体稍大 */
            color: var(--text-gray);
        }

        .feature-icon {
            width: 3.5rem;
            height: 3.5rem;
            background-color: transparent;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem; /* 增大图标 */
            color: var(--primary-green);
            border-radius: 100%;
            background: rgba(118,145,147,.1);
        }

        /* 热门玩法 - 强调标题和内容 */
        .hot-games {
            padding: 0 1rem 1.2rem;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .section-title {
            font-size: 1.4rem; /* 16.8px，强调板块标题 */
            font-weight: 600;
        }

        .more-btn {
            font-size: 1.1rem; /* 13.2px */
            color: var(--light-green);
            text-decoration: none;
        }

        .games-scroll {
            display: flex;
            overflow-x: auto;
            gap: 0.8rem;
            padding-bottom: 0.4rem;
        }

        .games-scroll::-webkit-scrollbar {
            display: none;
        }

        .game-card {
            min-width: 11.67rem; /* 140px = 11.67rem */
            border-radius: 0.67rem;
            overflow: hidden;
            background-color: var(--bg-dark-green);
        }

        .game-img {
            width: 100%;
            height: 6.67rem; /* 80px = 6.67rem */
            object-fit: cover;
            display: block;
        }

        .game-info {
            padding: 0.6rem;
        }

        .game-title {
            font-size: 1.2rem; /* 14.4px，强调玩法标题 */
            font-weight: 500;
            margin-bottom: 0.2rem;
        }

        .game-tag {
            font-size: 1rem; /* 12px，最小字体 */
            color: var(--light-green);
        }

        /* 分类标签 - 增大字体 */
        .category-tabs {
            display: flex;
            overflow-x: auto;
            padding: 0.8rem 1rem;
            gap: 1rem;
        }

        .category-tabs::-webkit-scrollbar {
            display: none;
        }

        .tab-item {
            font-size: 1.2rem; /* 14.4px */
            color: var(--text-gray);
            white-space: nowrap;
            padding-bottom: 0.3rem;
            border-bottom: 2px solid transparent;
            cursor: pointer;
        }

        .tab-item.active {
            color: var(--light-green);
            border-bottom-color: var(--light-green);
            font-weight: 500; /* 强调激活标签 */
        }

        /* 瀑布流案例 - 增大字体，强调标题 */
        .discover-grid {
            column-count: 2;
            column-gap: 0.5rem;
            row-gap: 0.5rem;
            padding: 0 1rem;
        }

        .case-card {
            break-inside: avoid;
            background-color: transparent;
            border-radius: 0.67rem;
            overflow: hidden;
            margin-bottom: 0.5rem;
            animation: fadeIn 0.6s ease forwards;
            opacity: 0;
            transform: translateY(1.67rem); /* 20px = 1.67rem */
        }

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

        .case-img {
            width: 100%;
            height: 10rem; /* 120px = 10rem */
            object-fit: cover;
            display: block;
            border-radius: 0.67rem;
        }

        .case-info {
            padding: 0.5rem;
        }

        .case-title {
            font-size: 1.2rem; /* 14.4px，强调案例标题 */
            font-weight: 500;
            margin-bottom: 0.3rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .case-author-box{
            display: flex;
            justify-content: space-between;

        }

        .case-author {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            margin-bottom: 0.3rem;
        }

        .author-avatar {
            width: 1.33rem; /* 16px = 1.33rem */
            height: 1.33rem;
            border-radius: 50%;
            background-color: var(--primary-green);
        }

        .author-name {
            font-size: 1rem; /* 12px，最小字体 */
            color: var(--text-gray);
        }

        .case-stats {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 1rem; /* 12px，最小字体 */
            color: var(--text-gray);
        }

        /* 底部导航 - 增大字体和图标 */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            max-width: 420px;
            margin: 0 auto;
            background-color: rgba(15, 44, 42, 0.8);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 0.5rem 0;
            z-index: 10;
            height: 4.67rem; /* 56px = 4.67rem */
        }

        .nav-item, .btn-create {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.3rem;
            color: var(--text-gray);
            font-size: 1.1rem; /* 13.2px */
            width: 4rem;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .nav-item.active {
            color: var(--light-green);
            font-weight: 500; /* 强调激活导航 */
        }

        .nav-item i {
            font-size: 1.5rem; /* 增大图标 */
        }

        .btn-create {
            color: var(--bg-black);
            font-size: 1.5rem;
            width: 3.17rem; /* 38px = 3.17rem */
            height: 3.17rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-green), var(--primary-green));
            gap: 0;
            /*margin-top: -0.5rem;  -6px = -0.5rem */
            box-shadow: 0 0.17rem 0.5rem rgba(0,0,0,0.2);
            transition: box-shadow 0.2s ease;
        }

        .btn-create:hover {
            box-shadow: 0 0.33rem 0.67rem rgba(0,0,0,0.3);
        }

        /* 加载动画 */
        .loading {
            display: flex;
            justify-content: center;
            padding: 1rem;
        }

        .loading::after {
            content: '';
            width: 1.67rem; /* 20px = 1.67rem */
            height: 1.67rem;
            border: 0.17rem solid rgba(52, 211, 153, 0.3);
            border-top: 0.17rem solid var(--light-green);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        /* PC端底部样式 */
.pc-footer {
    background: linear-gradient(180deg, #0A0A0A 0%, #070707 100%);
    border-top: 1px solid rgba(52, 211, 153, 0.1);
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    position: relative;
    width: 100%;
}

.pc-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(52, 211, 153, 0.3) 50%, 
        transparent 100%);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 链接区域 */
.footer-links-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    color: var(--light-green);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 1.2rem;
    background: var(--light-green);
    border-radius: 1px;
}

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

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: var(--text-gray);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--light-green);
    background: rgba(52, 211, 153, 0.1);
    transform: translateX(5px);
}

/* 社交媒体 */
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon:hover {
    background: var(--light-green);
    color: var(--bg-black);
    transform: translateY(-3px);
}

.social-icon:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 0.3rem;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 10;
}

/* 订阅区域 */
.subscribe p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    max-width: 300px;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.3rem;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--light-green);
    background: rgba(255, 255, 255, 0.08);
}

.subscribe-btn {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: var(--bg-black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0.3rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 211, 153, 0.3);
}

/* 分隔线 */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(52, 211, 153, 0.2) 20%, 
        rgba(52, 211, 153, 0.2) 80%, 
        transparent 100%);
    margin: 2rem 0;
}

/* 信息区域 */
.footer-info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-left, .info-center, .info-right {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--light-green);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2.2rem;
}

.footer-slogan p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    opacity: 0.8;
}

/* 认证区域 */
.certification {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.cert-item {
    color: var(--text-gray);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.3);
    color: var(--light-green);
}

.cert-item i {
    margin-right: 0.5rem;
    color: var(--light-green);
}

/* 联系信息 */
.contact-info p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info i {
    color: var(--light-green);
    width: 1.2rem;
}

/* 底部版权区 */
.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.legal-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--light-green);
}

.separator {
    color: var(--text-gray);
    opacity: 0.3;
    font-size: 0.9rem;
}

/* 额外信息 */
.footer-extra {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.icp-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.7;
}

.icp-info img {
    width: 1.2rem;
    height: 1.2rem;
}

.badges {
    display: flex;
    gap: 0.8rem;
}

.badge {
    color: var(--text-gray);
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge i {
    margin-right: 0.3rem;
    color: var(--light-green);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .pc-header{display:none}
    .footer-links-section,
    .footer-info-section,
    .footer-bottom-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-title::before {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .subscribe-form {
        max-width: 100%;
    }
    
    .certification,
    .footer-extra {
        align-items: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
          @media screen and (max-width: 767px) {
            .pc-header {
                display: none !important;
            }
            .pc-footer{display:none}
            .bottom-nav {
                display: flex;
            }
            
            .menu-btn, .vip-btn {
                display: flex;
            }
        }
        .pc-logo{
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            position: relative;
        }
        .pc-logo::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 68.9%;
            transform: translateX(-50%);
            width: 5px;
            height: 5px;
            background: radial-gradient(circle at 30% 30%, #ffffff, #e0e0ff);
            border-radius: 50%;
            box-shadow: 0 0 0 2px rgb(255 255 255 / 80%), 0 0 8px 4px rgb(207 192 9 / 80%);
            animation: orbit 4s linear infinite;
        }
@keyframes orbit {
            0% {
                transform: translateX(-50%) rotate(0deg) translate(9px) rotate(0deg);
            }
            50% {
                top:49%;
                
            }
           70% {
                top:46.8%;
                
            }
            80% {
                top:46.3%;
                left: 69.7%;
            }
            85% {
                top:46.3%;
                left: 69.7%;
            }
            90% {
                left: 69.7%;
                 top:46%;
            }
            100% {
                transform: translateX(-50%) rotate(360deg) translate(8px) rotate(-360deg);
                left: 69.8%;
            }
        }
  