html, body {
    height: 100%;
}

body {
    margin: 0px;
    padding: 0px;
    background: #000000 url(images/bg01.jpg) repeat;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12pt;
    font-weight: 300;
    color: #363636;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
}

p, ol, ul {
    margin-top: 0;
}

ol, ul {
    padding: 0;
    list-style: none;
}

p {
    line-height: 180%;
}

strong {
}

a {
    color: #1492C4;
}

a:hover {
    text-decoration: none;
}

.container {
    overflow: hidden;
    margin: 0em auto;
    width: 1200px;
}

/* Header */

#header-wrapper {
    background: #1E1B1A url(images/king-logo.jpg) repeat;
}

#header {
    position: relative;
    height: 150px;
}

#logo {
    position: absolute;
    top: 4em;
    left: 0;
    width: 100%;
}

#logo h1 {
    display: inline-block;
    font-size: 2.5em;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFF;
}

#logo a {
    text-decoration: none;
    color: #FFF;
}

#menu {
    position: absolute;
    right: 0;
    top: 4.5em;
}

#menu ul {
    display: inline-block;
}

#menu li {
    display: block;
    float: left;
    text-align: center;
}

#menu li a, #menu li span {
    display: block;
    padding: 0.80em 1.5em;
    letter-spacing: 0.20em;
    text-decoration: none;
    font-size: 0.90em;
    font-weight: 600;
    text-transform: uppercase;
    outline: 0;
    color: #FFF;
}

#menu li:hover a, #menu li.active a, #menu li.active span {
    background: #1492C4;
    border-radius: 5px;
}

#menu .current_page_item a {
    color: #FFF;
}

/* Banner */

#header-featured {
    height: 30em;
    background-image: url(images/banner.jpg);
    background-position: center;
    background-size: cover;
}

#banner-wrapper {
}

#banner {
    overflow: hidden;
    width: 1000px;
    text-align: center;
    color: rgba(255,255,255,.7);
    font-weight: 200;
}

#banner a {
    color: rgba(255,255,255,.9);
}

.main-header {
    padding: 8em 0em 10em 0em;
}

.main-header h2 {
    font-size: 4em;
    font-weight: 400;
    color: #FFF;
    line-height: 1em;
}

.main-header .byline {
    font-size: 2em;
}

/* Featured */

#featured-wrapper {
    overflow: hidden;
    padding: 5em 0em;
    background: #FFF;
}

#featured {
    overflow: hidden;
}

#featured .main-title {
    margin-bottom: 4em;
}

#featured .main-title h2 {
    font-size: 1.8em;
}

#featured .main-title .byline {
    font-size: 1.1em;
}

.column1,
.column2,
.column3,
.column4 {
    width: 282px;
}

.column1,
.column2 {
    float: left;
    margin-right: 24px;
}

.column3 {
    float: left;
}

.column4 {
    float: right;
}

/* Games Grid */

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 2em;
}

.game-item {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 1em;
    text-align: center;
    transition: transform 0.3s ease;
}

.game-item:hover {
    transform: translateY(-5px);
}

.game-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1em;
}

.game-item h3 {
    margin: 0;
    font-size: 1.2em;
}

.games-container {
    overflow-x: auto;
    padding-bottom: 1em;
}

/* Contact Form */

.contact-content {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
}

.contact-info {
    flex: 1;
    padding-right: 2em;
}

.contact-form {
    flex: 2;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    gap: 1em;
    margin-bottom: 1em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    padding: 0.5em 1em;
    background-color: #1492C4;
    color: #FFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    text-transform: uppercase;
}

.contact-form button:hover {
    background-color: #0e7aa6;
}

/* Copyright */

#copyright {
    overflow: hidden;
    padding: 5em 0em;
    border-top: 1px solid rgba(255,255,255,0.08);
}

#copyright p {
    text-align: center;
    font-size: 1em;
    color: rgba(255,255,255,0.5);
}

#copyright a {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */

@media (max-width: 1200px) {
    .container {
        width: 95%;
    }

    #banner {
        width: 95%;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #header {
        height: auto;
        padding: 2em 0;
    }

    #logo {
        position: static;
        text-align: center;
        margin-bottom: 2em;
    }

    #menu {
        position: static;
        text-align: center;
    }

    #menu ul {
        display: block;
    }

    #menu li {
        display: inline-block;
        float: none;
    }

    .main-header {
        padding: 4em 0em 5em 0em;
    }

    .main-header h2 {
        font-size: 3em;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    