/* style/game-reviews-tt88-classic-fishing-review.css */

:root {
    --page-primary-color: #007bff;
    --page-secondary-color: #ffc107;
    --page-dark-text: #343a40;
    --page-light-text: #f8f9fa;
    --page-background-light: #f8f9fa;
    --page-background-dark: #212529;
}

.page-game-reviews-tt88-classic-fishing-review {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-dark-text);
    background-color: var(--page-background-light);
}

.page-game-reviews-tt88-classic-fishing-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-tt88-classic-fishing-review__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%); /* Darker blue for gradient */
    color: var(--page-light-text);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-tt88-classic-fishing-review__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: page-game-reviews-tt88-classic-fishing-review__pulse 15s infinite ease-in-out;
    opacity: 0.3;
}

@keyframes page-game-reviews-tt88-classic-fishing-review__pulse {
    0% { transform: scale(0.8); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.4; }
    100% { transform: scale(0.8); opacity: 0.2; }
}

.page-game-reviews-tt88-classic-fishing-review__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--page-light-text);
}

.page-game-reviews-tt88-classic-fishing-review__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-light-text);
}

.page-game-reviews-tt88-classic-fishing-review__cta-button {
    display: inline-block;
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-tt88-classic-fishing-review__cta-button:hover {
    background-color: #e0a800; /* Darker gold */
    transform: translateY(-3px);
}

.page-game-reviews-tt88-classic-fishing-review__cta-button--dark {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
}

.page-game-reviews-tt88-classic-fishing-review__cta-button--dark:hover {
    background-color: #0056b3; /* Darker blue */
    transform: translateY(-3px);
}

.page-game-reviews-tt88-classic-fishing-review__section {
    padding: 60px 0;
    background-color: var(--page-background-light);
}

.page-game-reviews-tt88-classic-fishing-review__section:nth-of-type(odd) {
    background-color: #ffffff;
}

.page-game-reviews-tt88-classic-fishing-review__heading {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-reviews-tt88-classic-fishing-review__heading--white {
    color: var(--page-light-text);
}

.page-game-reviews-tt88-classic-fishing-review__heading--dark {
    color: var(--page-dark-text);
}

.page-game-reviews-tt88-classic-fishing-review__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px auto;
    color: var(--page-dark-text);
}

.page-game-reviews-tt88-classic-fishing-review__description--white {
    color: var(--page-light-text);
}

.page-game-reviews-tt88-classic-fishing-review__description--dark {
    color: var(--page-dark-text);
}

.page-game-reviews-tt88-classic-fishing-review__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-game-reviews-tt88-classic-fishing-review__content-block:nth-of-type(even) {
    flex-direction: row-reverse;
}

.page-game-reviews-tt88-classic-fishing-review__image-wrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-tt88-classic-fishing-review__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.page-game-reviews-tt88-classic-fishing-review__image:hover {
    transform: scale(1.03);
}

.page-game-reviews-tt88-classic-fishing-review__text-content {
    flex: 1;
}

.page-game-reviews-tt88-classic-fishing-review__sub-heading {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-reviews-tt88-classic-fishing-review__sub-heading--white {
    color: var(--page-light-text);
}

.page-game-reviews-tt88-classic-fishing-review__sub-heading--dark {
    color: var(--page-dark-text);
}

.page-game-reviews-tt88-classic-fishing-review__text--white {
    color: var(--page-light-text);
}

.page-game-reviews-tt88-classic-fishing-review__text--dark {
    color: var(--page-dark-text);
}

.page-game-reviews-tt88-classic-fishing-review__intro-text p {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 0;
}

.page-game-reviews-tt88-classic-fishing-review__bg-blue {
    background-color: var(--page-primary-color);
}

.page-game-reviews-tt88-classic-fishing-review__bg-gold {
    background-color: var(--page-secondary-color);
}

.page-game-reviews-tt88-classic-fishing-review__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-tt88-classic-fishing-review__grid-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-reviews-tt88-classic-fishing-review__grid-item:hover {
    transform: translateY(-5px);
}

.page-game-reviews-tt88-classic-fishing-review__bg-blue .page-game-reviews-tt88-classic-fishing-review__grid-item {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    color: var(--page-light-text);
}

.page-game-reviews-tt88-classic-fishing-review__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-game-reviews-tt88-classic-fishing-review__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-game-reviews-tt88-classic-fishing-review__promo-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-reviews-tt88-classic-fishing-review__promo-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-reviews-tt88-classic-fishing-review__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-tt88-classic-fishing-review__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-reviews-tt88-classic-fishing-review__step-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-game-reviews-tt88-classic-fishing-review__text-link {
    color: var(--page-primary-color);
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}

.page-game-reviews-tt88-classic-fishing-review__text-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-game-reviews-tt88-classic-fishing-review__call-to-action {
    text-align: center;
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    padding: 80px 0;
}

.page-game-reviews-tt88-classic-fishing-review__call-to-action .page-game-reviews-tt88-classic-fishing-review__heading {
    color: var(--page-light-text);
}

.page-game-reviews-tt88-classic-fishing-review__call-to-action .page-game-reviews-tt88-classic-fishing-review__description {
    color: var(--page-light-text);
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews-tt88-classic-fishing-review__title {
        font-size: 2.8em;
    }
    .page-game-reviews-tt88-classic-fishing-review__subtitle {
        font-size: 1.3em;
    }
    .page-game-reviews-tt88-classic-fishing-review__heading {
        font-size: 2em;
    }
    .page-game-reviews-tt88-classic-fishing-review__sub-heading {
        font-size: 1.5em;
    }
    .page-game-reviews-tt88-classic-fishing-review__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-game-reviews-tt88-classic-fishing-review__content-block:nth-of-type(even) {
        flex-direction: column;
    }
    .page-game-reviews-tt88-classic-fishing-review__image-wrapper,
    .page-game-reviews-tt88-classic-fishing-review__image-wrapper--right,
    .page-game-reviews-tt88-classic-fishing-review__image-wrapper--left {
        order: -1; /* Image first on mobile */
    }
}

@media (max-width: 768px) {
    .page-game-reviews-tt88-classic-fishing-review__hero {
        padding: 80px 0;
    }
    .page-game-reviews-tt88-classic-fishing-review__title {
        font-size: 2.2em;
    }
    .page-game-reviews-tt88-classic-fishing-review__subtitle {
        font-size: 1.1em;
    }
    .page-game-reviews-tt88-classic-fishing-review__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews-tt88-classic-fishing-review__section {
        padding: 40px 0;
    }
    .page-game-reviews-tt88-classic-fishing-review__heading {
        font-size: 1.8em;
    }
    .page-game-reviews-tt88-classic-fishing-review__description {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-game-reviews-tt88-classic-fishing-review__promo-grid,
    .page-game-reviews-tt88-classic-fishing-review__step-by-step {
        grid-template-columns: 1fr;
    }
}