/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set font */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Top Navigation Bar */
header {
    background-color: #333;
    color: white;
    padding: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 50px 0;
}

.hero-section h1 {
    font-size: 3rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.cta-button {
    padding: 10px 20px;
    background-color: #ff6347;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #e5533d;
}

/* Game Description Section */
.game-description {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.game-description h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.learn-more {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Download Section */
.download-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #333;
    color: white;
}

.download-button {
    padding: 15px 30px;
    background-color: #ff6347;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    border-radius: 5px;
}

.download-button:hover {
    background-color: #e5533d;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 50px 20px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}
