/* 
 * 游戏辅助商城基础样式
 * 包含全局样式、通用组件和布局结构
 */

/* 基础样式 */
html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #1a1a2e !important;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-content {
    min-height: 500px;
}

/* 通用按钮样式 */
.btn {
    display: inline-block;
    background: linear-gradient(to right, #4a00e0, #00d8ff);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

/* 标题样式 */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #00d8ff;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #a0aec0;
    max-width: 700px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4a00e0, #00d8ff);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* 通用部分样式 */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: #1a1a2e;
} 