:root {
    /* 核心配色 - 深橙主题 */
    --primary-color: #E65100;       /* 主色 - 深橙色（Material Deep Orange 900）*/
    --secondary-color: #EF6C00;     /* 辅助色 - 稍亮的深橙 */
    --background-color: #FFFFFF;    /* 背景色 - 纯白 */
    --surface-color: #FBE9E7;       /* 表面色 - 极浅橙白（Material Deep Orange 50）*/
    --error-color: #DD2C00;         /* 错误色 - 深橙红 */
    
    /* 文字配色 */
    --on-primary: #FFFFFF;          /* 主色上的文字 - 白色 */
    --on-secondary: #FFFFFF;        /* 辅助色上的文字 - 白色 */
    --on-background: #212121;       /* 背景上的文字 - 深灰 */
    --on-surface: #212121;          /* 表面上的文字 - 深灰 */
    --on-error: #FFFFFF;            /* 错误色上的文字 - 白色 */
}

body {
    background-color: var(--background-color);
    color: var(--on-background);
    font-family: 'Segoe UI', sans-serif;
}

/* 头部/底部样式 */
header, footer {
    background-color: var(--primary-color);  /* 使用深橙作为导航背景 */
    color: var(--on-primary);
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 导航链接 */
nav ul li a, .footer-links a {
    color: var(--on-primary);
    transition: all 0.3s ease;
}

nav ul li a:hover, .footer-links a:hover {
    color: #FFE0B2;  /* 悬停时变为浅橙色 */
    text-decoration: underline;
}

/* 游戏详情图片 */
.game-detail-image {
    margin: 2rem auto;
    text-align: center;
}

.game-detail-image img {
    width: 205px;
    height: 205px;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);  /* 添加深橙色边框 */
    box-shadow: 0 4px 8px rgba(230, 81, 0, 0.2);
}

/* 播放按钮 */
.play-button {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
}

.play-button a {
    display: inline-block;
    background-color: var(--primary-color);  /* 使用深橙色 */
    color: var(--on-primary);
    padding: 15px 40px;
    border-radius: 30px;  /* 更圆润的按钮 */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.play-button a:hover {
    background-color: var(--secondary-color);  /* 悬停变亮 */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}