/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f1e1;  /* Light vintage beige background */
    color: #3a2d2b;  /* Dark brown text */
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: #4b3c31;  /* Dark brown for headings */
}

h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-game-container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.about-game-nav {
    background-color: #3a2d2b;
    padding: 10px 0;
    text-align: center;
}

.about-game-nav ul {
    list-style: none;
}

.about-game-nav ul li {
    display: inline;
    margin: 0 20px;
}

.about-game-nav a {
    color: #f5f4f0;  /* Golden color for links */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.about-game-nav a:hover {
    color: #e67e22;  /* Hover effect with orange tone */
}

.game-description-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #faf3e0;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.game-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.game-image {
    width: 200px;
    height: auto;
    margin-right: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.game-text {
    max-width: 70%;
}

.game-text h2 {
    font-size: 1.8rem;
    margin: 10px 0;
}

.game-text h3 {
    font-size: 1.4rem;
    margin-top: 10px;
    font-weight: bold;
}

.game-text ul {
    margin-left: 20px;
}

.game-text ul li {
    margin: 5px 0;
}

.game-text p {
    margin-top: 10px;
    font-size: 1rem;
}

.home-button-section {
    text-align: center;
    margin-top: 30px;
}

.btn-primary {
    background-color: #f1c40f;  /* Golden button */
    color: #3a2d2b;
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #e67e22;  /* Hover effect with orange tone */
    transition: background-color 0.3s ease;
}

footer {
    background-color: #3a2d2b;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 1rem;
    margin-top: 10px;
}

