/* style/fishing-games-latest-reviews.css */

/* Custom Colors */
:root {
    --full88-primary-color: #11A84E;
    --full88-secondary-color: #22C768;
    --full88-button-gradient-start: #2AD16F;
    --full88-button-gradient-end: #13994A;
    --full88-card-bg: #11271B;
    --full88-background: #08160F;
    --full88-text-main: #F2FFF6;
    --full88-text-secondary: #A7D9B8;
    --full88-border: #2E7A4E;
    --full88-glow: #57E38D;
    --full88-gold: #F2C14E;
    --full88-divider: #1E3A2A;
    --full88-deep-green: #0A4B2C;
}

.page-fishing-games-latest-reviews {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--full88-text-main); /* Default text color for dark body background */
    background-color: var(--full88-background);
}

.page-fishing-games-latest-reviews__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header-offset */
    text-align: center;
    overflow: hidden;
    background: var(--full88-background);
}

.page-fishing-games-latest-reviews__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
}

.page-fishing-games-latest-reviews__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: var(--full88-text-main);
}

.page-fishing-games-latest-reviews__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--full88-gold);
    line-height: 1.2;
}

.page-fishing-games-latest-reviews__hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--full88-text-secondary);
}

.page-fishing-games-latest-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-fishing-games-latest-reviews__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--full88-primary-color);
}

.page-fishing-games-latest-reviews__intro-section,
.page-fishing-games-latest-reviews__top-games-section,
.page-fishing-games-latest-reviews__why-full88-section,
.page-fishing-games-latest-reviews__faq-section {
    background-color: var(--full88-background);
    color: var(--full88-text-main);
}

.page-fishing-games-latest-reviews__criteria-section,
.page-fishing-games-latest-reviews__tips-section,
.page-fishing-games-latest-reviews__signup-guide-section,
.page-fishing-games-latest-reviews__conclusion-section {
    background-color: var(--full88-deep-green);
    color: var(--full88-text-main);
}

.page-fishing-games-latest-reviews__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--full88-text-secondary);
}

.page-fishing-games-latest-reviews__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, var(--full88-button-gradient-start) 0%, var(--full88-button-gradient-end) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.page-fishing-games-latest-reviews__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-latest-reviews__btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--full88-gold);
    border: 2px solid var(--full88-gold);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.page-fishing-games-latest-reviews__btn-secondary:hover {
    background-color: var(--full88-gold);
    color: var(--full88-background);
}

.page-fishing-games-latest-reviews__criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games-latest-reviews__card {
    background-color: var(--full88-card-bg);
    border: 1px solid var(--full88-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: var(--full88-text-main);
}

.page-fishing-games-latest-reviews__card:hover {
    transform: translateY(-10px);
}

.page-fishing-games-latest-reviews__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games-latest-reviews__card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--full88-primary-color);
}

.page-fishing-games-latest-reviews__card-text {
    font-size: 1rem;
    color: var(--full88-text-secondary);
}

.page-fishing-games-latest-reviews__game-review-item {
    background-color: var(--full88-card-bg);
    border: 1px solid var(--full88-border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--full88-text-main);
}

.page-fishing-games-latest-reviews__game-title {
    font-size: 2rem;
    color: var(--full88-gold);
    margin-bottom: 20px;
    text-align: center;
}

.page-fishing-games-latest-reviews__game-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games-latest-reviews__game-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--full88-text-secondary);
    text-align: justify;
}

.page-fishing-games-latest-reviews__tips-list,
.page-fishing-games-latest-reviews__benefits-list,
.page-fishing-games-latest-reviews__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games-latest-reviews__list-item {
    background-color: var(--full88-card-bg);
    border: 1px solid var(--full88-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--full88-text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-latest-reviews__list-item strong {
    color: var(--full88-gold);
}

.page-fishing-games-latest-reviews__faq-list {
    margin-top: 30px;
}

.page-fishing-games-latest-reviews__faq-item {
    background-color: var(--full88-card-bg);
    border: 1px solid var(--full88-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--full88-text-main);
}

.page-fishing-games-latest-reviews__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--full88-primary-color);
    list-style: none;
}

.page-fishing-games-latest-reviews__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-fishing-games-latest-reviews__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--full88-gold);
}

.page-fishing-games-latest-reviews__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: var(--full88-text-secondary);
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games-latest-reviews__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .page-fishing-games-latest-reviews__hero-description {
        font-size: 1.1rem;
    }
    .page-fishing-games-latest-reviews__section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .page-fishing-games-latest-reviews__hero-section {
        min-height: 400px;
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-fishing-games-latest-reviews__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-fishing-games-latest-reviews__hero-description {
        font-size: 1rem;
    }

    .page-fishing-games-latest-reviews__btn-primary,
    .page-fishing-games-latest-reviews__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 10px;
    }
    
    .page-fishing-games-latest-reviews__hero-content .page-fishing-games-latest-reviews__btn-primary {
        width: auto !important; /* Allow button to size based on content if not full width */
        max-width: 100% !important;
    }

    .page-fishing-games-latest-reviews__container {
        padding: 20px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games-latest-reviews__text-block,
    .page-fishing-games-latest-reviews__card-text,
    .page-fishing-games-latest-reviews__game-description,
    .page-fishing-games-latest-reviews__list-item,
    .page-fishing-games-latest-reviews__faq-answer {
        font-size: 0.95rem;
    }

    .page-fishing-games-latest-reviews__card-image,
    .page-fishing-games-latest-reviews__game-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px;
        min-height: 200px;
    }
    
    /* Ensure all images within content area are responsive */
    .page-fishing-games-latest-reviews img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games-latest-reviews__criteria-grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games-latest-reviews__faq-item summary {
        font-size: 1.1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-latest-reviews__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    .page-fishing-games-latest-reviews__btn-primary {
        padding: 12px 20px;
    }
}