/* style/resources-bet88-brand-review.css */

/* Variables */
:root {
    --bet88-primary-color: #FFD700; /* Gold */
    --bet88-secondary-color: #1A1A1A; /* Dark Gray/Black */
    --bet88-light-text: #F0F0F0;
    --bet88-dark-text: #1A1A1A;
    --bet88-section-padding: 60px 0;
    --bet88-container-width: 1200px;
}

.page-resources-bet88-brand-review {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--bet88-light-text);
    background-color: var(--bet88-secondary-color);
}

.page-resources-bet88-brand-review__container {
    max-width: var(--bet88-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-bet88-brand-review__hero {
    background: linear-gradient(135deg, var(--bet88-primary-color) 0%, var(--bet88-secondary-color) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--bet88-dark-text);
}

.page-resources-bet88-brand-review__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--bet88-dark-text);
    line-height: 1.2;
}

.page-resources-bet88-brand-review__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-bet88-brand-review__cta-button {
    display: inline-block;
    background-color: var(--bet88-secondary-color);
    color: var(--bet88-primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid var(--bet88-primary-color);
}

.page-resources-bet88-brand-review__cta-button:hover {
    background-color: var(--bet88-primary-color);
    color: var(--bet88-secondary-color);
}

.page-resources-bet88-brand-review__cta-button--secondary {
    background-color: transparent;
    color: var(--bet88-primary-color);
    border: 2px solid var(--bet88-primary-color);
}

.page-resources-bet88-brand-review__cta-button--secondary:hover {
    background-color: var(--bet88-primary-color);
    color: var(--bet88-secondary-color);
}

.page-resources-bet88-brand-review__section {
    padding: var(--bet88-section-padding);
    background-color: var(--bet88-secondary-color);
}

.page-resources-bet88-brand-review__section--dark-bg {
    background-color: #2a2a2a; /* Slightly lighter dark for contrast */
}

.page-resources-bet88-brand-review__heading {
    font-size: 2.5em;
    color: var(--bet88-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-bet88-brand-review__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--bet88-primary-color);
    border-radius: 2px;
}

.page-resources-bet88-brand-review__heading--light {
    color: var(--bet88-primary-color);
}

.page-resources-bet88-brand-review__sub-heading {
    font-size: 1.8em;
    color: var(--bet88-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-resources-bet88-brand-review__sub-heading--light {
    color: var(--bet88-primary-color);
}

.page-resources-bet88-brand-review__content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.page-resources-bet88-brand-review__content-block p {
    flex: 1;
    min-width: 300px;
    color: var(--bet88-light-text);
    font-size: 1.05em;
}

.page-resources-bet88-brand-review__image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-bet88-brand-review__image--right {
    order: 2;
}

.page-resources-bet88-brand-review__image--left {
    order: 1;
}

.page-resources-bet88-brand-review__intro-text {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: var(--bet88-light-text);
}

.page-resources-bet88-brand-review__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-bet88-brand-review__grid-item {
    background-color: #252525; /* Slightly lighter than secondary for card effect */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-resources-bet88-brand-review__grid-item:hover {
    transform: translateY(-5px);
}

.page-resources-bet88-brand-review__grid-item img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.page-resources-bet88-brand-review__grid-item h3 {
    color: var(--bet88-primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-resources-bet88-brand-review__grid-item p {
    color: var(--bet88-light-text);
    font-size: 0.95em;
}

.page-resources-bet88-brand-review__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-resources-bet88-brand-review__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-resources-bet88-brand-review__list {
    list-style: decimal;
    padding-left: 20px;
    margin-top: 15px;
    color: var(--bet88-light-text);
}

.page-resources-bet88-brand-review__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-bet88-brand-review__list li a {
    color: var(--bet88-primary-color);
    text-decoration: none;
}

.page-resources-bet88-brand-review__list li a:hover {
    text-decoration: underline;
}

.page-resources-bet88-brand-review__faq-item {
    background-color: #252525;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-bet88-brand-review__faq-item h3 {
    color: var(--bet88-primary-color);
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-bet88-brand-review__faq-item p {
    color: var(--bet88-light-text);
}

.page-resources-bet88-brand-review__faq-item a {
    color: var(--bet88-primary-color);
    text-decoration: none;
}

.page-resources-bet88-brand-review__faq-item a:hover {
    text-decoration: underline;
}

.page-resources-bet88-brand-review .highlight-text {
    color: var(--bet88-primary-color);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-bet88-brand-review__title {
        font-size: 2.8em;
    }
    .page-resources-bet88-brand-review__heading {
        font-size: 2em;
    }
    .page-resources-bet88-brand-review__sub-heading {
        font-size: 1.6em;
    }
    .page-resources-bet88-brand-review__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-bet88-brand-review__image--right,
    .page-resources-bet88-brand-review__image--left {
        order: unset;
    }
    .page-resources-bet88-brand-review__image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-resources-bet88-brand-review__hero {
        padding: 60px 0;
    }
    .page-resources-bet88-brand-review__title {
        font-size: 2.2em;
    }
    .page-resources-bet88-brand-review__subtitle {
        font-size: 1em;
    }
    .page-resources-bet88-brand-review__heading {
        font-size: 1.8em;
    }
    .page-resources-bet88-brand-review__sub-heading {
        font-size: 1.4em;
    }
    .page-resources-bet88-brand-review__section {
        padding: 40px 0;
    }
    .page-resources-bet88-brand-review__cta-group {
        flex-direction: column;
        align-items: center;
    }
    .page-resources-bet88-brand-review__cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-resources-bet88-brand-review__title {
        font-size: 1.8em;
    }
    .page-resources-bet88-brand-review__heading {
        font-size: 1.5em;
    }
    .page-resources-bet88-brand-review__sub-heading {
        font-size: 1.2em;
    }
    .page-resources-bet88-brand-review__grid {
        grid-template-columns: 1fr;
    }
    .page-resources-bet88-brand-review__container {
        padding: 0 15px;
    }
}