/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5dc; /* Light brown / Beige */
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header Styles */
header {
    background: #4a2c2a; /* Dark Coffee Brown */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header a {
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
}

/* Main Content */
main {
    padding: 20px 0;
}

/* Game Cards on Index Page */
.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.game-card {
    background: #fff;
    border: 1px solid #6f4e37; /* Coffee Brown border */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card h3 {
    color: #4a2c2a; /* Dark Coffee Brown */
    margin-top: 0;
}

.game-card a {
    display: inline-block;
    background: #a0522d; /* Sienna */
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
}

.game-card a:hover {
    background: #8b4513; /* SaddleBrown - slightly darker sienna */
}

/* Game Page Specific Styles (from game-template.html's style block) */
.tab-container {
    display: flex;
    border-bottom: 1px solid #6f4e37; /* Coffee Brown */
    margin-bottom: 20px;
    justify-content: center; /* Center the tabs */
}
.tab-button {
    padding: 10px 15px;
    cursor: pointer;
    border: 1px solid #6f4e37; /* Coffee Brown */
    border-bottom: none;
    background-color: #e0d5c3; /* Lighter beige */
    margin-right: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.tab-button.active {
    background-color: #f5f5dc; /* Light brown / Beige */
    border-color: #6f4e37;
    border-bottom: 1px solid #f5f5dc;
}
.tab-content {
    display: none;
    padding: 20px;
    background: #f5f5dc; /* Light brown / Beige */
    border: 1px solid #6f4e37; /* Coffee Brown */
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.tab-content.active {
    display: block;
}

.game-images img, .activity-entry img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.activity-entry {
    background: #e0d5c3; /* Lighter beige */
    border: 1px solid #6f4e37; /* Coffee Brown */
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

.activity-entry h3 {
    margin-top: 0;
    color: #a0522d; /* Sienna */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    background: #4a2c2a; /* Dark Coffee Brown */
    color: #fff;
    margin-top: 20px;
}

img {
    max-height: 400px;
    min-height: 400px;
}
