        /* 版权信息底部样式 */
        .copyright-footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            margin-top: 50px;
        }

        .copyright-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }

        .copyright-text {
            transition: color 0.3s ease;
        }

        .copyright-text:hover {
            color: var(--primary-color, #ffd700);
        }

        .copyright-divider {
            color: rgba(255, 255, 255, 0.3);
        }

        /* 移动端版权信息 */
        @media (max-width: 768px) {
            .copyright-content {
                flex-direction: column;
                gap: 5px;
                font-size: 11px;
            }

            .copyright-divider {
                display: none;
            }
        }

        :root {
            /* 日间模式颜色 */
            --primary-color: #2c7a2c;
            --secondary-color: #d4af37;
            --accent-color: #8b0000;
            --background-color: #f8f9fa;
            --surface-color: #ffffff;
            --text-color: #212529;
            --text-light: #6c757d;
            --border-color: #dee2e6;
            --shadow-color: rgba(0, 0, 0, 0.1);
            --overlay-color: rgba(0, 0, 0, 0.7);
            --card-bg: #ffffff;
            --nav-bg: rgba(255, 255, 255, 0.95);

            /* 日间模式渐变色 */
            --primary-gradient: linear-gradient(135deg, #2c7a2c, #4a9a4a);
            --secondary-gradient: linear-gradient(135deg, #d4af37, #f0c24c);
            --background-gradient: linear-gradient(135deg, rgba(248, 249, 250, 0.95), rgba(233, 236, 239, 0.95));
            --hero-gradient: linear-gradient(135deg, #2c7a2c, #8b0000, #d4af37);
            --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(248, 249, 250, 0.88));
            --nav-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 249, 250, 0.88));
            --feature-gradient: linear-gradient(135deg, #2c7a2c, #d4af37);
            --section-gradient: linear-gradient(180deg, rgba(248, 249, 250, 0.9), rgba(255, 255, 255, 0.9));

            /* 日间模式背景图 */
            --background-image: url('images/background-pattern.jpg');
            --background-overlay: rgba(248, 249, 250, 0.75);
        }

        [data-theme="dark"] {
            /* 夜间模式颜色 */
            --primary-color: #3ca33c;
            --secondary-color: #ffd700;
            --accent-color: #dc3545;
            --background-color: #0d1117;
            --surface-color: #161b22;
            --text-color: #f0f6fc;
            --text-light: #8b949e;
            --border-color: #30363d;
            --shadow-color: rgba(0, 0, 0, 0.5);
            --overlay-color: rgba(0, 0, 0, 0.9);
            --card-bg: #1c2128;
            --nav-bg: rgba(22, 27, 34, 0.95);

            /* 夜间模式渐变色 */
            --primary-gradient: linear-gradient(135deg, #3ca33c, #5cb85c);
            --secondary-gradient: linear-gradient(135deg, #ffd700, #ffed4e);
            --background-gradient: linear-gradient(135deg, #0d1117, #161b22);
            --hero-gradient: linear-gradient(135deg, #3ca33c, #dc3545, #ffd700);
            --card-gradient: linear-gradient(135deg, #1c2128, #21262d);
            --nav-gradient: linear-gradient(135deg, rgba(22, 27, 34, 0.95), rgba(13, 17, 23, 0.9));
            --feature-gradient: linear-gradient(135deg, #3ca33c, #ffd700);
            --section-gradient: linear-gradient(180deg, #0d1117, #161b22);

            /* 夜间模式背景配置 */
            --background-image: none;
            --background-overlay: transparent;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Noto Sans SC', sans-serif;
            background-image: var(--background-image, none);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            color: var(--text-color);
            transition: all 0.3s ease;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
            width: 100vw;
            max-width: 100vw;
            box-sizing: border-box;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--background-gradient);
            z-index: -2;
            pointer-events: none;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--background-overlay, transparent);
            z-index: -1;
            pointer-events: none;
        }

        /* 导航栏样式 */
        .navbar-custom {
            background: var(--nav-gradient);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px var(--shadow-color);
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--border-color);
            height: 80px;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            width: 100% !important;
            z-index: 1030 !important;
        }

        .navbar-custom .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            position: relative !important;
        }

        .navbar-collapse {
            flex-grow: 1;
        }

        @media (min-width: 992px) {
            .navbar-collapse {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 0;
            min-width: 200px;
            flex-shrink: 0;
            position: relative;
            z-index: 1001;
        }

        .brand-logo {
            width: 160px;
            height: 64px;
            object-fit: contain;
            z-index: 1001;
            position: relative;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: all 0.3s ease;
        }

        .brand-logo:hover {
            transform: scale(1.05);
            filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
        }

        /* 昼夜模式logo切换 */
        .brand-logo-light {
            display: block;
        }
        .brand-logo-dark {
            display: none;
        }

        [data-theme="dark"] .brand-logo-light {
            display: none;
        }
        [data-theme="dark"] .brand-logo-dark {
            display: block;
        }

        .navbar-nav {
            gap: 0.5rem;
            flex-wrap: wrap;
        }


        .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            padding: 0.5rem 0.75rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
        }

        .nav-link i {
            font-size: 1.1rem;
        }

        .nav-link:hover {
            background: var(--primary-gradient);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px var(--shadow-color);
        }

        /* 汉堡菜单样式 */
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
            position: relative;
            z-index: 1001;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .hamburger {
            width: 30px;
            height: 20px;
            position: relative;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--text-color);
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transition: 0.3s ease;
        }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 8px;
        }

        .hamburger span:nth-child(3) {
            bottom: 0;
        }

        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
            transform: rotate(45deg);
            top: 8px;
        }

        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
            transform: rotate(-45deg);
            bottom: 8px;
        }

        /* 昼夜切换按钮 - PC端 */
        .theme-switcher {
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 3px 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: all 0.3s ease;
            font-size: 0.8rem;
        }

        .theme-switcher:hover {
            background: var(--primary-gradient);
            color: white;
            border-color: var(--primary-color);
            box-shadow: 0 4px 12px var(--shadow-color);
        }

        /* 移动端昼夜切换 */
        .mobile-theme-switcher {
            display: none;
            width: 100%;
            padding: 15px;
            margin-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        /* Hero Section with Carousel */
        .hero-section {
            position: relative;
            min-height: 60vh;
            overflow: hidden;
            margin-top: 80px;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-carousel {
            position: relative;
            width: 100%;
            height: 60vh;
            text-align: center;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .carousel-slide.active {
            opacity: 1;
        }


        .slide-content {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
            z-index: 2;
            width: 90%;
            max-width: 800px;
        }

        .slide-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: #d4af37;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .slide-subtitle {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 0;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }

        /* 轮播指示器 */
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex !important;
            gap: 12px;
            z-index: 3;
            justify-content: center !important;
            align-items: center !important;
            width: 100% !important;
            margin: 0 auto !important;
            text-align: center !important;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            flex-shrink: 0;
        }

        .indicator.active {
            background: #d4af37;
            border: 2px solid #d4af37;
            transform: scale(1.2);
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.6);
            border: 2px solid white;
        }

        /* 轮播箭头 */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-prev {
            left: 20px;
        }

        .carousel-next {
            right: 20px;
        }

        .carousel-arrow:hover {
            background: rgba(212, 175, 55, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .poker-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
        }


        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn-custom-primary {
            background: var(--secondary-gradient);
            color: var(--text-color);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-custom-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn-custom-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
            color: var(--text-color);
        }

        .btn-custom-primary:hover::before {
            left: 100%;
        }

        .btn-custom-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .btn-custom-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn-custom-secondary:hover {
            background: var(--primary-gradient);
            color: white;
            transform: translateY(-3px);
            border-color: transparent;
            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
        }

        .btn-custom-secondary:hover::before {
            left: 100%;
        }

        /* Floating Cards Animation */
        .floating-cards {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 2;
        }

        .floating-card {
            position: absolute;
            width: 60px;
            height: 80px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            opacity: 0.3;
            animation: float 20s infinite ease-in-out;
        }

        .floating-card:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            color: red;
        }

        .floating-card:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: 5s;
            color: black;
        }

        .floating-card:nth-child(3) {
            top: 40%;
            left: 60%;
            animation-delay: 10s;
            color: red;
        }

        .floating-card:nth-child(4) {
            top: 80%;
            left: 20%;
            animation-delay: 15s;
            color: black;
        }


        /* 中等屏幕优化 */
        @media (max-width: 1200px) and (min-width: 992px) {
            .nav-link {
                padding: 0.5rem 0.6rem !important;
                font-size: 0.85rem;
            }

            .navbar-nav {
                gap: 0.3rem;
            }
        }

        @media (max-width: 1400px) and (min-width: 1201px) {
            .nav-link {
                padding: 0.5rem 0.7rem !important;
                font-size: 0.88rem;
            }

            .navbar-nav {
                gap: 0.4rem;
            }
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .navbar-custom {
                height: 70px;
                padding: 0.5rem 0;
            }

            .navbar-brand {
                position: relative !important;
                z-index: 1032 !important;
                order: 1;
            }

            .brand-logo {
                width: 120px;
                height: 48px;
            }

            .hero-section {
                min-height: 55vh;
                margin-top: 60px;
            }

            .hero-carousel {
                height: 55vh;
            }

            .slide-content {
                bottom: 60px;
            }

            .carousel-indicators {
                bottom: 15px;
                gap: 10px;
                left: 0 !important;
                right: 0 !important;
                justify-content: center !important;
            }

            .slide-title {
                font-size: 2.5rem;
            }

            .slide-subtitle {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 991px) {
            .navbar-custom {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                width: 100vw !important;
                max-width: 100vw !important;
                height: 60px !important;
                z-index: 9998 !important;
                transform: translateZ(0) !important;
                -webkit-transform: translateZ(0) !important;
                overflow: visible !important;
                box-sizing: border-box;
                margin: 0 !important;
                padding: 0 !important;
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
            }

            .navbar-custom .container {
                width: 100% !important;
                max-width: 100% !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
                box-sizing: border-box;
                display: flex !important;
                flex-wrap: nowrap !important;
                align-items: center !important;
                justify-content: space-between !important;
                height: 60px !important;
            }

            .navbar-brand {
                flex: 0 0 auto !important;
                margin: 0 !important;
                order: 1 !important;
                align-self: center !important;
            }

            .brand-logo {
                width: 100px !important;
                height: 40px !important;
            }

            .navbar-toggler {
                flex: 0 0 auto !important;
                margin: 0 !important;
                order: 2 !important;
                position: static !important;
                align-self: center !important;
                padding: 8px !important;
                border: none !important;
                background: transparent !important;
                width: 44px !important;
                height: 44px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }

            .navbar-collapse {
                background: var(--nav-gradient);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                box-shadow: 0 4px 20px var(--shadow-color);
                padding: 1rem;
                margin-top: 10px;
                border: 1px solid var(--border-color);
                position: absolute;
                top: 100%;
                left: 15px;
                right: 15px;
                z-index: 9999 !important;
                width: auto;
                display: none;
            }

            .navbar-collapse.show {
                display: block !important;
            }

            .collapse:not(.show) {
                display: none !important;
            }

            .collapse.show {
                display: block !important;
            }

            .navbar-nav {
                padding: 0;
                width: 100%;
                flex-direction: column;
            }

            .nav-item {
                width: 100%;
                display: list-item;
            }

            .nav-link {
                padding: 0.8rem 1rem !important;
                margin: 0.2rem 0;
                border-radius: 8px;
                color: var(--text-color) !important;
                display: block !important;
                text-decoration: none !important;
                font-weight: 500 !important;
            }

            .nav-link:hover {
                background: var(--primary-gradient) !important;
                color: white !important;
            }

            .nav-link i {
                margin-right: 0.5rem;
                font-size: 1rem;
            }

            .theme-switcher {
                display: none;
            }

            .mobile-theme-switcher {
                display: flex;
                justify-content: center;
            }

            .hero-section {
                min-height: 50vh;
                margin-top: 60px;
            }

            .hero-carousel {
                height: 50vh;
            }

            .slide-content {
                bottom: 50px;
            }

            .carousel-indicators {
                bottom: 12px;
                gap: 8px;
                left: 0 !important;
                right: 0 !important;
                justify-content: center !important;
            }

            .indicator {
                width: 10px;
                height: 10px;
            }

            .slide-title {
                font-size: 2rem;
            }

            .slide-subtitle {
                font-size: 1rem;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .carousel-prev {
                left: 10px;
            }

            .carousel-next {
                right: 10px;
            }
        }

        /* 苹果设备适配 */

        /* 更小屏幕的渐进优化 */
        @media (max-width: 430px) {
            .contact-buttons-wrapper {
                gap: 6px !important;
                padding: 0 6px !important;
            }

            .contact-btn {
                min-width: 100px !important;
                max-width: 120px !important;
                padding: 10px 6px !important;
                font-size: 0.8rem !important;
                height: 48px !important;
            }

            .contact-btn i {
                font-size: 1.3rem !important;
            }

            .contact-btn span {
                font-size: 0.75rem !important;
            }
        }

        @media (max-width: 375px) {
            .contact-buttons-wrapper {
                gap: 4px !important;
                padding: 0 4px !important;
            }

            .contact-btn {
                min-width: 95px !important;
                max-width: 110px !important;
                padding: 9px 5px !important;
                font-size: 0.75rem !important;
                height: 46px !important;
            }

            .contact-btn i {
                font-size: 1.2rem !important;
            }

            .contact-btn span {
                font-size: 0.7rem !important;
            }
        }

        @media (max-width: 320px) {
            .contact-buttons-wrapper {
                gap: 3px !important;
                padding: 0 3px !important;
            }

            .contact-btn {
                min-width: 90px !important;
                max-width: 105px !important;
                padding: 8px 4px !important;
                font-size: 0.7rem !important;
                height: 44px !important;
                margin: 0 !important;
            }

            .contact-btn i {
                font-size: 1.1rem !important;
            }

            .contact-btn span {
                font-size: 0.65rem !important;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand {
                margin-left: 0;
                font-size: 1.5rem;
            }

            .navbar-custom {
                height: 60px;
                padding: 0.3rem 0;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                width: 100vw !important;
                max-width: 100vw !important;
                z-index: 1030 !important;
                overflow: hidden;
                box-sizing: border-box;
            }

            .navbar-custom .container {
                width: 100% !important;
                max-width: 100% !important;
                padding-left: 10px !important;
                padding-right: 10px !important;
                box-sizing: border-box;
                position: relative;
                display: flex !important;
                flex-wrap: wrap !important;
                align-items: center !important;
                justify-content: space-between !important;
            }

            .navbar-brand {
                position: relative !important;
                z-index: 1032 !important;
                order: 1;
            }

            .brand-logo {
                width: 100px;
                height: 40px;
            }

            .navbar-toggler {
                padding: 2px 6px;
                position: relative !important;
                z-index: 1032 !important;
                margin-left: auto !important;
            }

            .hamburger {
                width: 25px;
                height: 18px;
            }

            .hero-section {
                min-height: 35vh;
                margin-top: 60px;
            }

            .hero-carousel {
                height: 35vh;
            }

            .carousel-slide {
                background-attachment: scroll;
            }

            .slide-content {
                bottom: 40px;
            }

            .carousel-indicators {
                bottom: 8px;
                gap: 6px;
                left: 0 !important;
                right: 0 !important;
                justify-content: center !important;
            }

            .slide-title {
                font-size: 1.5rem;
            }

            .slide-subtitle {
                font-size: 0.9rem;
            }

            .carousel-arrow {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .indicator {
                width: 8px;
                height: 8px;
                border-width: 1px;
            }

            .contact-section {
                padding: 30px 0;
            }


            .qr-modal-content {
                padding: 20px;
                width: 95%;
            }

            .qr-image {
                width: 150px;
                height: 150px;
            }

            .game-links-section {
                padding: 30px 0;
            }

            .game-links-wrapper {
                flex-direction: row;
                gap: 20px;
            }

            .game-link-card {
                min-width: auto;
                max-width: none;
                padding: 25px 20px;
                flex: 1;
            }

            .game-link-title {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }

            .official-btn {
                padding: 8px 14px;
                font-size: 0.75rem;
                border-radius: 16px;
            }

            .backup-link {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .btn-custom-primary,
            .btn-custom-secondary {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            body {
                background-attachment: scroll;
            }
        }

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

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(30px, -30px) rotate(10deg);
            }
            50% {
                transform: translate(-20px, 20px) rotate(-5deg);
            }
            75% {
                transform: translate(20px, 10px) rotate(5deg);
            }
        }

        /* 游戏信息区域样式 */
        .game-info-section {
            padding: 30px 0;
            background: var(--section-gradient);
            position: relative;
            border-top: 2px solid var(--border-color);
        }

        .game-cards-wrapper {
            display: flex;
            gap: 30px;
            align-items: stretch;
        }

        .game-card {
            flex: 1;
            background: var(--card-gradient);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px var(--shadow-color);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s ease;
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.6s ease;
            pointer-events: none;
        }

        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow-color);
        }

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

        .card-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0 0 15px 0;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--border-color);
            text-align: center;
        }

        .live-status-btn {
            display: block;
            background: linear-gradient(45deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            margin: 0 auto 15px auto;
            width: fit-content;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
            animation: pulseGlow 2s infinite;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .live-status-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }

        .game-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .game-item {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            border-left: 3px solid var(--primary-color);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
            text-align: center;
        }

        .game-item:hover {
            background: rgba(44, 122, 44, 0.1);
            transform: translateX(5px);
            border-left-color: var(--secondary-color);
        }

        .game-item.live-indicator {
            background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(255, 142, 83, 0.2));
            border-left-color: #ff6b6b;
            animation: pulseGlow 2s infinite;
        }

        .game-name {
            font-weight: 600;
            color: var(--text-color);
            font-size: 0.95rem;
            flex: 1;
        }

        .game-details {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
            text-align: right;
            flex: 1;
        }

        .live-indicator .game-name,
        .live-indicator .game-details {
            color: #ff6b6b;
            font-weight: 700;
        }

        /* 俱乐部区域 */
        .clubs-section {
            padding: 60px 0;
            background: var(--section-gradient);
            border-top: 1px solid var(--border-color);
        }

        .clubs-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .clubs-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-gradient);
            border-radius: 2px;
        }

        .clubs-wrapper {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .club-card {
            background: var(--card-gradient);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px var(--shadow-color);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            flex: 1;
            max-width: 400px;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .club-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
            transition: left 0.8s ease;
            pointer-events: none;
        }

        .club-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px var(--shadow-color);
        }

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

        /* 俱乐部Logo容器 - 沿用游戏平台logo样式 */
        .club-logo-container {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            background: var(--surface-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px var(--shadow-color);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid var(--border-color);
        }

        /* 日间模式下为俱乐部logo添加深色背景以增强显示效果 */
        :root .club-logo-container {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            border: 2px solid #34495e;
        }

        /* 夜间模式保持原有浅色背景 */
        [data-theme="dark"] .club-logo-container {
            background: var(--surface-color);
            border: 2px solid var(--border-color);
        }

        .club-logo-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
            border-radius: 15px;
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .club-card:hover .club-logo-container {
            transform: scale(1.05);
            box-shadow: 0 12px 35px var(--shadow-color);
        }

        .club-card:hover .club-logo-container::before {
            transform: scale(1.2);
        }

        .club-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            border-radius: 10px;
            transition: all 0.4s ease;
            z-index: 2;
            position: relative;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
        }

        /* 日间模式下俱乐部logo增强显示效果 */
        :root .club-logo {
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) brightness(1.15) contrast(1.15);
        }

        /* 夜间模式保持原有效果 */
        [data-theme="dark"] .club-logo {
            filter: none;
        }

        .club-card:hover .club-logo {
            transform: scale(1.1);
            filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
        }

        /* 日间模式俱乐部logo hover效果 */
        :root .club-card:hover .club-logo {
            filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1)) brightness(1.25) contrast(1.25);
        }

        /* 夜间模式俱乐部logo hover效果 */
        [data-theme="dark"] .club-card:hover .club-logo {
            filter: none;
        }


        /* 俱乐部信息区域 */
        .club-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .club-name {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .club-id {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 15px;
            padding: 8px 15px;
            background: rgba(44, 122, 44, 0.1);
            border-radius: 15px;
            border: 1px solid var(--border-color);
        }

        .club-id span {
            font-weight: 700;
            color: var(--primary-color);
        }

        .club-description {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
        }

        .club-features {
            display: flex;
            gap: 8px;
            margin-bottom: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .club-tag {
            background: var(--primary-gradient);
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(44, 122, 44, 0.2);
            transition: all 0.3s ease;
        }

        .club-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(44, 122, 44, 0.3);
        }

        .club-actions {
            display: flex;
            gap: 12px;
            margin-top: auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-club-join,
        .btn-club-contact {
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-club-join {
            background: var(--secondary-gradient);
            color: var(--text-color);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .btn-club-join:hover {
            background: linear-gradient(45deg, #e6a000, #ffd700);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
            color: var(--text-color);
        }

        .btn-club-contact {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            border: 2px solid var(--border-color);
            backdrop-filter: blur(10px);
        }

        .btn-club-contact:hover {
            background: var(--primary-gradient);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(44, 122, 44, 0.3);
        }

        /* 联系方式区域 */
        .contact-section {
            padding: 40px 0;
            background: var(--surface-color);
            border-top: 1px solid var(--border-color);
        }

        .contact-buttons-wrapper {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* 移动端强制一行显示覆盖 */
        @media (max-width: 768px) {
            .contact-buttons-wrapper {
                flex-wrap: nowrap !important;
                gap: 8px !important;
                padding: 0 8px !important;
                justify-content: center !important;
                align-items: center;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box;
            }

            .contact-btn {
                flex: 1 1 auto !important;
                min-width: 110px !important;
                max-width: 140px !important;
                width: auto !important;
                padding: 12px 8px !important;
                font-size: 0.85rem !important;
                height: 52px !important;
                border-radius: 26px !important;
                gap: 3px !important;
                white-space: nowrap;
                overflow: visible !important;
                text-overflow: clip;
                margin: 0;
                display: flex !important;
                flex-direction: column !important;
                justify-content: center !important;
                align-items: center !important;
            }

            .contact-btn i {
                font-size: 1.4rem !important;
                flex-shrink: 0;
                margin-bottom: 3px;
            }

            .contact-btn span {
                font-size: 0.8rem !important;
                font-weight: 800 !important;
                overflow: visible !important;
                text-overflow: clip;
                white-space: nowrap;
                line-height: 1.1;
                display: block !important;
            }
        }

        .contact-btn {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            min-width: 140px;
            max-width: 160px;
            height: 48px;
            flex: 0 0 auto;
        }

        .contact-btn i {
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-btn span {
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1;
            white-space: nowrap;
        }

        .telegram-btn {
            background: linear-gradient(45deg, #0088cc, #229ed9);
        }

        .telegram-btn:hover {
            background: linear-gradient(45deg, #006699, #1a7db8);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
            color: white;
        }

        .whatsapp-btn {
            background: linear-gradient(45deg, #25d366, #128c7e);
        }

        .whatsapp-btn:hover {
            background: linear-gradient(45deg, #20b558, #0e6b5d);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
        }

        .line-btn {
            background: linear-gradient(45deg, #00c300, #00b300);
        }

        .line-btn:hover {
            background: linear-gradient(45deg, #009900, #008800);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 195, 0, 0.3);
            color: white;
        }

        /* 二维码弹窗 */
        .qr-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s ease;
        }

        .qr-modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--surface-color);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            max-width: 350px;
            width: 90%;
        }

        .qr-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            font-weight: bold;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .qr-close:hover {
            color: var(--text-color);
        }

        .qr-modal-content h3 {
            color: var(--text-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .qr-image {
            width: 200px;
            height: 200px;
            border-radius: 10px;
            border: 2px solid var(--border-color);
        }

        /* 游戏链接模块 */
        .game-links-section {
            padding: 40px 0;
            background: var(--bg-color);
        }

        .game-links-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }

        .game-links-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-gradient);
            border-radius: 2px;
        }

        .game-links-wrapper {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .game-link-card {
            background: var(--card-gradient);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px var(--shadow-color);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            flex: 1;
            max-width: 420px;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 游戏平台Logo容器 */
        .game-logo-container {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            background: var(--surface-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px var(--shadow-color);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid var(--border-color);
        }

        /* 日间模式下为游戏logo添加深色背景以增强显示效果 */
        :root .game-logo-container {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            border: 2px solid #34495e;
        }

        /* 夜间模式保持原有浅色背景 */
        [data-theme="dark"] .game-logo-container {
            background: var(--surface-color);
            border: 2px solid var(--border-color);
        }

        .game-logo-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
            border-radius: 15px;
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .game-link-card:hover .game-logo-container {
            transform: scale(1.05);
            box-shadow: 0 12px 35px var(--shadow-color);
        }

        .game-link-card:hover .game-logo-container::before {
            transform: scale(1.2);
        }

        .game-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            border-radius: 10px;
            transition: all 0.4s ease;
            z-index: 2;
            position: relative;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
        }

        /* 日间模式下游戏logo增强显示效果 */
        :root .game-logo {
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) brightness(1.1) contrast(1.1);
        }

        /* 夜间模式保持原有效果 */
        [data-theme="dark"] .game-logo {
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
        }

        .game-link-card:hover .game-logo {
            transform: scale(1.1);
        }

        /* 日间模式hover效果 */
        :root .game-link-card:hover .game-logo {
            filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1)) brightness(1.2) contrast(1.2);
        }

        /* 夜间模式hover效果 */
        [data-theme="dark"] .game-link-card:hover .game-logo {
            filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
        }

        .game-link-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.6s ease;
            pointer-events: none;
        }

        .game-link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow-color);
        }

        .game-link-card:hover::before {
            left: 100%;
        }

        .game-link-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--border-color);
        }

        .link-group {
            margin-bottom: 20px;
        }

        .link-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 10px;
            text-align: center;
        }

        .game-link {
            display: block;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid var(--primary-color);
            backdrop-filter: blur(5px);
            font-size: 0.9rem;
            word-break: break-all;
            text-align: center;
        }

        .official-btn {
            border: none;
            background: linear-gradient(45deg, #28a745, #20c997);
            color: white;
            font-weight: 700;
            border-radius: 30px;
            padding: 12px 20px;
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
            position: relative;
            overflow: hidden;
            font-size: 0.9rem;
            margin: 10px 0;
        }

        .official-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .backup-link {
            margin-bottom: 12px;
            border: none;
            background: linear-gradient(45deg, rgba(108, 117, 125, 0.2), rgba(108, 117, 125, 0.1));
            border-radius: 15px;
            padding: 15px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            display: block;
        }

        .backup-link:last-child {
            margin-bottom: 0;
        }

        .backup-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(108, 117, 125, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .backup-link:hover {
            background: linear-gradient(45deg, rgba(108, 117, 125, 0.3), rgba(108, 117, 125, 0.2));
            transform: translateY(-3px);
            color: var(--text-color);
            box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
        }

        .backup-link:hover::before {
            left: 100%;
        }

        .game-link:hover {
            background: rgba(44, 122, 44, 0.15);
            transform: translateX(5px);
            color: var(--primary-color);
        }

        .official-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
            color: white;
        }

        .official-btn:hover::before {
            left: 100%;
        }

        /* 响应式设计 */
        @media (min-width: 769px) {
            .game-card {
                text-align: center;
            }

            .game-item {
                justify-content: center;
                text-align: center;
            }

            .game-name {
                text-align: center;
                flex: none;
            }

            .game-details {
                display: none;
            }
        }

        /* 中等屏幕优化 - 四卡布局 */
        @media (max-width: 1200px) and (min-width: 769px) {
            .game-links-wrapper {
                gap: 20px;
            }

            .game-link-card {
                flex: 1;
                min-width: 280px;
                max-width: 350px;
            }

            .game-link-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .game-info-section {
                padding: 25px 0;
            }

            .game-info-section .container {
                padding-left: 10px;
                padding-right: 10px;
                max-width: 100vw;
                box-sizing: border-box;
            }

            .game-cards-wrapper {
                flex-direction: row;
                gap: 10px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .game-card {
                padding: 15px 10px;
                flex: 1;
                min-width: 0;
                box-sizing: border-box;
            }

            .card-title {
                font-size: 1.1rem;
                margin-bottom: 12px;
                padding-bottom: 12px;
            }

            .game-item {
                flex-direction: column;
                gap: 5px;
                text-align: center;
                padding: 10px;
            }

            .game-name,
            .game-details {
                font-size: 0.9rem;
                text-align: center;
            }

            .game-links-section .container {
                padding-left: 5px;
                padding-right: 5px;
                max-width: 100vw;
                box-sizing: border-box;
            }

            .game-links-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .game-links-wrapper {
                gap: 15px;
                flex-direction: column;
                width: 100%;
                max-width: 100%;
            }

            .game-link-card {
                margin-bottom: 0;
                margin-left: 0;
                margin-right: 0;
                width: 100%;
                max-width: none;
                min-width: auto;
                box-sizing: border-box;
            }

            /* 移动端游戏Logo响应式 */
            .game-logo-container {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
            }

            .game-logo {
                width: 45px;
                height: 45px;
            }

            .clubs-section .container {
                padding-left: 5px;
                padding-right: 5px;
                max-width: 100vw;
                box-sizing: border-box;
            }

            .clubs-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .clubs-wrapper {
                gap: 20px;
                flex-direction: column;
                width: 100%;
                max-width: 100%;
            }

            .club-card {
                margin: 0 auto;
                max-width: none;
                min-width: auto;
                width: 100%;
                padding: 25px;
                box-sizing: border-box;
            }

            .club-logo-container {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
            }

            .club-logo {
                width: 45px;
                height: 45px;
            }

            .club-name {
                font-size: 1.5rem;
            }

            .club-description {
                font-size: 0.9rem;
            }

            .club-actions {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

            .btn-club-join,
            .btn-club-contact {
                width: 100%;
                max-width: 200px;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .game-info-section {
                padding: 20px 0;
            }

            .game-info-section .container {
                padding-left: 8px;
                padding-right: 8px;
                max-width: 100vw;
                box-sizing: border-box;
            }

            .game-cards-wrapper {
                gap: 8px;
                width: 100%;
                max-width: 100%;
            }

            .game-card {
                padding: 12px 8px;
                min-width: 0;
                box-sizing: border-box;
            }

            .card-title {
                font-size: 1rem;
            }

            .game-name {
                font-size: 0.9rem;
            }

            .game-details {
                font-size: 0.85rem;
            }

            .game-links-section .container {
                padding-left: 5px;
                padding-right: 5px;
                max-width: 100vw;
                box-sizing: border-box;
            }

            .game-links-title {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }

            .game-links-wrapper {
                gap: 12px;
                flex-direction: column;
                width: 100%;
                max-width: 100%;
            }

            .game-link-card {
                margin-left: 0;
                margin-right: 0;
                width: 100%;
                max-width: none;
                min-width: auto;
                box-sizing: border-box;
            }

            /* 小屏幕游戏Logo响应式 */
            .game-logo-container {
                width: 50px;
                height: 50px;
                margin-bottom: 12px;
            }

            .game-logo {
                width: 38px;
                height: 38px;
            }

            .clubs-section .container {
                padding-left: 5px;
                padding-right: 5px;
                max-width: 100vw;
                box-sizing: border-box;
            }

            .clubs-title {
                font-size: 1.7rem;
                margin-bottom: 1.5rem;
            }

            .clubs-wrapper {
                gap: 15px;
                flex-direction: column;
                width: 100%;
                max-width: 100%;
            }

            .club-card {
                margin: 0 auto;
                max-width: none;
                min-width: auto;
                width: 100%;
                padding: 20px;
                box-sizing: border-box;
            }

            .club-logo-container {
                width: 50px;
                height: 50px;
                margin-bottom: 12px;
            }

            .club-logo {
                width: 38px;
                height: 38px;
            }

            .club-name {
                font-size: 1.3rem;
            }

            .club-description {
                font-size: 0.85rem;
            }

            .club-features {
                gap: 6px;
            }

            .club-tag {
                padding: 5px 10px;
                font-size: 0.75rem;
            }

            .btn-club-join,
            .btn-club-contact {
                width: 100%;
                max-width: 180px;
                margin: 0 auto;
                padding: 8px 20px;
                font-size: 0.85rem;
            }
        }

        /* 扑克筹码装饰 */
        .chip-decoration {
            position: fixed;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--feature-gradient);
            box-shadow: 0 8px 20px var(--shadow-color);
            z-index: -1;
            opacity: 0.3;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .chip-1 {
            top: 10%;
            right: 5%;
            animation: float 15s infinite ease-in-out;
        }

        .chip-2 {
            bottom: 10%;
            left: 5%;
            animation: float 20s infinite ease-in-out reverse;
        }

        /* 游戏画面轮播图样式 */
        .game-gallery-section {
            padding: 60px 0;
            background: var(--section-gradient);
            border-top: 1px solid var(--border-color);
        }

        .gallery-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .gallery-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-gradient);
            border-radius: 2px;
        }

        /* 游戏标签选择器 */
        .game-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 30px;
            border: 2px solid var(--border-color);
            background: var(--surface-color);
            color: var(--text-color);
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .tab-btn:hover {
            border-color: var(--primary-color);
            color: white;
        }

        .tab-btn:hover::before {
            left: 0;
        }

        .tab-btn.active {
            background: var(--primary-gradient);
            border-color: var(--primary-color);
            color: white;
            box-shadow: 0 4px 15px rgba(44, 122, 44, 0.3);
        }

        .tab-btn.active::before {
            left: 0;
        }

        /* 图片网格容器 */
        .images-grid-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .images-grid {
            display: none;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 20px;
        }

        .images-grid.active {
            display: grid;
        }

        .grid-item {
            position: relative;
            background: var(--surface-color);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px var(--shadow-color);
            transition: all 0.3s ease;
            cursor: pointer;
            aspect-ratio: 9/16;
        }

        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow-color);
        }

        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .grid-item:hover img {
            transform: scale(1.05);
        }


        .grid-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .grid-item:hover::after {
            opacity: 1;
        }

        /* 图片预览模态框 */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: relative;
            width: 90%;
            height: 90%;
            margin: 5% auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            font-weight: bold;
            color: white;
            cursor: pointer;
            z-index: 10000;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--secondary-color);
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .modal-btn {
            background: rgba(0, 0, 0, 0.7);
            border: none;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            pointer-events: all;
        }

        .modal-btn:hover {
            background: var(--primary-color);
            transform: scale(1.1);
        }

        /* 加载动画 */
        .carousel-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 600px;
            background: var(--surface-color);
            border-radius: 15px;
            font-size: 1.2rem;
            color: var(--text-light);
            border: 2px dashed var(--border-color);
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid var(--border-color);
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 15px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

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

        /* 图片模态框样式 */
        .image-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .image-modal.show {
            opacity: 1;
            visibility: visible;
        }

        .modal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90vw;
            max-height: 90vh;
            text-align: center;
        }

        .modal-close {
            position: absolute;
            top: -40px;
            right: -40px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            font-size: 24px;
            cursor: pointer;
            z-index: 10001;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }

        .modal-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .modal-caption {
            color: white;
            margin-top: 15px;
            font-size: 16px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .gallery-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .game-tabs {
                gap: 10px;
                margin-bottom: 30px;
            }

            .tab-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .images-grid {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 0;
                padding: 20px;
                justify-items: center;
            }

            .grid-item {
                aspect-ratio: 9/16;
                max-width: 280px;
                width: 100%;
            }

            .mobile-single-image {
                transition: opacity 0.5s ease;
            }

            .mobile-single-image img {
                border-radius: 12px;
                transition: opacity 0.5s ease;
            }

            .modal-close {
                top: 10px;
                right: 10px;
                width: 32px;
                height: 32px;
                font-size: 20px;
            }

            .modal-content {
                max-width: 95vw;
                max-height: 95vh;
            }

            .modal-image {
                max-height: 75vh;
            }

            .modal-caption {
                font-size: 14px;
                margin-top: 10px;
            }
        }

        @media (max-width: 576px) {
            .gallery-title {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }

            .game-selector {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .selector-btn {
                width: 200px;
                padding: 8px 16px;
                font-size: 0.85rem;
            }

            .game-carousel-container {
                max-width: 280px;
                padding: 10px;
            }

            .carousel-wrapper {
                height: 450px;
            }

            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .prev-btn {
                left: 5px;
            }

            .next-btn {
                right: 5px;
            }

            .carousel-indicators {
                gap: 8px;
            }

            .indicator-dot {
                width: 8px;
                height: 8px;
            }
        }