body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #F4F7FD; /* 设定一个更亮朗的背景色 */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #A284D4; /* 使用Logo中的紫色作为导航栏背景 */
}

.logo {
    width: 100px; /* 根据Logo实际大小进行调整 */
    height: auto;
    border-radius: 10px; /* 增加圆角效果 */
}

header {
    color: white;
}

header nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.game-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.game-card {
    width: 300px;
    margin: 15px;
    background: white; /* 保持游戏卡片背景为白色，以确保游戏信息的清晰度 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    border: 1px solid #D3D3D3; /* 轻微的边框以增强视觉效果 */
}

.game-card img {
    width: 100%;
    height: auto;
    border-radius: 15px; /* 增加圆角效果 */
}


.game-card h2 {
    margin: 15px 0 10px;
    color: #4B387A; /* 使用Logo中的紫色为标题文字颜色 */
}

.game-card p {
    color: #555;
}

.game-card a {
    display: block;
    background-color: #6C5B7B; /* 按钮采用较深的紫色，与Logo渐变相协调 */
    color: white;
    padding: 10px;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.game-card a:hover {
    background-color: #355C7D; /* 当鼠标悬停时按钮颜色变为Logo中的蓝色 */
}

footer {
    background: #A284D4;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-content a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #355C7D; /* 链接在鼠标悬停时的颜色 */
}

.footer-content p {
    margin: 10px 0;
}

/* Rest of the CSS remains the same */
/* about us */
.about-section {
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
}

.company-info {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 40px;
}

.slogan {
    font-size: 1.5em;
    color: #6C5B7B;
    margin-bottom: 40px;
}

.team-member {
    margin-bottom: 40px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: auto;
    border-radius: 10px;
}

.team-member h2 {
    color: #4B387A;
    margin-top: 10px;
}

.team-member h3 {
    color: #6C5B7B;
    margin-bottom: 10px;
}

.team-member p {
    color: #555;
    line-height: 1.6;
}

/* contact us */
.contact-section {
    padding: 20px;
    background: #f9f9f9;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h1 {
    color: #4B387A;
    margin-bottom: 20px;
}

.contact-section p {
    color: #555;
    margin-bottom: 20px;
}

.contact-info {
    text-align: left;
    margin-top: 20px;
}

.contact-info h2 {
    color: #4B387A;
    margin-bottom: 10px;
}

.contact-info p {
    color: #333;
    line-height: 1.6;
}

.contact-info a {
    color: #6C5B7B;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* jobs */
.jobs-section {
    padding: 20px;
    background: #f9f9f9;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.jobs-section h1 {
    color: #4B387A;
    margin-bottom: 20px;
}

.jobs-section p {
    color: #555;
    margin-bottom: 20px;
}

.job-listing {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: left;
}

.job-listing h2 {
    color: #4B387A;
    margin-bottom: 10px;
}

.job-listing p {
    color: #555;
}

.job-listing ul {
    color: #555;
    padding-left: 20px;
    text-align: left;
}
