/* General Styles */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
    padding: 0;
}

a {
    color: #ffcc00;
    text-decoration: none;
}

a:hover {
    color: #ff0000;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    display: inline;
    margin-right: 20px;
}

button {
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #ff0000;
    color: #fff;
}

/* Header Styles */
header {
    background-color: #ff4d00;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 200px;
    height: auto;
}

nav ul {
    margin-top: 10px;
}

nav ul li a {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Banner Section */
.banner {
    text-align: center;
    background: #333;
    padding: 40px;
}

.banner h1 {
    font-size: 36px;
    color: #ffcc00;
    text-shadow: 2px 2px 4px #000;
}

.banner p {
    font-size: 18px;
    margin-top: 10px;
}

.banner img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 20px;
}

/* Featured Game Section */
.featured {
    background: #222;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
}

.featured h2 {
    font-size: 24px;
    color: #ffcc00;
}

.game-details {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.game-cover {
    width: 200px;
    height: auto;
    margin-right: 20px;
    border: 3px solid #ffcc00;
}

.game-description {
    font-size: 16px;
    max-width: 500px;
}

.more-info {
    display: inline-block;
    margin-top: 10px;
    background-color: #ffcc00;
    color: #000;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
}

.more-info:hover {
    background-color: #ff0000;
    color: #fff;
}

/* News Section */
.news {
    background: #333;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.news-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.news-item img {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.news-item p {
    font-size: 16px;
}

.news-item a {
    font-weight: bold;
    text-decoration: underline;
}

/* Poll Section */
.poll {
    background: #444;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.poll h3 {
    font-size: 22px;
    color: #ffcc00;
}

form {
    margin-top: 10px;
}

form label {
    font-size: 16px;
    color: #fff;
}

form input {
    margin: 10px;
}

/* Footer Section */
footer {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 14px;
}

.social-media a {
    margin: 0 10px;
    font-size: 16px;
}
