.page-gambling-reviews-user-experience {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0d1a26; /* Slightly lighter dark background for readability */
    line-height: 1.6;
}

.page-gambling-reviews-user-experience__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gambling-reviews-user-experience__hero {
    background: linear-gradient(135deg, #1A2A40 0%, #0d1a26 100%); /* Dark blue to even darker */
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-gambling-reviews-user-experience__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-gambling-reviews-user-experience__hero .page-gambling-reviews-user-experience__container {
    position: relative;
    z-index: 2;
}

.page-gambling-reviews-user-experience__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gambling-reviews-user-experience__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #F0F0F0;
}

.page-gambling-reviews-user-experience__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-gambling-reviews-user-experience__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-gambling-reviews-user-experience__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2A40; /* Dark blue text on gold */
}

.page-gambling-reviews-user-experience__btn--primary:hover {
    background-color: #e5c100; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-gambling-reviews-user-experience__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
}

.page-gambling-reviews-user-experience__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2A40;
    transform: translateY(-2px);
}

.page-gambling-reviews-user-experience__section {
    padding: 80px 0;
    background-color: #1A2A40; /* Main dark background */
    color: #E0E0E0;
}

.page-gambling-reviews-user-experience__section--alt {
    background-color: #0d1a26; /* Slightly darker alternative section background */
}

.page-gambling-reviews-user-experience__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-gambling-reviews-user-experience__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-gambling-reviews-user-experience__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gambling-reviews-user-experience__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.page-gambling-reviews-user-experience__content-block--reverse {
    flex-direction: row-reverse;
}

.page-gambling-reviews-user-experience__image-wrapper {
    flex: 1;
    min-width: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.page-gambling-reviews-user-experience__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-gambling-reviews-user-experience__text-content {
    flex: 2;
    font-size: 1.1em;
    color: #D0D0D0;
}

.page-gambling-reviews-user-experience__text-content p {
    margin-bottom: 15px;
}

.page-gambling-reviews-user-experience__cta-final {
    text-align: center;
    margin-top: 60px;
}

.page-gambling-reviews-user-experience__btn--lg {
    padding: 18px 40px;
    font-size: 1.3em;
    min-width: 280px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gambling-reviews-user-experience__title {
        font-size: 2.5em;
    }
    .page-gambling-reviews-user-experience__section-title {
        font-size: 2em;
    }
    .page-gambling-reviews-user-experience__sub-title {
        font-size: 1.5em;
    }
    .page-gambling-reviews-user-experience__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-gambling-reviews-user-experience__content-block--reverse {
        flex-direction: column;
    }
    .page-gambling-reviews-user-experience__image-wrapper {
        margin-bottom: 30px;
    }
    .page-gambling-reviews-user-experience__text-content {
        flex: auto;
    }
    .page-gambling-reviews-user-experience__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-gambling-reviews-user-experience__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-gambling-reviews-user-experience__btn--lg {
        width: 90%;
        min-width: unset;
    }
}

@media (max-width: 576px) {
    .page-gambling-reviews-user-experience__hero {
        padding: 80px 0;
    }
    .page-gambling-reviews-user-experience__title {
        font-size: 2em;
    }
    .page-gambling-reviews-user-experience__subtitle {
        font-size: 1em;
    }
    .page-gambling-reviews-user-experience__section {
        padding: 60px 0;
    }
    .page-gambling-reviews-user-experience__section-title {
        font-size: 1.8em;
    }
    .page-gambling-reviews-user-experience__sub-title {
        font-size: 1.3em;
    }
    .page-gambling-reviews-user-experience__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-gambling-reviews-user-experience__btn--lg {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}