/* style/gambling-reviews.css */

/* Base styles for the page content */
.page-gambling-reviews {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

/* Container for consistent spacing */
.page-gambling-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section padding */
.page-gambling-reviews__section {
    padding: 60px 0;
}

/* Hero Section */
.page-gambling-reviews__hero-section {
    position: relative;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-gambling-reviews__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003366, #004488);
    opacity: 0.9;
    z-index: 1;
}

.page-gambling-reviews__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-gambling-reviews__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-gambling-reviews__hero-section .page-gambling-reviews__container {
    position: relative;
    z-index: 2;
}

.page-gambling-reviews__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-gambling-reviews__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gambling-reviews__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* General button styles */
.page-gambling-reviews__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-gambling-reviews__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-gambling-reviews__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-gambling-reviews__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-gambling-reviews__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-gambling-reviews__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-gambling-reviews__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Section titles */
.page-gambling-reviews__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

/* Intro section specific */
.page-gambling-reviews__intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-gambling-reviews__intro p b {
    color: #003366;
}

/* Detailed review grid */
.page-gambling-reviews__grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.page-gambling-reviews__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-gambling-reviews__grid--3-col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-gambling-reviews__review-item,
.page-gambling-reviews__how-to-item,
.page-gambling-reviews__detail-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-gambling-reviews__review-item:hover,
.page-gambling-reviews__how-to-item:hover,
.page-gambling-reviews__detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-gambling-reviews__review-icon,
.page-gambling-reviews__how-to-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-gambling-reviews__review-title,
.page-gambling-reviews__how-to-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gambling-reviews__review-item p,
.page-gambling-reviews__how-to-item ol,
.page-gambling-reviews__how-to-item p {
    font-size: 1em;
    color: #555;
    text-align: justify;
}

.page-gambling-reviews__how-to-item ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.page-gambling-reviews__how-to-item ol li {
    margin-bottom: 8px;
}

/* CTA Banner */
.page-gambling-reviews__cta-banner {
    display: flex;
    align-items: center;
    background-color: #003366;
    color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.page-gambling-reviews__cta-banner-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-right: 30px;
    flex-shrink: 0;
    position: absolute;
    left: 30px;
    opacity: 0.2;
}

.page-gambling-reviews__cta-banner-content {
    flex-grow: 1;
    text-align: left;
    padding-left: 180px;
    position: relative;
    z-index: 1;
}

.page-gambling-reviews__cta-banner-title {
    font-size: 2em;
    color: #FFCC00;
    margin-bottom: 10px;
}

.page-gambling-reviews__cta-banner-text {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-gambling-reviews__cta-banner .page-gambling-reviews__btn {
    margin-top: 15px;
}

/* List styles */
.page-gambling-reviews__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-gambling-reviews__list li {
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFCC00;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
}

.page-gambling-reviews__list li b {
    color: #003366;
}

/* Conclusion section */
.page-gambling-reviews__conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gambling-reviews__conclusion-cta {
    text-align: center;
    margin-top: 30px;
}

/* Related reviews / Detail page list */
.page-gambling-reviews__related-reviews {
    background-color: #eef4f8;
}

.page-gambling-reviews__detail-pages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gambling-reviews__detail-card {
    text-align: left;
    padding: 25px;
}

.page-gambling-reviews__detail-card-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gambling-reviews__detail-card-title a {
    color: #003366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gambling-reviews__detail-card-title a:hover {
    color: #FFCC00;
}

.page-gambling-reviews__detail-card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-gambling-reviews__detail-card .page-gambling-reviews__btn {
    align-self: flex-start;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gambling-reviews__hero-title {
        font-size: 2.8em;
    }
    .page-gambling-reviews__hero-description {
        font-size: 1.1em;
    }
    .page-gambling-reviews__section-title {
        font-size: 2em;
    }
    .page-gambling-reviews__grid--2-col {
        grid-template-columns: 1fr;
    }
    .page-gambling-reviews__grid--3-col {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-gambling-reviews__cta-banner-img {
        position: static;
        margin-right: 20px;
        margin-bottom: 20px;
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    .page-gambling-reviews__cta-banner-content {
        padding-left: 0;
        text-align: center;
    }
    .page-gambling-reviews__cta-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-gambling-reviews__hero-title {
        font-size: 2.2em;
    }
    .page-gambling-reviews__hero-description {
        font-size: 1em;
    }
    .page-gambling-reviews__section {
        padding: 40px 0;
    }
    .page-gambling-reviews__section-title {
        font-size: 1.8em;
    }
    .page-gambling-reviews__grid--3-col {
        grid-template-columns: 1fr;
    }
    .page-gambling-reviews__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-gambling-reviews__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-gambling-reviews__detail-pages-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-gambling-reviews__hero-title {
        font-size: 1.8em;
    }
    .page-gambling-reviews__hero-description {
        font-size: 0.9em;
    }
    .page-gambling-reviews__section-title {
        font-size: 1.5em;
    }
    .page-gambling-reviews__review-title,
    .page-gambling-reviews__how-to-title {
        font-size: 1.4em;
    }
    .page-gambling-reviews__cta-banner-title {
        font-size: 1.6em;
    }
}