/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #e6e6e6;
    font-family: Arial, sans-serif;
}

/* TOP BANNER */
.top-banner {
    width: 100%;
    background: #0a0a0a;
    border-bottom: 2px solid #00aaff;
    padding: 20px 0;
}

/* FLEXBOX FOR TITLE + NAV */
.banner-inner {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between; /* LEFT + RIGHT */
    align-items: center;            /* SAME LINE */
}

/* LEFT SIDE TITLE */
.banner-text h1 {
    font-size: 2.4rem;
    color: #00a0ff;
    margin-bottom: 4px;
}

.banner-text p {
    font-size: 1.1rem;
    color: #b8b8b8;
}

/* RIGHT SIDE NAV TABS */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 14px;
    border-radius: 4px;
    transition: 0.2s;
}

.navbar a:hover {
    background-color: #00aaff;
    color: #000;
}

/* SECTIONS */
.section {
    padding: 60px 10%;
    text-align: center;
    background: #0a0a0a;
}

.section.dark {
    background: #111;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00aaff;
}

/* GAME LIST */
.game-list {
    margin: 20px auto;
    max-width: 600px;
}

.game {
    margin: 10px 0;
    font-size: 1.2rem;
}

/* BUTTONS */
.button {
    display: inline-block;
    margin: 15px;
    padding: 12px 25px;
    background: #00aaff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.2s;
}

.button:hover {
    background: #0088cc;
}

/* FOOTER */
.footer {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #0a0a0a;
    border-top: 2px solid #00aaff;
    margin-top: 40px;
}

.footer p {
    font-size: 1rem;
    color: #b8b8b8;
}

.footer span {
    color: #00aaff;
    font-weight: bold;
}

.logo {
    height: 50px;   /* adjust this number to make it smaller or bigger */
    width: auto;
}
