/* Body styling */
body {
    background-color: #4e8656;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/*Entire Website in here */
.website{
    width: 1100px;
    margin: 0 auto;
    padding: 0;
}

/*Navigation Bar */
.navBar {
    position: relative;
    width: 100%;
    height: 40px;
    border-radius: 10px 10px 0 0;
    background-color: gray;
    display: flex;
    box-sizing: border-box;
}

/* Style the links inside the navigation bar */
.navBar a {
    flex: 1;
    color: #f2f2f2;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px 0;
    text-align: center;
    display: block;
    transition: background-color 0.3s;
}

/* Change the color of links on hover */
.navBar a:hover {
    background-color: #ddd;
    color: black;
}

/* Game container */
.gameContainer {
    position: relative;
    width: 100%;
    height: 560px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    background-image: url('images/backgrounds/Start_Screen_Beta.png');
    background-size: cover;
    box-sizing: border-box;
}

.gameContainer button {
    position: absolute;
    bottom: 7%;
    left: 40%;
    width: 200px;
    height: 60px;
    background: radial-gradient(circle,#417e4b, #0c4b15);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
}

.gameContainer button:hover {
    background: #3c6944;
}

/* Play as Guest — sits to the right of Start, golden so it pops */
.gameContainer #guestButton {
    left: auto;
    right: 14%;
    width: 220px;
    background: radial-gradient(circle, #e0a52f, #8a5a08);
    font-size: 22px;
    line-height: 1.1;
}

.gameContainer #guestButton:hover {
    background: #b07f1d;
}

.gameContainer #guestButton .guest-note {
    display: block;
    font-size: 12px;
    font-weight: normal;
    opacity: 0.85;
}
