/* 全局基础样式 - 黑金风格 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #e6edf3;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: -1;
}

/* 全局烟花动画 */
.global-fireworks {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

/* 主容器 */
.container {
    max-width: 1200px;
    margin: 140px auto 60px;
    padding: 0 24px;
}

/* 页面标题 */
.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-title {
    font-size: 42px;
    font-weight: 600;
    color: #e6edf3;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 16px;
    color: #8b949e;
}

.page-subtitle a {
    color: #efc49b;
    text-decoration: none;
    transition: opacity 0.3s;
}

.page-subtitle a:hover {
    opacity: 0.8;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #8b949e;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

/* 响应式 - 容器 */
@media (max-width: 768px) {
    .container {
        margin-top: 90px;
        padding: 0 16px;
    }

    .page-title {
        font-size: 32px;
    }
}
