/* style/resources-how-to-choose-best-fishing-games-30-tt88-platform.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --dark-bg-color: #0a0a0a;
    --text-light: #ffffff;
    --text-dark: #333333;
    --login-button-color: #EA7C07;
    --card-bg-dark: rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Body background is dark, so text is light */
    line-height: 1.6;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: var(--dark-bg-color);
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
    border-radius: 10px;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--secondary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__btn-primary,
.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__content-section {
    padding: 80px 0;
    background-color: var(--dark-bg-color);
    color: var(--text-light);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__text-block {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: justify;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__text-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__text-block a:hover {
    text-decoration: underline;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__dark-bg {
    background-color: var(--dark-bg-color);
    color: var(--text-light);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__light-bg .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__section-title {
    color: var(--primary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__light-bg .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__text-block {
    color: var(--text-dark);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-card {
    background-color: var(--card-bg-dark);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-card:hover {
    transform: translateY(-10px);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-icon {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-description {
    font-size: 1em;
    color: var(--text-light);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-description a:hover {
    text-decoration: underline;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__flex-container {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__text-block-half,
.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__image-half {
    flex: 1;
    min-width: 300px;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__payment-card {
    background-color: var(--card-bg-dark);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: var(--text-light);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__payment-icon {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__payment-title {
    font-size: 1.4em;
    color: var(--primary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__step-card {
    background-color: var(--card-bg-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: var(--text-light);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__step-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__step-description {
    font-size: 1em;
    color: var(--text-light);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__step-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__step-description a:hover {
    text-decoration: underline;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__cta-bottom {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-section .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__section-title {
    color: var(--primary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f9f9f9;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-question a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-question a:hover {
    text-decoration: underline;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-toggle {
    font-size: 1.5em;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-item.active .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-dark);
    background-color: var(--secondary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-item.active .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-answer p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-answer a:hover {
    text-decoration: underline;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__conclusion-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--dark-bg-color);
    color: var(--text-light);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__conclusion-section .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__section-title {
    color: var(--primary-color);
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__conclusion-section .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__text-block {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.15em;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__conclusion-section .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__text-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-how-to-choose-best-fishing-games-30-tt88-platform__conclusion-section .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__text-block a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-title {
        font-size: 3em;
    }
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__section-title {
        font-size: 2em;
    }
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-grid,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__payment-methods,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-section {
        min-height: 60vh;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-content {
        padding: 20px;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-title {
        font-size: 2.2em;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-description {
        font-size: 1em;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__btn-primary,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__content-section,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__conclusion-section,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-section {
        padding: 40px 0;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__text-block,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-description,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__step-description,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-answer p {
        font-size: 1em;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__flex-container {
        flex-direction: column;
        gap: 30px;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__text-block-half,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__image-half {
        min-width: unset;
        width: 100%;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-icon,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__image,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__payment-icon {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Ensure minimum size */
        min-height: 200px !important;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__feature-card,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__payment-card,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__step-card {
        padding: 20px;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-answer {
        padding: 0 20px;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-item.active .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__faq-answer {
        padding: 15px 20px;
    }

    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__cta-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__hero-title {
        font-size: 1.8em;
    }
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__section-title {
        font-size: 1.5em;
    }
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__btn-primary,
    .page-resources-how-to-choose-best-fishing-games-30-tt88-platform__btn-secondary {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}