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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    background: url('images/bg_site.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Section 1: Banner */
.banner {
    position: relative;
    background: url('images/bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    margin: 20px auto;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.095);
    /* 45% opacity */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.overlay h1 {
    font-size: 48px;
}

.overlay p {
    font-size: 24px;
}

.text-background {
    text-shadow: rgb(0, 0, 0) 3px 3px 10px;
}

/* Section 2: Game Section */
.game-section {
    padding: 50px;
    text-align: center;
}

.game-section h2 {
    font-size: 36px;
}

.game-section p {
    font-size: 18px;
    margin: 20px 0;
}

.game-box {
    margin: 0 auto;
    width: 300px;
    cursor: pointer;
}

.game-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.game-image:hover {
    transform: scale(1.05);
}

/* Section 3: Contact Form */
.contact-form-section {
    padding: 50px;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    padding: 10px 20px;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 150px;
}

.contact-form button:hover {
    background-color: #555;
}

/* Footer */
.footer {
    padding: 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-logos img {
    margin: 10px;
}

/* Game Frame Section */
.game-frame-section {
    padding: 50px;
    text-align: center;
}

.game-frame-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.game-frame {
    border-radius: 8px;
}

/* Footer design */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;

}

header {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

h1 {
    margin: 0;
    font-size: 36px;
}

section {
    max-width: 1024px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
}