/* style/faq-games.css */
.page-faq-games {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A1931; /* Main dark blue background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-faq-games__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-faq-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-faq-games__hero-title {
    font-size: 3.5em;
    color: #FFC107; /* Bright gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-games__hero-description {
    font-size: 1.3em;
    color: #FFFFFF; /* White for description */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-games__hero-button {
    display: inline-block;
    background-color: #FFC107; /* Bright gold button */
    color: #0A1931; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-faq-games__hero-button:hover {
    background-color: #e0a800; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-faq-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-faq-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
}

/* General Section Styling */
.page-faq-games__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.page-faq-games__section:last-of-type {
    border-bottom: none;
}

.page-faq-games__section-title {
    font-size: 2.8em;
    color: #FFC107; /* Bright gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-faq-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    border-radius: 2px;
}

.page-faq-games__paragraph {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: justify;
}

/* Rule Items */
.page-faq-games__rule-item {
    background-color: #1A2F4A; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-faq-games__rule-heading {
    font-size: 1.8em;
    color: #FFC107; /* Gold for subheadings */
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
    padding-bottom: 10px;
}

.page-faq-games__rule-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Game Specific Rules */
.page-faq-games__game-category {
    background-color: #1A2F4A;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-faq-games__category-heading {
    font-size: 2.2em;
    color: #FFC107;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-faq-games__category-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFC107;
    border-radius: 1.5px;
}

.page-faq-games__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-faq-games__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-faq-games__list li strong {
    color: #FFFFFF;
}

.page-faq-games__list ul {
    list-style-type: circle;
    margin-left: 20px;
    margin-top: 5px;
}

.page-faq-games__category-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Accordion FAQ */
.page-faq-games__faq-accordion {
    margin-top: 30px;
}

.page-faq-games__accordion-item {
    background-color: #1A2F4A;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-games__accordion-header {
    background-color: #0F2038; /* Slightly darker than item background */
    color: #FFC107;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.25em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-faq-games__accordion-header:hover {
    background-color: #132742;
}

.page-faq-games__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-faq-games__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-faq-games__accordion-content {
    padding: 0 25px;
    background-color: #1A2F4A;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-faq-games__accordion-content p {
    padding-bottom: 20px;
    font-size: 1.1em;
    color: #E0E0E0;
}

/* Commitment Section */
.page-faq-games__commitment .page-faq-games__paragraph {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.page-faq-games__cta-section {
    background-color: #0F2038; /* Darker blue for CTA background */
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 193, 7, 0.1);
}

.page-faq-games__cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: 12px;
    background-color: #1A2F4A;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-faq-games__cta-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
}

.page-faq-games__cta-title {
    font-size: 2.5em;
    color: #FFC107;
    margin-bottom: 10px;
}

.page-faq-games__cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 700px;
    margin-bottom: 30px;
}

.page-faq-games__cta-button {
    display: inline-block;
    background-color: #FFC107;
    color: #0A1931;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.page-faq-games__cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq-games__hero-title {
        font-size: 2.8em;
    }
    .page-faq-games__hero-description {
        font-size: 1.1em;
    }
    .page-faq-games__section-title {
        font-size: 2.2em;
    }
    .page-faq-games__category-heading {
        font-size: 1.8em;
    }
    .page-faq-games__rule-heading {
        font-size: 1.6em;
    }
    .page-faq-games__cta-title {
        font-size: 2em;
    }
    .page-faq-games__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-faq-games__hero {
        padding: 60px 0;
    }
    .page-faq-games__hero-title {
        font-size: 2.2em;
    }
    .page-faq-games__hero-description {
        font-size: 1em;
    }
    .page-faq-games__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq-games__section {
        padding: 40px 0;
    }
    .page-faq-games__section-title {
        font-size: 1.8em;
    }
    .page-faq-games__rule-item, .page-faq-games__game-category {
        padding: 20px;
    }
    .page-faq-games__rule-heading {
        font-size: 1.4em;
    }
    .page-faq-games__category-heading {
        font-size: 1.6em;
    }
    .page-faq-games__paragraph, .page-faq-games__list li {
        font-size: 0.95em;
    }
    .page-faq-games__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-faq-games__accordion-content p {
        padding-bottom: 15px;
        font-size: 0.95em;
    }
    .page-faq-games__cta-title {
        font-size: 1.8em;
    }
    .page-faq-games__cta-description {
        font-size: 1em;
    }
    .page-faq-games__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-faq-games__hero-title {
        font-size: 1.8em;
    }
    .page-faq-games__hero-description {
        font-size: 0.9em;
    }
    .page-faq-games__section-title {
        font-size: 1.5em;
    }
    .page-faq-games__category-heading {
        font-size: 1.4em;
    }
    .page-faq-games__rule-heading {
        font-size: 1.2em;
    }
    .page-faq-games__cta-title {
        font-size: 1.5em;
    }
    .page-faq-games__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-faq-games__container {
        padding: 0 15px;
    }
}