body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.container {
    max-width: 1000px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
nav a, nav span, nav form {
    margin-right: 15px;
}
.review-card {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
h1, h2 {
    color: #333;
}
a {
    color: #007BFF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
button, input[type="submit"] {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}
/* 顶栏样式 */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-area img {
    height: 50px;
    margin-right: 15px;
}

.logo-area h1 {
    margin: 0;
    font-size: 1.8rem;
}

nav a, nav span, nav form {
    margin-left: 15px;
}

nav button {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 1rem;
}

/* ========== 评论区及按钮美化样式 ========== */
.comment {
    background: #f9f9f9;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 3px solid #007bff;
}

.comment-date {
    font-size: 0.85em;
    color: #666;
    margin-left: 10px;
}

.comment-form {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 20px 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

textarea.form-control {
    resize: vertical;
}

.btn-submit {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0056b3;
}

.vote-buttons {
    margin-top: 20px;
}

.vote-btn {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.like-btn {
    background-color: #28a745;
    color: white;
}

.like-btn:hover {
    background-color: #218838;
}

.dislike-btn {
    background-color: #dc3545;
    color: white;
}

.dislike-btn:hover {
    background-color: #c82333;
}
.game-item {
    margin-bottom: 20px;
    overflow: auto;
}
.game-item img {
    max-width: 100px;
    border-radius: 8px;
}