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

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
}

.main-nav li {
    margin: 0 1rem;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #007bff;
}

.main-nav .active a {
    color: #007bff;
    font-weight: 600;
}

/* Banner Section */
.banner {
    height: 200px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.banner-content h1 {
    font-family: 'Rozha One', serif;
    font-size: 3rem;
    color: #333;
    text-align: center;
}

/* Content Section */
.content-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

/* Support Cards */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.support-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.support-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.support-button:hover {
    background-color: #0056b3;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
}

.intro p {
    font-size: 1.2rem;
    color: #666;
}

/* Store Links Section */
.store-links {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.store-link {
    flex: 0 1 200px;
    transition: transform 0.3s ease;
}

.store-link:hover {
    transform: scale(1.05);
}

.store-link img {
    width: 100%;
    height: auto;
}

/* Contact Info Section */
.contact-info {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #fff;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #666;
}

/* Game Page Specific Styles */
.game-info {
    padding: 2rem;
    background-color: #fff;
}

.game-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 975px) {
    .banner {
        height: 550px;
    }

    .store-container {
        flex-direction: column;
        align-items: center;
    }

    .store-link {
        flex: 0 1 300px;
    }

    .support-options {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 575px) {
    .banner {
        height: 407px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav li {
        margin: 0.5rem 0;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 2rem 1rem;
    }
} 