/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 页面主体样式 */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* 容器样式，用于内容居中 */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 主内容区域 */
main {
    padding: 40px 0;
}

/* 页脚样式 */
footer {
    background-color: rgba(10, 10, 10, 0.9);
    padding: 30px 0;
    margin-top: 60px;
    border-top: 2px solid #8B0000;
    text-align: center;
}

/* 页脚内容布局 */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* 版权信息 */
.copyright {
    color: #aaa;
    font-size: 0.9rem;
}

/* 社交链接 */
.social-links {
    display: flex;
    gap: 20px;
}

/* 社交链接图标 */
.social-links a {
    color: #e0e0e0;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

/* 社交链接悬停效果 */
.social-links a:hover {
    color: #FF4500;
}