/* style/contact.css */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #0a0a0a;
            color: #ccc;
            line-height: 1.6;
            background-image: radial-gradient(circle at 20% 20%, #2a2a2a, #0a0a0a);
            min-height: 100vh;
            display: flex;
            justify-content: center;
        }
        
        .container {
            width: 1200px;
            margin: 0 auto;
            background-color: #1a1a1a;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
            border-left: 1px solid #333;
            border-right: 1px solid #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        /* ========== 顶部导航区域 ========== */
        .header-wrapper {
            position: relative;
            width: 100%;
            border-bottom: 3px solid #d4a762;
        }
        
        .banner-image-container {
            width: 100%;
            font-size: 0;
            line-height: 0;
        }
        
        .banner-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .banner-text-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            background: rgba(0, 0, 0, 0.55);
            padding: 16px 35px;
            border-radius: 8px;
            border: 1px solid #8b4513;
            color: #f0e6d2;
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
            letter-spacing: 3px;
            white-space: nowrap;
            pointer-events: none;
        }
        
        .nav-menu-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to bottom, rgba(20,20,20,0.55), rgba(0,0,0,0.9));
            padding: 20px 0 18px 0;
            backdrop-filter: blur(4px);
            border-top: 1px solid rgba(212, 167, 98, 0.35);
            z-index: 10;
        }
        
        .nav-menu-overlay ul {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .nav-menu-overlay li {
            position: relative;
        }
        
        .nav-menu-overlay a {
            color: #f0e6d2;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            padding: 10px 24px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: inline-block;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
            background: rgba(0,0,0,0.45);
            border: 1px solid rgba(212, 167, 98, 0.35);
        }
        
        .nav-menu-overlay a:hover {
            color: #fff;
            background: linear-gradient(to bottom, #b8863c, #7a4d1a);
            border-color: #f0c27a;
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6), 0 0 14px rgba(212, 167, 98, 0.5);
            text-shadow: 0 0 8px rgba(255,215,0,0.7);
        }
        
        .nav-menu-overlay a.active {
            color: #fff;
            background: linear-gradient(to bottom, #8b4513, #5d2f0a);
            border-color: #d4a762;
        }
        
        /* 内容区域 */
        .content {
            padding: 30px 35px;
            background-color: #1f1f1f;
            color: #ccc;
        }
        
        .section-title {
            font-size: 24px;
            color: #d4a762;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #8b4513;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* 重要公告 */
        .notice-section {
            margin-bottom: 35px;
        }
        
        .important-notice {
            background: linear-gradient(145deg, #2a2218, #1a1815);
            border: 2px solid #d4a762;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 167, 98, 0.1);
            transition: all 0.3s ease;
        }
        
        .important-notice:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 167, 98, 0.2);
            border-color: #e6c27a;
        }
        
        .notice-title {
            color: #e6c27a;
            font-size: 24px;
            margin-bottom: 18px;
            text-align: center;
            font-weight: bold;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(212, 167, 98, 0.3);
        }
        
        .notice-content p {
            margin-bottom: 16px;
            color: #c5b89e;
            line-height: 1.8;
        }
        
        .highlight {
            color: #e6c27a;
            font-weight: bold;
            font-size: 17px;
        }
        
        /* 游戏特色 */
        .features-section {
            margin-bottom: 35px;
        }
        
        .features-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
        }
        
        .feature-box {
            flex: 0 0 calc(50% - 10px);
            background: linear-gradient(145deg, #252525, #1a1a1a);
            border: 1px solid #3a3a3a;
            border-radius: 10px;
            padding: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
        }
        
        .feature-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
            border-color: #d4a762;
        }
        
        .feature-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: linear-gradient(145deg, #8b4513, #5d2f0a);
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f0e6d2;
            font-size: 30px;
            border: 3px solid #d4a762;
            box-shadow: 0 0 15px rgba(212, 167, 98, 0.3);
        }
        
        .feature-title {
            font-size: 19px;
            font-weight: bold;
            color: #f0e6d2;
            margin-bottom: 12px;
            text-align: center;
        }
        
        .feature-desc {
            color: #999;
            line-height: 1.7;
            text-align: center;
            font-size: 14px;
        }
        
        /* 常见问题 */
        .faq-section {
            margin-bottom: 35px;
        }
        
        .faq-container {
            background: linear-gradient(145deg, #252525, #1a1a1a);
            border: 1px solid #3a3a3a;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }
        
        .faq-container:hover {
            border-color: #d4a762;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        
        .faq-item {
            margin-bottom: 22px;
            padding-bottom: 18px;
            border-bottom: 1px dashed #444;
        }
        
        .faq-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .faq-question {
            font-weight: bold;
            color: #f0e6d2;
            margin-bottom: 10px;
            font-size: 17px;
        }
        
        .faq-answer {
            color: #aaa;
            line-height: 1.7;
        }
        
        /* 玩家社区 */
        .community-section {
            background: linear-gradient(to bottom, #1e1e1e, #111);
            padding: 35px 30px;
            border-radius: 10px;
            border: 2px solid #8b4513;
            margin-bottom: 35px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.5);
        }
        
        .community-title {
            text-align: center;
            color: #e6c27a;
            font-size: 26px;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px #000;
            letter-spacing: 3px;
        }
        
        .community-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        
        .community-box {
            flex: 1;
            background: #252525;
            border: 1px solid #444;
            border-radius: 10px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 6px 14px rgba(0,0,0,0.5);
        }
        
        .community-box:hover {
            transform: translateY(-10px);
            border-color: #d4a762;
            box-shadow: 0 12px 24px rgba(0,0,0,0.7);
        }
        
        .community-icon {
            font-size: 45px;
            color: #d4a762;
            margin-bottom: 18px;
        }
        
        .community-box h3 {
            color: #f0e6d2;
            font-size: 20px;
            margin-bottom: 12px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        
        .community-box p {
            color: #aaa;
            margin-bottom: 18px;
            font-size: 14px;
        }
        
        .community-btn {
            display: inline-block;
            background: linear-gradient(to bottom, #b87333, #7a3e1a);
            color: #fff;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 0 #4a2a10;
            letter-spacing: 1px;
        }
        
        .community-btn:hover {
            background: linear-gradient(to bottom, #d4944c, #9c5525);
            transform: translateY(-3px);
            box-shadow: 0 8px 0 #4a2a10;
        }
        
        .community-btn:active {
            transform: translateY(1px);
            box-shadow: 0 3px 0 #4a2a10;
        }
        
        /* 页脚 */
        footer {
            background: #0f0f0f;
            color: #888;
            text-align: center;
            padding: 25px 0;
            font-size: 15px;
            border-top: 2px solid #8b4513;
            margin-top: auto;
        }
        
        footer p {
            margin: 5px 0;
        }
        
        @media (max-width: 1200px) {
            .container {
                width: 100%;
            }
            .nav-menu-overlay a {
                font-size: 18px;
                padding: 8px 16px;
            }
            .nav-menu-overlay ul {
                gap: 20px;
            }
            .banner-text-overlay {
                font-size: 22px;
                padding: 12px 25px;
                white-space: normal;
                text-align: center;
            }
            .feature-box {
                flex: 0 0 100%;
            }
            .community-container {
                flex-direction: column;
            }
        }