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

body {
    font-family: 'Roboto', sans-serif;
    background: #1c1c1c;
    color: white;
    scroll-behavior: smooth;
}

#navbar {
    background: #2c2c2c;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#navbar .logo img {
    height: 50px;
}

#navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

#navbar li {
    margin: 0 15px;
}

#navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
}

#navbar a:hover {
    background-color: #edc229;
    color: #1c1c1c;
    border-radius: 5px;
}

.balance {
    display: flex;
    align-items: center;
    color: #edc229;
    font-weight: bold;
}

.banana-icon {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.hero {
    position: relative;
    text-align: center;
    margin-top: 60px; /* Adjust for the fixed navbar */
}

.hero-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero-text h1 {
    margin-bottom: 10px;
    font-size: 48px;
    font-weight: bold;
    color: #edc229;
}

.hero-text h3 {
    margin-top: 0px;
    font-size: 24px;
}

.content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background: #2c2c2c;
    margin: 20px 0;
    border-radius: 10px;
    gap: 20px;
}

.content-text {
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #edc229;
}

.content-text p {
    font-size: 18px;
    line-height: 1.6;
}

input[type="number"] {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: #1c1c1c;
    background-color: #edc229;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #d4a020;
}

#dice-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.dice {
    width: 50px;
    height: 50px;
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer {
    background: #2c2c2c;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-image {
    width: 100px;
    height: auto;
}

.footer-text {
    color: white;
    font-size: 14px;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    margin: 0 10px;
    display: inline-block;
}

.social-media img {
    width: 24px;
    height: 24px;
}

.bottombar {
    background: #1c1c1c;
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid #444;
}

.bottombar-content {
    color: white;
    font-size: 14px;
}

.bottombar a {
    color: #edc229;
    text-decoration: none;
}

.bottombar a:hover {
    text-decoration: underline;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}