/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #3a3f52;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #ffffff;
}

p {
    color: #cccccc;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: #0095f7;
}

/* Navigation */
.top-menu {
    background-color: #333;
    padding: 10px;
    text-align: center;
}

.top-menu a {
    margin: 0 15px;
    color: #ffffff;
    font-weight: 500;
}

.top-menu a:hover {
    color: #0095f7;
}

/* Starry Background */
.starry-background {
    background: url('starry-background.png') no-repeat center center fixed;
    background-size: cover;
    padding: 50px 20px;
    text-align: center;
    min-height: 100vh;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

header p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: #cfcfcf;
}

/* Screenshot Section */
.screenshots {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.screenshots img {
    width: 220px;
    height: 460px;
    border-radius: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features {
    background-color: #282c34;
    padding: 40px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1200px;
    text-align: left;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.feature-item {
    margin-bottom: 25px;
}

.feature-item h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    background-color: #2e323a;
    padding: 40px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1200px;
    text-align: left;
}

.benefits h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.benefits p {
    color: #b0b0b0;
    margin-bottom: 20px;
}

/* Game Details Section */
.game-details {
    background-color: #343a40;
    padding: 40px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1200px;
    text-align: left;
}

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

.game-details ul {
    list-style: disc;
    padding-left: 20px;
    color: #b0b0b0;
}

.game-details ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #212529;
    padding: 40px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1200px;
    text-align: left;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.testimonial {
    font-style: italic;
    color: #cfcfcf;
    margin-bottom: 20px;
}

.testimonial strong {
    color: #ffffff;
}

/* Download Button Section */
.download, .download-ios {
    margin: 40px auto;
    text-align: center;
}

.download-btn, .ios-app-btn {
    background-color: #0095f7;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.download-btn:hover, .ios-app-btn:hover {
    background-color: #007bb5;
}

/* Footer */
footer {
    background-color: #292c31;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #b0b0b0;
}
