/* style/game-reviews-tt88-jackpot-slots-analysis.css */

:root {
    --page-primary-color: #007bff;
    --page-secondary-color: #ffc107;
    --page-dark-text: #212529; /* For light backgrounds */
    --page-light-text: #ffffff; /* For dark backgrounds */
    --page-background-light: #f8f9fa;
    --page-background-dark: #343a40;
    --page-accent-color-complementary-primary: #ff8400; /* Complementary to primary */
    --page-accent-color-complementary-secondary: #003ef8; /* Complementary to secondary */
}

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

.page-game-reviews-tt88-jackpot-slots-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__container--centered {
    text-align: center;
}

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

.page-game-reviews-tt88-jackpot-slots-analysis__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float1 10s infinite ease-in-out;
}

.page-game-reviews-tt88-jackpot-slots-analysis__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
    100% { transform: translate(0, 0); }
}

.page-game-reviews-tt88-jackpot-slots-analysis__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--page-light-text); /* Ensure high contrast */
}

.page-game-reviews-tt88-jackpot-slots-analysis__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-light-text); /* Ensure high contrast */
}

.page-game-reviews-tt88-jackpot-slots-analysis__section {
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.page-game-reviews-tt88-jackpot-slots-analysis__section:last-of-type {
    border-bottom: none;
}

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

.page-game-reviews-tt88-jackpot-slots-analysis__sub-heading {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 30px;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-game-reviews-tt88-jackpot-slots-analysis__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: left;
    color: var(--page-dark-text); /* Ensure high contrast */
}

.page-game-reviews-tt88-jackpot-slots-analysis__description--centered {
    text-align: center;
}

.page-game-reviews-tt88-jackpot-slots-analysis__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-game-reviews-tt88-jackpot-slots-analysis__text-content {
    flex: 1;
}

.page-game-reviews-tt88-jackpot-slots-analysis__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-game-reviews-tt88-jackpot-slots-analysis__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-tt88-jackpot-slots-analysis__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-game-reviews-tt88-jackpot-slots-analysis__btn--primary {
    background-color: var(--page-secondary-color); /* Gold for CTA */
    color: var(--page-dark-text); /* Dark text on gold for contrast */
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-game-reviews-tt88-jackpot-slots-analysis__btn--primary:hover {
    background-color: #e0a800; /* Darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
}

.page-game-reviews-tt88-jackpot-slots-analysis__btn--secondary {
    background-color: var(--page-primary-color); /* Blue for secondary CTA */
    color: var(--page-light-text); /* Light text on blue for contrast */
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-game-reviews-tt88-jackpot-slots-analysis__btn--secondary:hover {
    background-color: #0056b3; /* Darker blue */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.6);
}

.page-game-reviews-tt88-jackpot-slots-analysis__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-game-reviews-tt88-jackpot-slots-analysis__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-game-reviews-tt88-jackpot-slots-analysis__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-game-reviews-tt88-jackpot-slots-analysis__list li {
    background-color: #eaf6ff; /* Light blue background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid var(--page-primary-color);
    border-radius: 5px;
    font-size: 1.05em;
    color: var(--page-dark-text); /* Ensure high contrast */
}

.page-game-reviews-tt88-jackpot-slots-analysis__list li strong {
    color: var(--page-primary-color);
}

.page-game-reviews-tt88-jackpot-slots-analysis__list--two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__card {
    background-color: var(--page-light-text);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-tt88-jackpot-slots-analysis__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-tt88-jackpot-slots-analysis__card-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__card-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__promo-card {
    background-color: var(--page-light-text);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-reviews-tt88-jackpot-slots-analysis__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-tt88-jackpot-slots-analysis__promo-image {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__promo-title {
    font-size: 1.3em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__promo-card p {
    font-size: 0.95em;
    color: var(--page-dark-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-reviews-tt88-jackpot-slots-analysis__steps {
    margin-top: 30px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__step-item {
    background-color: var(--page-light-text);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__step-number {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
}

.page-game-reviews-tt88-jackpot-slots-analysis__step-item p {
    margin: 0;
    color: var(--page-dark-text);
    font-size: 1.05em;
}

.page-game-reviews-tt88-jackpot-slots-analysis__step-item p a {
    color: var(--page-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-game-reviews-tt88-jackpot-slots-analysis__step-item p a:hover {
    text-decoration: underline;
}

.page-game-reviews-tt88-jackpot-slots-analysis__faq-item {
    background-color: var(--page-light-text);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-secondary-color);
}

.page-game-reviews-tt88-jackpot-slots-analysis__faq-question {
    font-size: 1.3em;
    color: var(--page-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__faq-answer {
    font-size: 1.05em;
    color: var(--page-dark-text);
}

.page-game-reviews-tt88-jackpot-slots-analysis__conclusion {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    padding: 80px 0;
    text-align: center;
}

.page-game-reviews-tt88-jackpot-slots-analysis__conclusion .page-game-reviews-tt88-jackpot-slots-analysis__heading {
    color: var(--page-light-text);
}

.page-game-reviews-tt88-jackpot-slots-analysis__conclusion .page-game-reviews-tt88-jackpot-slots-analysis__description {
    color: var(--page-light-text);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-game-reviews-tt88-jackpot-slots-analysis__copyright {
    background-color: var(--page-background-dark);
    color: var(--page-light-text);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

.page-game-reviews-tt88-jackpot-slots-analysis__copyright p {
    margin: 0;
    color: var(--page-light-text); /* Ensure high contrast */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews-tt88-jackpot-slots-analysis__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__image-wrapper {
        order: -1; /* Image appears above text on mobile */
        margin-bottom: 20px;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__list--two-cols {
        grid-template-columns: 1fr;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__title {
        font-size: 2.5em;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__heading {
        font-size: 2em;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__sub-heading {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-tt88-jackpot-slots-analysis__hero {
        padding: 80px 0;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__title {
        font-size: 2em;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__subtitle {
        font-size: 1.1em;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__section {
        padding: 40px 0;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__sub-heading {
        font-size: 1.3em;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__grid,
    .page-game-reviews-tt88-jackpot-slots-analysis__promo-grid,
    .page-game-reviews-tt88-jackpot-slots-analysis__steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-tt88-jackpot-slots-analysis__title {
        font-size: 1.8em;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__subtitle {
        font-size: 1em;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__card,
    .page-game-reviews-tt88-jackpot-slots-analysis__promo-card,
    .page-game-reviews-tt88-jackpot-slots-analysis__faq-item {
        padding: 20px;
    }

    .page-game-reviews-tt88-jackpot-slots-analysis__list li {
        padding: 12px 15px;
        font-size: 0.95em;
    }
}