/* style/games.css */
.page-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-games__brand-highlight {
    color: #FFD700;
}

.page-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-games__btn--primary {
    background-color: #FFD700;
    color: #003366;
}

.page-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-games__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-2px);
}

.page-games__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-games__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-games__text-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-games__text-link:hover {
    color: #FFD700;
}

.page-games__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-games__section-subtitle {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-games__hero-section {
    background: linear-gradient(135deg, #003366, #1a4f80);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-games__hero-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
}

.page-games__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* About Section */
.page-games__about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-games__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-games__about-content p {
    margin-bottom: 20px;
    color: #444;
}

.page-games__feature-list {
    list-style: none;
    padding: 0;
}

.page-games__feature-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: center;
}

.page-games__icon {
    margin-right: 10px;
    color: #FFD700;
    font-size: 1.2em;
}

.page-games__icon--check::before {
    content: '✔'; /* Unicode checkmark */
}

.page-games__about-image-wrapper {
    text-align: center;
}

.page-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Categories Section */
.page-games__categories-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-games__game-card {
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-games__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-games__game-card-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-games__game-card-description {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 0 15px;
}

/* Features Section */
.page-games__features-section {
    padding: 80px 0;
    background-color: #003366;
    color: #fff;
}

.page-games__features-section .page-games__section-title {
    color: #FFD700;
}

.page-games__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.page-games__feature-item {
    background-color: #004488;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-games__feature-icon {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 15px;
}

/* Font Awesome like icons */
.page-games__icon--gamepad::before {
    content: '🎮'; /* Unicode gamepad */
}

.page-games__icon--shield::before {
    content: '🛡️'; /* Unicode shield */
}

.page-games__icon--gift::before {
    content: '🎁'; /* Unicode gift */
}

.page-games__icon--mobile::before {
    content: '📱'; /* Unicode mobile phone */
}

.page-games__feature-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games__feature-description {
    color: #e0e0e0;
}

/* Download App Section */
.page-games__download-app-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-games__download-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: #f0f8ff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.page-games__download-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.page-games__download-text p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 30px;
}

.page-games__download-image-wrapper {
    text-align: center;
}

/* Detail Pages Section */
.page-games__detail-pages-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-games__detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-games__detail-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-games__detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-games__detail-card-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-games__detail-card-title a {
    text-decoration: none;
    color: inherit;
}

.page-games__detail-card-title a:hover {
    color: #FFD700;
}

.page-games__detail-card-description {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-games__faq-section {
    padding: 80px 0;
    background-color: #e6f7ff;
}

.page-games__faq-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-games__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-games__faq-answer {
    color: #444;
    font-size: 1.05em;
    display: none; /* Initially hidden */
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.page-games__faq-question.active + .page-games__faq-answer {
    display: block;
}

/* Final CTA Section */
.page-games__cta-final-section {
    background: linear-gradient(135deg, #003366, #0055aa);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-games__cta-final-description {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games__hero-title {
        font-size: 2.8em;
    }
    .page-games__hero-description {
        font-size: 1.1em;
    }
    .page-games__section-title {
        font-size: 2em;
    }
    .page-games__grid-2-cols,
    .page-games__download-app-content {
        grid-template-columns: 1fr;
    }
    .page-games__about-image-wrapper,
    .page-games__download-image-wrapper {
        order: -1; /* Image first on mobile */
        margin-bottom: 30px;
    }
    .page-games__download-text h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-games__hero-title {
        font-size: 2.2em;
    }
    .page-games__hero-description {
        font-size: 1em;
    }
    .page-games__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-games__btn--primary,
    .page-games__btn--secondary {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-games__section-title {
        font-size: 1.8em;
    }
    .page-games__game-grid,
    .page-games__feature-grid,
    .page-games__detail-grid {
        grid-template-columns: 1fr;
    }
    .page-games__download-app-content {
        padding: 30px;
    }
    .page-games__cta-final-description {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-games__hero-section,
    .page-games__about-section,
    .page-games__categories-section,
    .page-games__features-section,
    .page-games__download-app-section,
    .page-games__detail-pages-section,
    .page-games__faq-section,
    .page-games__cta-final-section {
        padding: 40px 0;
    }
    .page-games__hero-title {
        font-size: 1.8em;
    }
    .page-games__section-title {
        font-size: 1.5em;
    }
    .page-games__game-card-title,
    .page-games__feature-heading,
    .page-games__detail-card-title,
    .page-games__faq-question {
        font-size: 1.3em;
    }
    .page-games__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}