/* style/game-types-specialty-games.css */

/* General styles for the page content */
.page-game-types-specialty-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #0A244A; /* Dark blue text on light backgrounds */
    background-color: #f8f8f8; /* Light background for general sections */
}

/* Container for content width */
.page-game-types-specialty-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-types-specialty-games__container--flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-game-types-specialty-games__container--flex {
        flex-direction: column;
        text-align: center;
    }
}

.page-game-types-specialty-games__container--center {
    text-align: center;
}

/* Section padding */
.page-game-types-specialty-games .section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .page-game-types-specialty-games .section-padding {
        padding: 40px 0;
    }
}

/* Background colors */
.page-game-types-specialty-games__bg--dark {
    background-color: #0A244A; /* Dark blue background */
    color: #ffffff; /* White text on dark blue */
}

.page-game-types-specialty-games__bg--accent {
    background-color: #FFD700; /* Gold background */
    color: #0A244A; /* Dark blue text on gold */
}

.page-game-types-specialty-games__bg--cta {
    background-color: #0A244A; /* Dark blue background for CTA */
    color: #ffffff; /* White text on dark blue */
}

/* Headings */
.page-game-types-specialty-games__heading {
    font-size: 2.8em;
    color: #0A244A;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-types-specialty-games__heading--light {
    color: #ffffff;
}

.page-game-types-specialty-games__heading--dark {
    color: #0A244A;
}

.page-game-types-specialty-games__title {
    font-size: 3.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-types-specialty-games__subtitle {
    font-size: 1.5em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 40px;
}

/* Text elements */
.page-game-types-specialty-games__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-types-specialty-games__text--light {
    color: #ffffff;
}

.page-game-types-specialty-games__text--dark {
    color: #0A244A;
}

/* Buttons */
.page-game-types-specialty-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.page-game-types-specialty-games__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A244A; /* Dark blue */
}

.page-game-types-specialty-games__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
}

.page-game-types-specialty-games__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-game-types-specialty-games__btn--secondary:hover {
    background-color: #ffffff;
    color: #0A244A;
}

.page-game-types-specialty-games__btn--dark {
    background-color: #0A244A; /* Dark blue */
    color: #ffffff; /* White */
}

.page-game-types-specialty-games__btn--dark:hover {
    background-color: #1a3c6b; /* Slightly lighter dark blue */
}

/* Hero Section */
.page-game-types-specialty-games__hero {
    background: linear-gradient(135deg, #0A244A, #1a3c6b); /* Gradient dark blue */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-game-types-specialty-games__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px; /* Adjust size as needed */
    max-width: 50%;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

@media (max-width: 1024px) {
    .page-game-types-specialty-games__hero-image {
        width: 400px;
        max-width: 40%;
    }
}

@media (max-width: 768px) {
    .page-game-types-specialty-games__hero-image {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
        opacity: 0.5;
    }
    .page-game-types-specialty-games__hero .page-game-types-specialty-games__container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


.page-game-types-specialty-games__hero .page-game-types-specialty-games__container {
    position: relative;
    z-index: 1;
}

.page-game-types-specialty-games__hero-actions {
    margin-top: 30px;
    text-align: center;
}

/* Game Categories Grid */
.page-game-types-specialty-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-types-specialty-games__game-card {
    background-color: #1a3c6b; /* Slightly lighter dark blue for cards */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-types-specialty-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-game-types-specialty-games__game-card-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-game-types-specialty-games__game-card-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold title on dark card */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-types-specialty-games__game-card-text {
    color: #e0e0e0; /* Light grey text on dark card */
    font-size: 1em;
    text-align: left;
}

/* Why Choose Section */
.page-game-types-specialty-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-types-specialty-games__feature-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-game-types-specialty-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-game-types-specialty-games__feature-title {
    font-size: 1.6em;
    color: #0A244A;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-types-specialty-games__feature-text {
    color: #333333;
    font-size: 1em;
}

/* Download CTA */
.page-game-types-specialty-games__download-content {
    flex: 1;
    min-width: 300px;
}

.page-game-types-specialty-games__download-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.page-game-types-specialty-games__download-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-game-types-specialty-games__download-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* How to Start */
.page-game-types-specialty-games__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-game-types-specialty-games__steps-list li {
    background-color: #ffffff;
    border-left: 5px solid #FFD700;
    margin-bottom: 25px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-game-types-specialty-games__step-title {
    font-size: 1.4em;
    color: #0A244A;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-types-specialty-games__step-text {
    color: #333333;
    font-size: 1em;
}

/* Responsible Gaming */
.page-game-types-specialty-games__responsible-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 20px;
}

.page-game-types-specialty-games__responsible-item {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #ffffff;
}

/* FAQ Section */
.page-game-types-specialty-games__faq-list {
    margin-top: 40px;
}

.page-game-types-specialty-games__faq-item {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    cursor: pointer;
}

.page-game-types-specialty-games__faq-item:last-child {
    border-bottom: none;
}

.page-game-types-specialty-games__faq-question {
    font-size: 1.2em;
    color: #0A244A;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    padding-right: 30px;
}

.page-game-types-specialty-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-game-types-specialty-games__faq-item.active .page-game-types-specialty-games__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-types-specialty-games__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-left: 10px;
    margin-top: 10px;
    display: none; /* Hidden by default, toggled by JS */
}

.page-game-types-specialty-games__faq-item.active .page-game-types-specialty-games__faq-answer {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-types-specialty-games__heading {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-game-types-specialty-games__title {
        font-size: 2.5em;
    }
    .page-game-types-specialty-games__subtitle {
        font-size: 1.2em;
    }
    .page-game-types-specialty-games__game-card {
        padding: 20px;
    }
    .page-game-types-specialty-games__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-game-types-specialty-games__download-content,
    .page-game-types-specialty-games__download-image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-game-types-specialty-games__download-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-game-types-specialty-games__heading {
        font-size: 1.8em;
    }
    .page-game-types-specialty-games__title {
        font-size: 2em;
    }
    .page-game-types-specialty-games__btn {
        width: 100%;
        margin: 5px 0;
    }
    .page-game-types-specialty-games__hero-actions {
        display: flex;
        flex-direction: column;
    }
}