/* style/gambling-laws-regulations-country-interpretations.css */

.page-gambling-laws-regulations-country-interpretations {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-gambling-laws-regulations-country-interpretations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gambling-laws-regulations-country-interpretations__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #0A2463 60%, #FFD700 100%); /* Dark blue to gold gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-laws-regulations-country-interpretations__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-gambling-laws-regulations-country-interpretations__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.page-gambling-laws-regulations-country-interpretations__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for title on dark background */
}

.page-gambling-laws-regulations-country-interpretations__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-gambling-laws-regulations-country-interpretations__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-gambling-laws-regulations-country-interpretations__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-gambling-laws-regulations-country-interpretations__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-gambling-laws-regulations-country-interpretations__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-gambling-laws-regulations-country-interpretations__intro-section,
.page-gambling-laws-regulations-country-interpretations__content-section,
.page-gambling-laws-regulations-country-interpretations__country-analysis-section,
.page-gambling-laws-regulations-country-interpretations__common-themes-section,
.page-gambling-laws-regulations-country-interpretations__safety-tips-section {
    padding: 60px 0;
    background-color: #F9F9F9;
}

.page-gambling-laws-regulations-country-interpretations__intro-section p,
.page-gambling-laws-regulations-country-interpretations__content-section p,
.page-gambling-laws-regulations-country-interpretations__common-themes-section p,
.page-gambling-laws-regulations-country-interpretations__safety-tips-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
}

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

.page-gambling-laws-regulations-country-interpretations__card {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-gambling-laws-regulations-country-interpretations__card:hover {
    transform: translateY(-5px);
}

.page-gambling-laws-regulations-country-interpretations__card-title {
    font-size: 1.8em;
    color: #0A2463; /* Dark blue for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gambling-laws-regulations-country-interpretations__card p {
    font-size: 1em;
    color: #555;
}

.page-gambling-laws-regulations-country-interpretations__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gambling-laws-regulations-country-interpretations__accordion {
    margin-top: 40px;
}

.page-gambling-laws-regulations-country-interpretations__accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-gambling-laws-regulations-country-interpretations__accordion-header {
    background-color: #0A2463; /* Dark blue header */
    color: #FFFFFF;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-gambling-laws-regulations-country-interpretations__accordion-header:hover {
    background-color: #1A3E8A; /* Slightly lighter dark blue on hover */
}

.page-gambling-laws-regulations-country-interpretations__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-gambling-laws-regulations-country-interpretations__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-gambling-laws-regulations-country-interpretations__accordion-content {
    padding: 20px 25px;
    background-color: #FDFDFD;
    border-top: 1px solid #E0E0E0;
    display: none; /* Hidden by default */
}

.page-gambling-laws-regulations-country-interpretations__accordion-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-gambling-laws-regulations-country-interpretations__accordion-content ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #444;
}

.page-gambling-laws-regulations-country-interpretations__accordion-content li {
    margin-bottom: 8px;
}

.page-gambling-laws-regulations-country-interpretations__image-inline {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-gambling-laws-regulations-country-interpretations__common-themes-section ul,
.page-gambling-laws-regulations-country-interpretations__safety-tips-section ol {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-gambling-laws-regulations-country-interpretations__common-themes-section li,
.page-gambling-laws-regulations-country-interpretations__safety-tips-section li {
    background-color: #FFFFFF;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    font-size: 1.1em;
    color: #333;
}

.page-gambling-laws-regulations-country-interpretations__common-themes-section li strong,
.page-gambling-laws-regulations-country-interpretations__safety-tips-section li strong {
    color: #0A2463; /* Dark blue for emphasis */
}

.page-gambling-laws-regulations-country-interpretations__cta-section {
    background-color: #0A2463; /* Dark blue background */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-gambling-laws-regulations-country-interpretations__cta-title {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: #FFD700; /* Gold title */
}

.page-gambling-laws-regulations-country-interpretations__cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-gambling-laws-regulations-country-interpretations__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-gambling-laws-regulations-country-interpretations__disclaimer {
    font-size: 0.9em;
    margin-top: 50px;
    color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-laws-regulations-country-interpretations__hero-title {
        font-size: 2.8em;
    }
    .page-gambling-laws-regulations-country-interpretations__hero-subtitle {
        font-size: 1.2em;
    }
    .page-gambling-laws-regulations-country-interpretations__section-title {
        font-size: 2em;
    }
    .page-gambling-laws-regulations-country-interpretations__card-title {
        font-size: 1.5em;
    }
    .page-gambling-laws-regulations-country-interpretations__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-gambling-laws-regulations-country-interpretations__hero-section {
        padding: 80px 0;
    }
    .page-gambling-laws-regulations-country-interpretations__hero-title {
        font-size: 2.2em;
    }
    .page-gambling-laws-regulations-country-interpretations__hero-subtitle {
        font-size: 1em;
    }
    .page-gambling-laws-regulations-country-interpretations__grid {
        grid-template-columns: 1fr;
    }
    .page-gambling-laws-regulations-country-interpretations__section-title {
        font-size: 1.8em;
    }
    .page-gambling-laws-regulations-country-interpretations__accordion-header {
        font-size: 1.3em;
        padding: 15px 20px;
    }
    .page-gambling-laws-regulations-country-interpretations__cta-title {
        font-size: 1.8em;
    }
    .page-gambling-laws-regulations-country-interpretations__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-gambling-laws-regulations-country-interpretations__hero-title {
        font-size: 1.8em;
    }
    .page-gambling-laws-regulations-country-interpretations__hero-subtitle {
        font-size: 0.9em;
    }
    .page-gambling-laws-regulations-country-interpretations__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gambling-laws-regulations-country-interpretations__section-title {
        font-size: 1.5em;
    }
    .page-gambling-laws-regulations-country-interpretations__card-title {
        font-size: 1.3em;
    }
    .page-gambling-laws-regulations-country-interpretations__accordion-header {
        font-size: 1.1em;
        padding: 12px 15px;
    }
    .page-gambling-laws-regulations-country-interpretations__cta-title {
        font-size: 1.5em;
    }
    .page-gambling-laws-regulations-country-interpretations__cta-section p {
        font-size: 1em;
    }
}