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

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

.page-game-types__hero {
    background: linear-gradient(135deg, #004D99 0%, #003366 100%); /* Darker blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-types__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-types__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700;
    position: relative;
    z-index: 1;
}

.page-game-types__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-game-types__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #004D99;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-game-types__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-types__introduction, .page-game-types__why-choose, .page-game-types__faq {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-types__section-title {
    font-size: 2.5em;
    color: #004D99;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.page-game-types__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-types__text-content {
    font-size: 1.1em;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

.page-game-types__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

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

.page-game-types__game-list {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.page-game-types__game-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-types__card-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-game-types__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-game-types__card-content {
    flex: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-game-types__card-title {
    font-size: 1.8em;
    color: #004D99;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-game-types__card-title a {
    color: #004D99;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-types__card-title a:hover {
    color: #FFD700;
}

.page-game-types__card-description {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-types__card-button {
    display: inline-block;
    background-color: #004D99;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-game-types__card-button:hover {
    background-color: #003366;
}

.page-game-types__benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-game-types__benefits-list li {
    background-color: #e9f0f7;
    padding: 20px;
    border-left: 5px solid #004D99;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-types__benefits-list li strong {
    color: #004D99;
}

.page-game-types__cta-section {
    background: linear-gradient(135deg, #004D99, #003366);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-game-types__cta-section .page-game-types__section-title {
    color: #FFD700;
}

.page-game-types__cta-section .page-game-types__section-title::after {
    background-color: #ffffff;
}

.page-game-types__cta-section .page-game-types__text-content {
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-game-types__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-game-types__cta-button--primary {
    background-color: #FFD700;
    color: #004D99;
}

.page-game-types__cta-button--primary:hover {
    background-color: #e6c200;
}

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

.page-game-types__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #004D99;
}

.page-game-types__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.page-game-types__faq-item:hover {
    background-color: #f0f0f0;
}

.page-game-types__faq-question {
    font-size: 1.25em;
    color: #004D99;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 600;
}

.page-game-types__faq-answer {
    font-size: 1em;
    color: #555;
    padding-left: 15px;
    border-left: 3px solid #FFD700;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-types__game-card {
        flex-direction: column;
    }

    .page-game-types__card-image-wrapper {
        min-width: unset;
        height: 250px;
    }

    .page-game-types__hero-title {
        font-size: 2.5em;
    }

    .page-game-types__hero-description {
        font-size: 1.1em;
    }

    .page-game-types__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-game-types__hero {
        padding: 80px 0;
    }

    .page-game-types__hero-title {
        font-size: 2em;
    }

    .page-game-types__hero-description {
        font-size: 1em;
    }

    .page-game-types__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-types__introduction, .page-game-types__why-choose, .page-game-types__faq, .page-game-types__game-list, .page-game-types__cta-section {
        padding: 40px 0;
    }

    .page-game-types__section-title {
        font-size: 1.8em;
    }

    .page-game-types__card-content {
        padding: 20px;
    }

    .page-game-types__card-title {
        font-size: 1.5em;
    }

    .page-game-types__benefits-list {
        grid-template-columns: 1fr;
    }

    .page-game-types__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-game-types__hero-title {
        font-size: 1.8em;
    }

    .page-game-types__hero-description {
        font-size: 0.9em;
    }

    .page-game-types__section-title {
        font-size: 1.5em;
    }

    .page-game-types__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-types__cta-button {
        width: 100%;
        max-width: 280px;
    }
}