/* style/contact.css */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            background-image: linear-gradient(to bottom, #3a3a3a, #2a2a2a);
            min-height: 100vh;
        }
        
        .container {
            width: 1024px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            border-left: 1px solid #555;
            border-right: 1px solid #555;
        }
        
        /* 顶部导航 */
        .top-nav {
            background: linear-gradient(to bottom, #4a4a4a, #2a2a2a);
            padding: 12px 0;
            border-bottom: 2px solid #8b4513;
        }
        
        .top-nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .top-nav li {
            margin: 0 25px;
            position: relative;
        }
        
        .top-nav a {
            color: #d4d4d4;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            z-index: 1;
        }
        
        .top-nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, #8b4513, #5d2f0a);
            border-radius: 4px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .top-nav a:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        }
        
        .top-nav a:hover::before {
            opacity: 1;
        }
        
        .top-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #d4a762;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .top-nav a:hover::after {
            width: 80%;
        }
        
        /* 顶部图片 */
        .top-banner {
            width: 1024px;
            height: 388px;
            background: #3a3a3a;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4d4d4;
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            border-bottom: 3px solid #8b4513;
            position: relative;
            overflow: hidden;
        }
        
        .top-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .top-banner-text {
            position: absolute;
            z-index: 2;
            background: rgba(0, 0, 0, 0.5);
            padding: 15px 30px;
            border-radius: 8px;
            border: 1px solid #8b4513;
        }
        
        /* 内容区域 */
        .content {
            padding: 25px;
            background-color: #f8f8f8;
        }
        
        /* 重要公告 */
        .notice-section {
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 24px;
            color: #444;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #8b4513;
            font-weight: bold;
        }
        
        .important-notice {
            background: linear-gradient(to bottom, #fff8e1, #ffecb3);
            border: 2px solid #ff9800;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .notice-title {
            color: #e65100;
            font-size: 22px;
            margin-bottom: 15px;
            text-align: center;
            font-weight: bold;
        }
        
        .notice-content p {
            margin-bottom: 15px;
            color: #5d4037;
            line-height: 1.7;
        }
        
        .highlight {
            color: #d84315;
            font-weight: bold;
        }
        
        /* 游戏特色 */
        .features-section {
            margin-bottom: 30px;
        }
        
        .features-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
        }
        
        .feature-box {
            flex: 0 0 calc(50% - 10px);
            background: linear-gradient(to bottom, #e8e8e8, #d8d8d8);
            border: 1px solid #b8b8b8;
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
            border-color: #8b4513;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #8b4513;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 28px;
            border: 2px solid #d4a762;
        }
        
        .feature-title {
            font-size: 18px;
            font-weight: bold;
            color: #444;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .feature-desc {
            color: #666;
            line-height: 1.6;
            text-align: center;
        }
        
        /* 常见问题 */
        .faq-section {
            margin-bottom: 30px;
        }
        
        .faq-container {
            background: linear-gradient(to bottom, #e8e8e8, #d8d8d8);
            border: 1px solid #b8b8b8;
            border-radius: 8px;
            padding: 25px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #b8b8b8;
        }
        
        .faq-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .faq-question {
            font-weight: bold;
            color: #444;
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        .faq-answer {
            color: #666;
            line-height: 1.6;
        }
        
        /* 玩家社区 */
        .community-section {
            background: linear-gradient(to bottom, #3a3a3a, #2a2a2a);
            padding: 30px 25px;
            border-radius: 8px;
            border: 2px solid #8b4513;
            margin-bottom: 30px;
        }
        
        .community-title {
            text-align: center;
            color: #d4a762;
            font-size: 24px;
            margin-bottom: 25px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .community-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        
        .community-box {
            flex: 1;
            background: linear-gradient(to bottom, #4a4a4a, #3a3a3a);
            border: 1px solid #5d5d5d;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .community-box:hover {
            transform: translateY(-5px);
            border-color: #8b4513;
        }
        
        .community-icon {
            font-size: 40px;
            color: #d4a762;
            margin-bottom: 15px;
        }
        
        .community-box h3 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .community-box p {
            color: #aaa;
            margin-bottom: 15px;
        }
        
        .community-btn {
            display: inline-block;
            background: linear-gradient(to bottom, #8b4513, #5d2f0a);
            color: #fff;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 0 #3a1f06;
        }
        
        .community-btn:hover {
            background: linear-gradient(to bottom, #9c5523, #6d3f1a);
            transform: translateY(-3px);
            box-shadow: 0 7px 0 #3a1f06;
        }
        
        /* 页脚 */
        footer {
            background: linear-gradient(to bottom, #4a4a4a, #2a2a2a);
            color: #aaa;
            text-align: center;
            padding: 20px 0;
            font-size: 14px;
            border-top: 2px solid #8b4513;
        }
        
        footer p {
            margin: 5px 0;
        }