body {
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1a4d2e; /* Darker green for headings */
}

.block-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a4d2e;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.block-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #5cb85c; /* Accent green */
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Top Info Bar */
.top-info-bar {
    background-color: #ffc107; /* Bright yellow/orange for warning */
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Header Section */
.header-section {
    background-color: #1a4d2e; /* Dark green */
    color: #fff;
    min-height: 120px;
    padding-top: 100px !important;
    padding-bottom: 80px !important;
}

.header-section .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-section .logo-img {
    height: 60px; /* Adjust logo size */
    margin-right: 15px;
}

.header-section .site-name {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.header-section .main-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.header-section .subtitle {
    font-size: 1.1rem;
    color: #e0ffe0; /* Lighter green for subtitle */
}

.btn-cta {
    background-color: #5cb85c; /* Accent green */
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: #4cae4c;
    color: #fff;
}

/* General Section Styling */
.section-block {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg-light-green {
    background-color: #e6ffe6; /* Very light green background */
}

/* Offer Cards */
.offer-card {
    background-color: #fff;
    border: 1px solid #d4edda;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure equal height */
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.offer-card .offer-image-link {
    flex-shrink: 0;
}

.offer-card .offer-img {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.offer-card .offer-title {
    color: #1a4d2e;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.offer-card .offer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.offer-card .license-info {
    font-size: 0.9rem;
    color: #5cb85c; /* Green for license info */
    font-weight: 600;
}

.offer-card .license-info .license-number {
    color: #007bff; /* Blue for the license number itself */
}

.offer-card .license-doc-link {
    color: #007bff;
    margin-left: 5px;
}

.offer-card .welcome-offer {
    font-weight: 600;
    color: #333;
}

.offer-card .rating-score {
    font-weight: 700;
    color: #333;
    margin-right: 5px;
}

.offer-card .star-icon i {
    color: #dc3545; /* Bright red for stars */
    font-size: 1.2rem;
}

.offer-card .payment-methods img {
    height: 30px;
    margin-right: 10px;
    filter: grayscale(0%); /* Ensure color */
}

.offer-card .offer-cta-btn {
    background-color: #007bff; /* Blue for CTA button */
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.offer-card .offer-cta-btn:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Qui nous sommes Block */
#qui-nous-sommes ul {
    list-style: none;
    padding-left: 0;
}

#qui-nous-sommes ul li {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.05rem;
}

#qui-nous-sommes ul li i {
    color: #5cb85c; /* Accent green for checkmarks */
}

/* FAQ Block */
.accordion-button {
    font-weight: 600;
    color: #1a4d2e;
    background-color: #e6ffe6; /* Light green for accordion header */
    border: 1px solid #d4edda;
    border-radius: 5px;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #5cb85c;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #5cb85c;
}

.accordion-body {
    background-color: #f0fff0;
    border: 1px solid #d4edda;
    border-top: none;
    border-radius: 0 0 5px 5px;
    color: #444;
}

/* Player Opinions Block */
.review-card {
    background-color: #fff;
    border: 1px solid #d4edda;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-card .avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #5cb85c;
}

.review-card .reviewer-name {
    color: #1a4d2e;
    font-size: 1.2rem;
}

.review-card .review-text {
    color: #555;
    font-style: italic;
    margin-top: 15px;
    margin-bottom: 15px;
}

.review-card .review-rating i {
    color: #ffc107; /* Gold for review stars */
    font-size: 1.1rem;
}

/* How we choose platforms Block */
#how-we-choose .list-group-item {
    border: none;
    padding-left: 0;
    font-size: 1.05rem;
    color: #444;
}

#how-we-choose .list-group-item strong {
    color: #1a4d2e;
}

/* Responsible Gaming Tips Block */
.responsible-gaming-content {
    background-color: #fff;
    border: 1px solid #d4edda;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tip-item {
    background-color: #f0fff0;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
}

.tip-item .icon-lg {
    font-size: 3rem;
    color: #5cb85c;
}

.tip-item .tip-title {
    color: #1a4d2e;
    font-size: 1.3rem;
}

.tip-item p {
    color: #555;
}

/* Disclaimer Block */
#disclaimer-section {
    background-color: #fff3cd; /* Light yellow background */
    border-top: 5px solid #ffc107; /* Yellow border top */
    border-bottom: 5px solid #ffc107;
    padding-top: 40px;
    padding-bottom: 40px;
}

.disclaimer-box {
    background-color: #fff;
    border: 1px solid #ffeeba;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.disclaimer-title {
    color: #dc3545; /* Red for warning title */
    font-size: 2rem;
    font-weight: 700;
}

.disclaimer-title i {
    color: #dc3545;
}

.disclaimer-subtitle {
    color: #1a4d2e;
    font-size: 1.4rem;
    font-weight: 600;
}

.disclaimer-box p, .disclaimer-box ul li {
    color: #444;
    line-height: 1.6;
}

.disclaimer-box ul {
    list-style: disc;
    padding-left: 20px;
}

.disclaimer-box ul li a {
    color: #007bff;
    text-decoration: none;
}

.disclaimer-box ul li a:hover {
    text-decoration: underline;
}

/* Footer */
.footer-section {
    background-color: #1a4d2e; /* Dark green */
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-section .logo-link .footer-logo-img {
    height: 50px;
    margin-right: 10px;
}

.footer-section .logo-link .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.footer-section .footer-link {
    color: #e0ffe0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-heading {
    color: #5cb85c;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 8px;
}

.responsible-gaming-logos {
    gap: 15px; /* Spacing between logos */
}

.footer-org-logo {
    max-width: 120px; /* Consistent width for logos */
    height: auto;
    object-fit: contain;
    filter: grayscale(0%); /* Ensure logos are colored */
    transition: transform 0.2s ease;
}

.footer-org-logo:hover {
    transform: scale(1.05);
}

.18plus-icon-red {
    max-width: 60px;
    height: auto;
    object-fit: contain;
    background-color: #dc3545; /* Red background for 18+ icon */
    border-radius: 5px;
    padding: 5px;
}

/* Modals */
.age-modal-content, .cookie-modal-content {
    background-color: #f0fff0;
    border: 1px solid #d4edda;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.age-modal-content .modal-title, .cookie-modal-content .modal-title {
    color: #1a4d2e;
    font-weight: 700;
}

.age-modal-content .btn-primary {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.age-modal-content .btn-primary:hover {
    background-color: #4cae4c;
    border-color: #4cae4c;
}

.age-modal-content .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.age-modal-content .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.cookie-modal-content .btn-primary {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.cookie-modal-content .btn-primary:hover {
    background-color: #4cae4c;
    border-color: #4cae4c;
}

.cookie-modal-content .btn-secondary {
    background-color: #dc3545;
    border-color: #dc3545;
}

.cookie-modal-content .btn-secondary:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.cookie-modal-content .btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #fff;
}

.cookie-modal-content .btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
}

.cookie-modal-content .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.cookie-modal-content .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.cookie-modal-content .cookie-policy-link {
    color: #007bff;
    text-decoration: none;
}

.cookie-modal-content .cookie-policy-link:hover {
    text-decoration: underline;
}

/* Ensure buttons don't have underline */
.btn {
    text-decoration: none;
}

.smooth-scroll {
    scroll-behavior: smooth;
}
/*
 * New stock styles for common typography elements within the .lawMatrixNode container.
 * These styles provide a clean, readable layout with moderate font sizes and appropriate spacing.
 */

/* Base styles for the lawMatrixNode container itself */
.lawMatrixNode {
    padding-top: 2rem;    /* Top padding for the content block */
    padding-bottom: 2rem; /* Bottom padding for the content block */
    padding-left: 2.5rem; /* Left padding for the content block */
    padding-right: 2.5rem; /* Right padding for the content block */
    /* You might want to add max-width and margin: 0 auto; here for centering content */
    /* Example: max-width: 960px; margin: 0 auto; */
}

/* Heading 1 styles */
.lawMatrixNode h1 {
    font-size: 2rem;      /* Moderate font size for main titles (approx. 32px based on 16px root) */
    line-height: 1.2;     /* Improved readability for larger text */
    margin-top: 2.5rem;   /* Space above the heading */
    margin-bottom: 1rem;  /* Space below the heading */
    font-weight: 700;     /* Bold font weight */
    color: #333;          /* Dark grey color for headings */
}

/* Heading 2 styles */
.lawMatrixNode h2 {
    font-size: 1.75rem;   /* Slightly smaller than h1 (approx. 28px) */
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #333;
}

/* Heading 3 styles */
.lawMatrixNode h3 {
    font-size: 1.5rem;    /* Further reduced size (approx. 24px) */
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
    color: #333;
}

/* Heading 4 styles */
.lawMatrixNode h4 {
    font-size: 1.25rem;   /* Smaller heading, often for sub-sections (approx. 20px) */
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: #333;
}

/* Heading 5 styles */
.lawMatrixNode h5 {
    font-size: 1.1rem;    /* Smallest heading, often for minor distinctions (approx. 17.6px) */
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #333;
}

/* Paragraph styles */
.lawMatrixNode p {
    font-size: 1rem;      /* Base font size for readability (approx. 16px) */
    line-height: 1.6;     /* Generous line height for body text */
    margin-bottom: 1rem;  /* Space between paragraphs */
    color: #444;          /* Slightly lighter grey for body text */
}

/* Unordered list styles */
.lawMatrixNode ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 1rem;      /* Space above the list */
    margin-bottom: 1rem;   /* Space below the list */
    padding-left: 1.8rem;  /* Indentation for bullet points */
    color: #444;           /* Inherit color from parent or explicitly set */
}

/* List item styles */
.lawMatrixNode li {
    font-size: 1rem;      /* Inherit or explicitly set base font size */
    line-height: 1.6;     /* Consistent line height with paragraphs */
    margin-bottom: 0.5rem; /* Space between list items */
    color: #444;
}
a {
    text-decoration: none;
}
#player-opinions .row {
    justify-content: center;
}
@media (max-width: 767.98px) {
    .top-info-bar {
        padding: 8px !important;
    }
    .header-section .logo-link {
        margin-bottom: 20px;
    }
    .block-title {
        font-size: 20px;
    }
    .offer-card .offer-img {
        max-width: 100%;
        height: 150px;
        object-fit: contain;
    }
    .offer-card {
        flex-direction: column;
        text-align: center;
    }
    .offer-card .offer-image-link {
        margin-right: 0 !important;
        margin-bottom: 15px !important;
    }
    .header-section .main-title {
        font-size: 25px;
    }
}
