/* style/game-tools-faq.css */
.page-game-tools-faq {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Primary dark blue background */
}

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

/* Hero Section */
.page-game-tools-faq__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a304a 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-game-tools-faq__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(100, 255, 218, 0.1); /* Light green accent */
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.page-game-tools-faq__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(100, 255, 218, 0.15); /* Light green accent */
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.page-game-tools-faq__hero-content {
    flex: 1;
    z-index: 1;
    text-align: left;
    padding-left: 20px;
}

.page-game-tools-faq__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #64FFDA; /* Secondary bright green */
    line-height: 1.2;
    font-weight: bold;
}

.page-game-tools-faq__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #B0B0B0;
}

.page-game-tools-faq__hero-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #64FFDA; /* Secondary bright green */
    color: #0A192F; /* Primary dark blue for text */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.4);
}

.page-game-tools-faq__hero-button:hover {
    background-color: #4CAF9D; /* Darker green on hover */
    transform: translateY(-3px);
}

.page-game-tools-faq__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding-right: 20px;
}

.page-game-tools-faq__hero-image {
    max-width: 90%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-game-tools-faq__intro {
    padding: 60px 0;
    background-color: #0A192F;
    text-align: center;
}

.page-game-tools-faq__intro .page-game-tools-faq__section-title {
    color: #64FFDA;
    margin-bottom: 25px;
    font-size: 2.5em;
}

.page-game-tools-faq__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #C0C0C0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-tools-faq__text-block strong {
    color: #64FFDA;
}

/* FAQ Section */
.page-game-tools-faq__faq-section {
    padding: 80px 0;
    background-color: #1a2a40; /* Slightly lighter dark blue */
}

.page-game-tools-faq__faq-section .page-game-tools-faq__section-title {
    color: #64FFDA;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8em;
}

.page-game-tools-faq__faq-item {
    background-color: #0A192F;
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #2e4a6d;
}

.page-game-tools-faq__faq-question {
    font-size: 1.5em;
    color: #FFFFFF;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0A192F;
    border-bottom: 1px solid #1f3a5f;
    transition: background-color 0.3s ease;
}

.page-game-tools-faq__faq-question:hover {
    background-color: #1a2a40;
}

.page-game-tools-faq__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #64FFDA;
    transition: transform 0.3s ease;
}

.page-game-tools-faq__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-tools-faq__faq-answer {
    padding: 0 30px 25px 30px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #C0C0C0;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-tools-faq__faq-answer.active {
    display: block;
    max-height: 1000px; /* Large enough to show content */
    padding: 0 30px 25px 30px;
}

.page-game-tools-faq__faq-answer p {
    margin-bottom: 15px;
}

.page-game-tools-faq__faq-answer ul,
.page-game-tools-faq__faq-answer ol {
    margin-left: 25px;
    margin-bottom: 15px;
    list-style-type: disc;
}

.page-game-tools-faq__faq-answer ol {
    list-style-type: decimal;
}

.page-game-tools-faq__faq-answer li {
    margin-bottom: 8px;
}

.page-game-tools-faq__faq-answer strong {
    color: #64FFDA;
}

.page-game-tools-faq__button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #64FFDA; /* Secondary bright green */
    color: #0A192F; /* Primary dark blue for text */
    text-decoration: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-tools-faq__button:hover {
    background-color: #4CAF9D;
    transform: translateY(-2px);
}

.page-game-tools-faq__inline-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Conclusion Section */
.page-game-tools-faq__conclusion {
    padding: 80px 0;
    background-color: #0A192F;
    text-align: center;
}

.page-game-tools-faq__conclusion .page-game-tools-faq__section-title {
    color: #64FFDA;
    margin-bottom: 25px;
    font-size: 2.5em;
}

.page-game-tools-faq__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-tools-faq__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .page-game-tools-faq__hero-content {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .page-game-tools-faq__hero-image-wrapper {
        padding-right: 0;
    }

    .page-game-tools-faq__hero-title {
        font-size: 2.8em;
    }

    .page-game-tools-faq__hero-subtitle {
        font-size: 1.2em;
    }

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

    .page-game-tools-faq__faq-question {
        font-size: 1.3em;
        padding: 20px 25px;
    }

    .page-game-tools-faq__faq-answer {
        font-size: 1em;
        padding: 0 25px 20px 25px;
    }
}

@media (max-width: 768px) {
    .page-game-tools-faq__hero-title {
        font-size: 2.2em;
    }

    .page-game-tools-faq__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-game-tools-faq__text-block {
        font-size: 0.95em;
    }

    .page-game-tools-faq__faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
    }

    .page-game-tools-faq__faq-answer {
        padding: 0 20px 18px 20px;
    }

    .page-game-tools-faq__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-game-tools-faq__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}