/* GameBlon 主题样式 */
:root {
    --primary-color: #0071e3;
    --secondary-color: #f5f5f7;
    --text-color: #1d1d1f;
    --light-text: #86868b;
    --dark-bg: #1d1d1f;
}

/* 基础样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 导航栏样式 */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.text-primary {
    color: var(--primary-color);
}

/* 按钮样式 */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background-color: #0062c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
    transform: translateY(0);
}

/* 游戏容器 */
.game-container {
    height: 600px;
    max-height: 90vh;
    transition: transform 0.3s ease;
}

.game-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 响应式样式 */
@media (max-width: 768px) {
    .game-container {
        height: 450px;
    }
    
    .section {
        padding: 2rem 1rem;
    }
}

/* 背景颜色 */
.bg-apple-gray {
    background-color: var(--secondary-color);
}

.text-apple-gray {
    color: var(--light-text);
}

/* 部分样式 */
.section {
    padding: 3rem 1.5rem;
}

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

.animate-fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

/* 移动菜单 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 100;
    animation: fadeIn 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-link {
    font-size: 1.5rem;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--primary-color);
} 