/* Body styling */
body {
    background-color: #4e8656;
}

/*Entire Website in here */
.website{
    width: 1100px;
    margin: 0 auto;
    padding: 0 20px; /* prevents content touching edges on small screens */
}

/*Navigation Bar */
.navBar {
    position: relative;
    width: 100%;
    height: 40px;
    border-radius: 10px 10px 0 0;
    background-color: gray;
    display: flex;           /* Use flexbox for layout */
}

/* Style the links inside the navigation bar */
.navBar a {
    flex: 1;                 /* Each link gets equal width */
    color: #f2f2f2;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px 0;         /* Vertical padding only */
    text-align: center;      /* Center text */
    display: block;          /* Make the whole area clickable */
    transition: background-color 0.3s; /* Smooth transition for hover */
}

/* Change the color of links on hover */
 .navBar a:hover {
    background-color: #ddd;
    color: black;
}

/* Game container */
.gameContainer {
    position: relative;
    width: 1100px;
    min-height: 560px; /* Changed from fixed height */
    border-radius: 0 0 10px 10px;
    background: radial-gradient(circle, #6eaf78, #315436);
    padding: 40px 60px; /* Added padding for content spacing */
    text-align: left; /* Align text to left */
    box-sizing: border-box;
}

/* Content styling */
.gameContainer h1 {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.gameContainer h2 {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.gameContainer p {
    color: #f0f0f0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.gameContainer ul {
    color: #f0f0f0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 20px;
}

.gameContainer li {
    margin-bottom: 8px;
}

