/* Global Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --tertiary-color: #9b59b6;
    --text-color: #333;
    --background-color: #f0f4f8;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1,
h2,
h3 {
    margin-bottom: 20px;
}

/* Header Styles */
header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.coming-soon {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.header-cta {
    color: white;
    text-decoration: underline;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Content Styles */
main {
    padding: 2rem 0;
}

section {
    margin-bottom: 4rem;
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Image Styles */
.game-image,
.gameplay-image,
.feature-image {
    margin: 1rem 0;
    text-align: center;
}

.game-image img,
.gameplay-image img,
.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Game Info Styles */
.game-info {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.info-item {
    text-align: center;
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Gameplay Images Styles */
.gameplay-images {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gameplay-image {
    flex-basis: calc(33.333% - 1rem);
    margin-bottom: 1rem;
}

/* Feature Styles */
.feature {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.feature-text {
    flex: 1;
    padding-right: 2rem;
}

.feature-image {
    flex-basis: 200px;
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature:nth-child(even) .feature-text {
    padding-right: 0;
    padding-left: 2rem;
}

/* Sign-up Section Styles */
#signup {
    background: linear-gradient(to right, var(--secondary-color), var(--tertiary-color));
    color: white;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

.cta-button i {
    margin-right: 0.5rem;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.creator-info {
    flex: 1;
    margin-right: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
}

.contact-links a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.contact-links a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Icon Styles */
i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .game-info {
        flex-direction: column;
    }

    .info-item {
        margin-bottom: 1rem;
    }

    .gameplay-images {
        flex-direction: column;
    }

    .gameplay-image {
        flex-basis: 100%;
    }

    .feature {
        flex-direction: column !important;
    }

    .feature-text,
    .feature:nth-child(even) .feature-text {
        padding: 0;
        margin-bottom: 1rem;
    }

    .feature-image {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .creator-info {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}