/* -----------------------------------------------------
   SECTIONS / HOMEPAGE LAYOUT
----------------------------------------------------- */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #EDE9E2;
    text-align: center;
}

/* Hero section (home) */
.hero-section {
    padding: 120px 20px;
    background-color: #0D0D0F;
    display: flex;
}

.hero-inner {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 600px;
    width: 100%;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #EDE9E2;
    text-align: center;
    line-height: 1.3;
}

.hero-tagline span {
    display: block;
}

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Our Games */
.games {
    padding: 20px 0;
    text-align: center;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin: 0 auto;
    gap: 40px;
    padding: 0 20px;
}

.game-card {
    text-decoration: none;
    color: #EDE9E2;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.game-card img {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    margin: 0 auto 15px;
    transition: transform 0.2s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 150px 0;
}

.about-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image img {
    width: 350px;
    max-width: 100%;
    height: auto;
}

.about-content {
    max-width: 600px;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #FFB347;
    margin-bottom: 15px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #EDE9E2;
}

/* Mobile stacking */
@media (max-width: 768px) {
    .about-inner {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        max-width: 90%;
    }
}


/* News header row: title + button */
.news-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 45px;
}

.btn {
    background: linear-gradient(145deg, #FFB347, #FF8C00);
    color: #0D0D0F;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.4);
}

/* Community Section */
.cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #EDE9E2;
    margin: 20px 0 30px;
}

