body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a0a2e; /* Dark purple/black background */
    color: #e0e0e0; /* Light grey text for contrast */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #f7d32e; /* Golden yellow for headings */
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 3rem;
    }
}

.lead {
    color: #cccccc;
}

a {
    color: #f7d32e;
    text-decoration: none;
}

a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.btn-primary {
    background-color: #f7d32e;
    border-color: #f7d32e;
    color: #1a0a2e;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-primary:hover {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #000;
}

.btn-secondary {
    background-color: #6a0dad;
    border-color: #6a0dad;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #8a2be2;
    border-color: #8a2be2;
}

.btn-outline-primary {
    color: #f7d32e;
    border-color: #f7d32e;
    background-color: transparent;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-outline-primary:hover {
    color: #1a0a2e;
    background-color: #f7d32e;
    border-color: #f7d32e;
}

/* Top Info Banner */
.top-info-banner {
    background-color: #0d0615; /* Even darker background */
    color: #e0e0e0;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Header */
.header {
    background-color: #1a0a2e;
    border-bottom: 1px solid #331a4d;
    padding: 0.75rem 0;
    z-index: 1030;
}

.header .navbar-brand .logo {
    height: 40px;
    width: auto;
}

.header .navbar-brand .site-name {
    color: #f7d32e;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .header .navbar-brand .site-name {
        font-size: 1.25rem; /* Mobile font size */
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .header .navbar-brand .site-name {
        font-size: 1.8rem; /* Tablet font size */
    }
}

.header .navbar-toggler {
    border-color: #f7d32e;
}

.header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28247, 211, 46, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header .offcanvas {
    background-color: #1a0a2e;
}

.header .offcanvas-header {
    border-bottom: 1px solid #331a4d;
}

.header .offcanvas-title {
    color: #f7d32e;
    font-size: 1.8rem;
}

.header .offcanvas-body .nav-link {
    color: #e0e0e0;
    font-weight: 600;
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

.header .offcanvas-body .nav-link:hover,
.header .offcanvas-body .nav-link.active {
    color: #f7d32e;
}

@media (min-width: 1100px) {
    .header .navbar-nav {
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .header .navbar-nav .nav-item {
        margin-left: 1.5rem;
    }
    .header .navbar-toggler {
        display: none;
    }
    .header .offcanvas {
        visibility: visible;
        transform: none;
        position: static;
        background-color: transparent;
        border: none;
    }
    .header .offcanvas-header, .header .offcanvas-body {
        padding: 0;
        border: none;
    }
    .header .offcanvas-body {
        display: flex;
        flex-grow: 1;
        justify-content: flex-end;
    }
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    background-color: #0d0615;
    padding: 8rem 0;
    overflow: hidden;
}

.hero-section .hero-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-section h1 {
    color: #f7d32e;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
}

.hero-section .advantages-list {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.hero-section .advantages-list li {
    margin-bottom: 0.5rem;
}

.hero-section .advantages-list i {
    color: #6a0dad;
}

.hero-section .anj-statement {
    font-size: 1rem;
    color: #f7d32e;
    font-weight: 600;
}

/* General Section Styling */
section {
    padding: 5rem 0;
}

section:nth-of-type(odd) {
    background-color: #1a0a2e;
}

section:nth-of-type(even) {
    background-color: #0d0615;
}

/* About FortuneIndex Section */
.about-section h2 {
    color: #f7d32e;
}

.about-section .principles-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.about-section .principles-list i {
    color: #f7d32e;
    font-size: 1.3rem;
    vertical-align: middle;
}

/* Casinos Section */
.casinos-section .card {
    background-color: #2a1542; /* Darker purple for cards */
    border: 1px solid #3d225c;
    color: #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    overflow: hidden;
}

.casinos-section .card-img-top {
    width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: contain;
    border-bottom: 1px solid #3d225c;
}

.casinos-section .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.casinos-section .card-title {
    color: #f7d32e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.casinos-section .card-text {
    font-size: 0.95rem;
    color: #cccccc;
    flex-grow: 1;
}

.casinos-section .card-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.casinos-section .card-features-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.casinos-section .card-features-list i {
    color: #6a0dad;
    margin-right: 0.5rem;
}

.casinos-section .card-footer {
    background-color: #2a1542;
    border-top: 1px solid #3d225c;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.casinos-section .rating-score {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f7d32e;
    display: flex;
    align-items: center;
}

.casinos-section .rating-score i {
    color: #f7d32e;
    margin-right: 0.3rem;
}

.casinos-section .license-logo {
    height: 30px;
    width: auto;
}

/* Rating Stars */
.rating-stars {
    display: inline-block;
    font-size: 1.2rem;
    color: #f7d32e;
}

.rating-stars::before {
    content: '★★★★★';
    letter-spacing: 3px;
    background: linear-gradient(90deg, #f7d32e var(--rating-width, 0%), #555 var(--rating-width, 0%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Comparatif Table */
.comparatif-table {
    color: #e0e0e0;
    border-color: #3d225c;
}

.comparatif-table th {
    background-color: #3d225c;
    color: #f7d32e;
    border-color: #3d225c;
    padding: 1rem;
}

.comparatif-table td {
    background-color: #2a1542;
    border-color: #3d225c;
    padding: 1rem;
    vertical-align: middle;
}

.comparatif-table td a {
    color: #f7d32e;
}

.comparatif-table td a:hover {
    color: #ffd700;
}

/* FAQ Section */
.faq-section .accordion-item {
    background-color: #2a1542;
    border: 1px solid #3d225c;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-section .accordion-button {
    background-color: #3d225c;
    color: #f7d32e;
    font-weight: 600;
    border: none;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #6a0dad;
    color: #fff;
}

.faq-section .accordion-button::after {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.faq-section .accordion-body {
    color: #e0e0e0;
    padding: 1.5rem;
}

/* Reviews Section */
.reviews-section .review-card {
    background-color: #2a1542;
    border: 1px solid #3d225c;
    border-radius: 0.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reviews-section .review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #f7d32e;
}

.reviews-section h4 {
    color: #f7d32e;
    font-size: 1.2rem;
}

.reviews-section .review-date {
    font-size: 0.85rem;
    color: #999999;
}

.reviews-section .rating-stars {
    font-size: 1.1rem;
}

.reviews-section p {
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Contact Form Section */
.contact-form-section .contact-form {
    background-color: #2a1542;
    border: 1px solid #3d225c;
}

.contact-form-section .form-label {
    color: #f7d32e;
    font-weight: 600;
}

.contact-form-section .form-control {
    background-color: #1a0a2e;
    border: 1px solid #3d225c;
    color: #e0e0e0;
}

.contact-form-section .form-control::placeholder {
    color: #999999;
}

.contact-form-section .form-control:focus {
    background-color: #1a0a2e;
    border-color: #f7d32e;
    box-shadow: 0 0 0 0.25rem rgba(247, 211, 46, 0.25);
    color: #e0e0e0;
}

/* Responsible Gaming Disclaimer */
.responsible-gaming-disclaimer {
    background-color: #0d0615;
    padding: 6rem 0;
}

.responsible-gaming-disclaimer .disclaimer-content {
    background-color: #331a4d; /* Distinct dark purple background */
    border: 2px solid #6a0dad; /* Purple border */
    color: #e0e0e0;
}

.responsible-gaming-disclaimer h2 {
    color: #f7d32e;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.responsible-gaming-disclaimer h2 i {
    color: #f7d32e;
}

.responsible-gaming-disclaimer h3 {
    color: #f7d32e;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.responsible-gaming-disclaimer p {
    font-size: 1rem;
    line-height: 1.6;
}

.responsible-gaming-disclaimer .disclaimer-link {
    color: #f7d32e;
    text-decoration: underline;
}

.responsible-gaming-disclaimer .disclaimer-link:hover {
    color: #ffd700;
}

/* Footer */
.footer {
    background-color: #1a0a2e;
    color: #e0e0e0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid #331a4d;
}

.footer-heading {
    color: #f7d32e;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
}

.footer-links {
    padding-left: 0;
}

.footer-links li a {
    color: #cccccc;
    font-size: 0.9rem;
    display: block;
    padding: 0.2rem 0;
}

.footer-links li a:hover {
    color: #f7d32e;
    text-decoration: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.footer-contact li i {
    color: #f7d32e;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.footer-contact li a {
    color: #cccccc;
}

.footer-contact li a:hover {
    color: #f7d32e;
}

.footer-divider {
    border-color: #331a4d;
}

.footer-org-logos {
    gap: 1.5rem;
}

.footer-org-logos img {
    max-width: 120px; /* Adjust based on number of images */
    height: auto;
    object-fit: contain;
    filter: none; /* Ensure no grayscale or filters */
    transition: none; /* No transition on hover */
}

.footer-org-logos .plus-icon {
    max-width: 60px;
}

.word-break-all {
    word-break: break-all;
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Darker overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1060; /* Higher than cookie banner */
    opacity: 0;
    visibility: hidden;
}

.age-verification-modal.show {
    opacity: 1;
    visibility: visible;
}

.age-verification-content {
    background-color: #1a0a2e; /* Match site theme */
    border: 2px solid #f7d32e; /* Golden border */
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(247, 211, 46, 0.4);
    max-width: 500px;
    width: 90%;
    color: #e0e0e0;
}

.age-verification-content h2 {
    color: #f7d32e;
    font-size: 2rem;
}

.age-verification-content p {
    font-size: 1.1rem;
}

.age-verification-content .text-muted-custom {
    color: #999999; /* Custom muted color */
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a0a2e; /* Dark purple */
    color: #e0e0e0;
    padding: 1rem 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1050; /* Below age verification, above other content */
    display: none; /* Hidden by default, shown by JS */
    border-top: 1px solid #331a4d;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-content .cookie-policy-link {
    color: #f7d32e;
    text-decoration: underline;
}

.cookie-content .cookie-policy-link:hover {
    color: #ffd700;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .cookie-content p {
        margin-bottom: 0;
        margin-right: 1.5rem;
    }
    .cookie-buttons {
        flex-wrap: nowrap;
    }
}
/* Styles for the main wrapper */
.regShieldWrap {
    margin-top: 2.5rem; /* Top margin for spacing from elements above */
    padding-left: 1.5rem; /* Left padding for content inside */
    padding-right: 1.5rem; /* Right padding for content inside */
    max-width: 1200px; /* Optional: Limit content width for readability */
    margin-left: auto; /* Center the wrapper if max-width is set */
    margin-right: auto; /* Center the wrapper if max-width is set */
}

/* Heading styles */
.regShieldWrap h1 {
    font-size: 1.8rem; /* Moderate size, approximately 28.8px with a base of 16px */
    line-height: 1.2;
    margin-top: 2rem; /* Spacing above the heading */
    margin-bottom: 1rem; /* Spacing below the heading */
    font-weight: 600; /* Semi-bold for emphasis */
    color: #e8e5e5; /* Darker color for headings */
}

.regShieldWrap h2 {
    font-size: 1.5rem; /* Approximately 24px */
    line-height: 1.3;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #e8e5e5;
}

.regShieldWrap h3 {
    font-size: 1.25rem; /* Approximately 20px */
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 500; /* Medium weight */
    color: #e8e5e5;
}

.regShieldWrap h4 {
    font-size: 1.125rem; /* Approximately 18px */
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: #e8e5e5;
}

.regShieldWrap h5 {
    font-size: 1rem; /* Base font size, approximately 16px */
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e8e5e5;
}

/* Paragraph styles */
.regShieldWrap p {
    font-size: 1rem; /* Base text size */
    line-height: 1.6; /* Good line height for readability */
    margin-top: 0; /* Reset default browser margin */
    margin-bottom: 1rem; /* Spacing between paragraphs */
    color: #e8e5e5; /* Standard text color */
}

/* Unordered list styles */
.regShieldWrap ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 1rem; /* Spacing above the list */
    margin-bottom: 1rem; /* Spacing below the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
    color: #e8e5e5;
}

/* List item styles */
.regShieldWrap li {
    font-size: 1rem; /* Inherit or explicitly set base text size */
    line-height: 1.6; /* Match paragraph line height for consistency */
    margin-bottom: 0.5rem; /* Spacing between list items */
}
.card a {
    padding: 0 10px;
}
.table-striped>tbody>tr >* {
    --bs-table-color-type: #e7e4e4 !important;
}