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

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

.page-game-types__section {
    padding: 60px 0;
}

.page-game-types__section--dark {
    background-color: #007bff;
    color: #fff;
}

.page-game-types__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-types__section--dark .page-game-types__section-title {
    color: #ffc107;
}

.page-game-types__section-subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.page-game-types__section--dark .page-game-types__section-subtitle {
    color: #e0e0e0;
}

.page-game-types__section-text {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 20px;
}

.page-game-types__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-types__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

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

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

.page-game-types__hero-button {
    position: relative;
    z-index: 1;
}

.page-game-types__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-game-types__button--primary {
    background-color: #ffc107;
    color: #007bff;
}

.page-game-types__button--primary:hover {
    background-color: #e0a800;
    color: #0056b3;
    transform: translateY(-2px);
}

.page-game-types__button--secondary {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.page-game-types__button--secondary:hover {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-game-types__button--large {
    padding: 15px 30px;
    font-size: 1.2em;
}

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

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

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

.page-game-types__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-game-types__game-card-title {
    font-size: 1.6em;
    color: #007bff;
    padding: 20px 20px 10px;
    margin-top: 0;
}

.page-game-types__game-card-title a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-types__game-card-title a:hover {
    color: #0056b3;
}

.page-game-types__game-card-description {
    padding: 0 20px 20px;
    color: #555;
    flex-grow: 1;
}

.page-game-types__game-card-actions {
    display: flex;
    justify-content: space-around;
    padding: 0 20px 20px;
    margin-top: auto;
}

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

.page-game-types__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.page-game-types__feature-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-game-types__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%) invert(91%) sepia(35%) saturate(762%) hue-rotate(345deg) brightness(105%) contrast(101%); /* Adjust to yellow */
}

.page-game-types__feature-title {
    font-size: 1.4em;
    color: #ffc107;
    margin-bottom: 10px;
}

.page-game-types__feature-description {
    color: #e0e0e0;
}

.page-game-types__cta-section {
    background-color: #ffc107;
    color: #007bff;
    text-align: center;
    padding: 80px 0;
}

.page-game-types__cta-title {
    font-size: 2.8em;
    color: #007bff;
    margin-bottom: 20px;
}

.page-game-types__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #333;
}

.page-game-types__faq-section {
    background-color: #f1f1f1;
}

.page-game-types__faq-list {
    display: grid;
    gap: 20px;
}

.page-game-types__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-types__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-types__faq-answer {
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-types__hero-title {
        font-size: 2.8em;
    }

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

    .page-game-types__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

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

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

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

    .page-game-types__section {
        padding: 40px 0;
    }

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

    .page-game-types__button--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-game-types__features-grid, .page-game-types__game-grid {
        grid-template-columns: 1fr;
    }

    .page-game-types__game-card-actions {
        flex-direction: column;
        gap: 10px;
    }

    .page-game-types__button {
        width: 100%;
    }

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

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

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

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

    .page-game-types__button--primary, .page-game-types__button--secondary {
        font-size: 0.9em;
        padding: 10px 20px;
    }

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