/* style/gambling-guide.css */
.page-gambling-guide {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
}

.page-gambling-guide a {
    text-decoration: none;
    color: #FFD700;
}

.page-gambling-guide a:hover {
    color: #e0b000;
}

/* Hero Section */
.page-gambling-guide__hero {
    background: linear-gradient(135deg, #CC0000 0%, #a00000 50%, #FFD700 100%);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.page-gambling-guide__hero-content {
    max-width: 900px;
}

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

.page-gambling-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
}

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

.page-gambling-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gambling-guide__btn--primary {
    background-color: #FFD700;
    color: #CC0000;
    border: 2px solid #FFD700;
}

.page-gambling-guide__btn--primary:hover {
    background-color: #e0b000;
    color: #a00000;
    transform: translateY(-3px);
}

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

.page-gambling-guide__btn--secondary:hover {
    background-color: #FFD700;
    color: #CC0000;
    transform: translateY(-3px);
}

.page-gambling-guide__hero-image-wrapper {
    margin-top: 40px;
}

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

/* General Section Styling */
.page-gambling-guide__section {
    padding: 60px 20px;
    background-color: #2a2a2a;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-gambling-guide__section:nth-child(odd) {
    background-color: #1f1f1f;
}

.page-gambling-guide__container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.page-gambling-guide__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

/* Detail Cards Grid */
.page-gambling-guide__detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gambling-guide__detail-card {
    background-color: #333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

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

.page-gambling-guide__detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #CC0000;
}

.page-gambling-guide__detail-card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin: 20px 15px 10px;
}

.page-gambling-guide__detail-card-title a {
    color: #FFD700;
    transition: color 0.3s ease;
}

.page-gambling-guide__detail-card-title a:hover {
    color: #e0b000;
}

.page-gambling-guide__detail-card-description {
    font-size: 1em;
    color: #ccc;
    margin: 0 15px 20px;
    flex-grow: 1;
}

.page-gambling-guide__btn--link {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
    background-color: #CC0000;
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-gambling-guide__btn--link:hover {
    background-color: #a00000;
}

/* Call to Action Section */
.page-gambling-guide__section--cta {
    background-color: #CC0000;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.page-gambling-guide__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-gambling-guide__cta-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* FAQ Section */
.page-gambling-guide__section--faq {
    background-color: #2a2a2a;
}

.page-gambling-guide__faq-item {
    background-color: #333;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-gambling-guide__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-gambling-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    color: #CC0000;
    transition: transform 0.3s ease;
}

.page-gambling-guide__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-gambling-guide__faq-answer {
    font-size: 1.05em;
    color: #ccc;
    margin-top: 15px;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #444;
}

.page-gambling-guide__faq-answer.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gambling-guide__hero-title {
        font-size: 2.8em;
    }
    .page-gambling-guide__section-title {
        font-size: 2em;
    }
    .page-gambling-guide__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-gambling-guide__hero {
        padding: 60px 15px;
    }
    .page-gambling-guide__hero-title {
        font-size: 2.2em;
    }
    .page-gambling-guide__hero-description {
        font-size: 1em;
    }
    .page-gambling-guide__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-gambling-guide__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-gambling-guide__section {
        padding: 40px 15px;
    }
    .page-gambling-guide__section-title {
        font-size: 1.8em;
    }
    .page-gambling-guide__detail-grid {
        grid-template-columns: 1fr;
    }
    .page-gambling-guide__cta-title {
        font-size: 1.8em;
    }
    .page-gambling-guide__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-gambling-guide__btn--large {
        width: 80%;
        max-width: 300px;
    }
    .page-gambling-guide__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-gambling-guide__hero-title {
        font-size: 1.8em;
    }
    .page-gambling-guide__section-title {
        font-size: 1.5em;
    }
    .page-gambling-guide__cta-title {
        font-size: 1.5em;
    }
    .page-gambling-guide__btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-gambling-guide__btn--large {
        padding: 15px 25px;
        font-size: 1em;
    }
}