/* style/gambling-guides.css */

.page-gambling-guides {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-gambling-guides__hero {
    background: linear-gradient(135deg, #0A2463, #3A5B8E);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-guides__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,gambling,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-gambling-guides__hero > .page-gambling-guides__container {
    position: relative;
    z-index: 1;
}

.page-gambling-guides__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for highlight */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gambling-guides__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-gambling-guides__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-gambling-guides__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-gambling-guides__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-gambling-guides__btn--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-gambling-guides__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-gambling-guides__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-gambling-guides__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-gambling-guides__section {
    padding: 60px 0;
    text-align: center;
}

.page-gambling-guides__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-gambling-guides__section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-gambling-guides__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-guides__section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-gambling-guides__intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap;
}

.page-gambling-guides__intro-text {
    flex: 1;
    min-width: 300px;
}

.page-gambling-guides__intro-text p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #444;
}

.page-gambling-guides__intro-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-gambling-guides__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-gambling-guides__guide-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-gambling-guides__guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gambling-guides__card-img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-gambling-guides__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0A2463;
    min-height: 60px; /* Ensure consistent height */
}

.page-gambling-guides__card-title a {
    text-decoration: none;
    color: #0A2463;
    transition: color 0.3s ease;
}

.page-gambling-guides__card-title a:hover {
    color: #FFD700;
}

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

.page-gambling-guides__guide-card .page-gambling-guides__btn {
    align-self: flex-start;
}

.page-gambling-guides__tips {
    background-color: #0A2463;
    color: #fff;
}

.page-gambling-guides__tips .page-gambling-guides__section-title {
    color: #FFD700;
}

.page-gambling-guides__tips .page-gambling-guides__section-title::after {
    background-color: #fff;
}

.page-gambling-guides__tips .page-gambling-guides__section-description {
    color: #e0e0e0;
}

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

.page-gambling-guides__tip-item {
    background-color: #1a3c7a; /* Darker shade of primary */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-gambling-guides__tip-item:hover {
    transform: translateY(-5px);
}

.page-gambling-guides__tip-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-gambling-guides__tip-item p {
    color: #c0c0c0;
    font-size: 1.05em;
}

.page-gambling-guides__promotions {
    background-color: #f0f0f0;
}

.page-gambling-guides__promotions-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap-reverse;
}

.page-gambling-guides__promotions-text {
    flex: 1;
    min-width: 300px;
}

.page-gambling-guides__promotions-text p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #444;
}

.page-gambling-guides__promotions-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-gambling-guides__cta {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
}

.page-gambling-guides__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gambling-guides__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-guides__hero-title {
        font-size: 2.8em;
    }
    .page-gambling-guides__hero-subtitle {
        font-size: 1.1em;
    }
    .page-gambling-guides__section-title {
        font-size: 2em;
    }
    .page-gambling-guides__intro-content, .page-gambling-guides__promotions-content {
        flex-direction: column;
        text-align: center;
    }
    .page-gambling-guides__intro-text, .page-gambling-guides__promotions-text {
        order: 2;
    }
    .page-gambling-guides__intro-image, .page-gambling-guides__promotions-image {
        order: 1;
        margin-bottom: 30px;
    }
    .page-gambling-guides__tip-grid {
        grid-template-columns: 1fr;
    }
    .page-gambling-guides__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-gambling-guides__hero-title {
        font-size: 2.2em;
    }
    .page-gambling-guides__hero-subtitle {
        font-size: 1em;
    }
    .page-gambling-guides__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gambling-guides__section {
        padding: 40px 0;
    }
    .page-gambling-guides__section-title {
        font-size: 1.8em;
    }
    .page-gambling-guides__guide-list {
        grid-template-columns: 1fr;
    }
    .page-gambling-guides__tip-title {
        font-size: 1.5em;
    }
    .page-gambling-guides__cta-title {
        font-size: 2em;
    }
    .page-gambling-guides__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-gambling-guides__hero {
        padding: 60px 0;
    }
    .page-gambling-guides__hero-title {
        font-size: 1.8em;
    }
    .page-gambling-guides__hero-subtitle {
        font-size: 0.9em;
    }
    .page-gambling-guides__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-gambling-guides__section-title {
        font-size: 1.5em;
    }
    .page-gambling-guides__card-title {
        font-size: 1.3em;
    }
    .page-gambling-guides__tip-title {
        font-size: 1.3em;
    }
    .page-gambling-guides__cta-title {
        font-size: 1.8em;
    }
    .page-gambling-guides__cta-description {
        font-size: 1em;
    }
}