body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FDF7F9; /* Very light pinkish background */
}

/* General Styles */
.container {
    max-width: 1200px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #C24D82; /* A deeper pink for headings */
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F8C8DC; /* Light pink underline */
    border-radius: 2px;
}

/* Buttons */
.btn-primary-custom {
    display: inline-block;
    background-color: #FFD1DC; /* Pink Lace */
    color: #333;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0s, color 0s;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #F8C8DC; /* Slightly darker pink on hover */
    color: #333;
    text-decoration: none;
}

.btn-secondary-custom {
    display: inline-block;
    background-color: #C24D82; /* Deeper pink */
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0s, color 0s;
    border: none;
}

.btn-secondary-custom:hover {
    background-color: #A03B6B; /* Even deeper pink on hover */
    color: #fff;
    text-decoration: none;
}

/* Header */
.header-main {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1030;
}

.logo-img {
    height: 50px;
}

.main-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav .nav-link-item {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: color 0s;
}

.main-nav .nav-link-item:hover {
    color: #C24D82;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    margin-top: 76px; /* Height of fixed header */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #eee;
}

/* Rating List Section */
.rating-list-section {
    background-color: #fff;
}

.rating-item-card {
    background-color: #FDF7F9;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    align-items: center;
}

.rating-item-image {
    width: 250px;
    height: 250px;
    object-fit: contain;
    transition: transform 0s;
}

.rating-item-image:hover {
    transform: scale(1.02);
}

.rating-image-link {
    display: block;
    flex-shrink: 0;
}

.rating-item-content {
    flex-grow: 1;
}

.rating-item-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #C24D82;
}

.rating-stars i {
    color: #FFD700; /* Gold color for stars */
    font-size: 1.2rem;
}

.rating-score {
    font-weight: 600;
    color: #555;
}

.rating-item-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.rating-item-bonus {
    font-weight: 600;
    color: #C24D82;
    margin-bottom: 1.5rem;
}

.rating-item-bonus i {
    color: #FFD1DC;
    margin-right: 0.5rem;
}

/* Why Us Section */
.why-us-section {
    background-color: #FDF7F9;
}

.why-us-content .lead {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.check-list li {
    margin-bottom: 0.8rem;
    color: #444;
    font-weight: 500;
}

.check-list i {
    color: #C24D82;
    font-size: 1.2rem;
}

/* Comparison Table Section */
.comparison-table-section {
    background-color: #fff;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.comparison-table thead th {
    background-color: #C24D82;
    color: #fff;
    padding: 1rem;
    text-align: left;
    border: none;
    font-weight: 600;
}

.comparison-table tbody tr {
    background-color: #FDF7F9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.comparison-table tbody td {
    padding: 1rem;
    vertical-align: top;
    border: none;
}

.feature-cell {
    font-weight: 600;
    color: #C24D82;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details-cell p {
    margin-bottom: 0.5rem;
    color: #555;
}

.toggle-details {
    background: none;
    border: none;
    color: #C24D82;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    transition: transform 0s;
}

.toggle-details i {
    transition: transform 0s;
}

.toggle-details.active i {
    transform: rotate(180deg);
}

.hidden-details {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #777;
}

/* FAQ Section */
.faq-section {
    background-color: #FDF7F9;
}

.accordion-item {
    border: 1px solid #FFD1DC;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    background-color: #FFD1DC;
    border-bottom: none;
}

.accordion-button {
    background-color: #FFD1DC !important;
    color: #C24D82;
    font-weight: 600;
    padding: 1rem 1.5rem;
    text-align: left;
    border: none;
    box-shadow: none;
    transition: background-color 0s;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #C24D82 !important;
}

.accordion-button::after {
    filter: invert(50%) sepia(100%) saturate(2000%) hue-rotate(300deg) brightness(100%) contrast(100%); /* Pink arrow for collapsed */
    transition: transform 0s;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); /* White arrow for expanded */
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
    color: #555;
}

/* User Reviews Section */
.user-reviews-section {
    background-color: #fff;
}

.review-grid {
    display: flex;
    flex-wrap: wrap;
}

.review-card {
    background-color: #FDF7F9;
    border: 1px solid #FFD1DC;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.review-card h5 {
    font-size: 1.15rem;
    color: #C24D82;
}

.review-stars-small i {
    color: #FFD700;
    font-size: 1rem;
}

.review-text {
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #FFF0F5; /* Lavender Blush, a very light pink */
    border-top: 5px solid #C24D82;
    border-bottom: 5px solid #C24D82;
    padding: 3rem 0;
    margin-top: 3rem;
}

.disclaimer-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.disclaimer-title {
    color: #C24D82;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.disclaimer-title i {
    font-size: 2.2rem;
    color: #C24D82;
}

.disclaimer-block p {
    color: #444;
    margin-bottom: 1rem;
}

.disclaimer-block p a {
    color: #C24D82;
    text-decoration: none;
    font-weight: 600;
}

.disclaimer-block p a:hover {
    text-decoration: underline;
}

.disclaimer-contact {
    font-weight: 600;
    color: #C24D82;
    margin-top: 0.5rem;
}

/* Footer */
.footer-main {
    background-color: #C24D82; /* Deeper pink for footer */
    color: #fff;
}

.footer-main a {
    color: #FFD1DC;
    text-decoration: none;
    transition: color 0s;
}

.footer-main a:hover {
    color: #fff;
    text-decoration: none;
}

.logo-img-footer {
    height: 40px;
}

.footer-text, .footer-email {
    font-size: 0.95rem;
    color: #FFD1DC;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.2) !important;
    font-size: 0.85rem;
    color: #FFD1DC;
}

.responsible-gaming-logos {
    gap: 15px;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin: auto;
    object-fit: contain;
}

.footer-logo-18plus {
    max-width: 60px;
}

/* 18+ Pop-up Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
}

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

.modal-content-custom {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0s;
}

.modal-overlay.show .modal-content-custom {
    transform: scale(1);
}

.modal-title-custom {
    color: #C24D82;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.modal-text-custom {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.modal-actions-custom {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-custom {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0s, color 0s;
}

.btn-confirm {
    background-color: #C24D82;
    color: #fff;
}

.btn-confirm:hover {
    background-color: #A03B6B;
    color: #fff;
}

.btn-deny {
    background-color: #FFD1DC;
    color: #333;
}

.btn-deny:hover {
    background-color: #F8C8DC;
    color: #333;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    z-index: 1040;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.cookie-banner.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-link {
    color: #FFD1DC;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #fff;
}

.btn-cookie {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0s, color 0s;
}

.btn-accept {
    background-color: #C24D82;
    color: #fff;
}

.btn-accept:hover {
    background-color: #A03B6B;
}

.btn-decline {
    background-color: #FFD1DC;
    color: #333;
}

.btn-decline:hover {
    background-color: #F8C8DC;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .main-nav {
        display: none; /* Hide nav for smaller screens */
    }
    .rating-item-card {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px;
    }
    .rating-item-card .rating-image-link {
        order: 0 !important;
        margin-bottom: 2rem;
    }
    .rating-item-card .rating-item-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .rating-item-image {
        max-width: 100%;
    }

    .rating-item-image {
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .modal-content-custom {
        padding: 2rem;
    }
    .modal-title-custom {
        font-size: 1.5rem;
    }
    .modal-text-custom {
        font-size: 1rem;
    }
    .modal-actions-custom {
        flex-direction: column;
        gap: 0.8rem;
    }
    .btn-custom {
        width: 100%;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner .d-flex.gap-2 {
        width: 100%;
        justify-content: center;
    }
    .btn-cookie {
        width: 100%;
    }

    
}
/*
 * Stock styles for .userClauseNet container and its common child elements.
 * These styles provide a clean, readable baseline with moderate font sizes and standard spacing.
 */

/* User Clause Net Container Styles */
.userClauseNet {
    padding-top: 2.5rem;    /* Top padding for the content area */
    padding-bottom: 2.5rem; /* Bottom padding for the content area */
    padding-left: 2rem;     /* Left padding for the content area */
    padding-right: 2rem;    /* Right padding for the content area */
    box-sizing: border-box; /* Include padding in the element's total width and height */
    /* You might want to add max-width and margin: auto here for centering content on wide screens */
    /* max-width: 960px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading Styles */
.userClauseNet h1 {
    font-size: 2rem;        /* H1 font size, not excessively large */
    line-height: 1.2;       /* Line height for better readability */
    margin-top: 2.5rem;     /* Top margin for H1, providing separation */
    margin-bottom: 1rem;    /* Bottom margin for H1 */
    font-weight: 700;       /* Bold font weight */
    color: #333;            /* Dark grey color for headings */
}

.userClauseNet h2 {
    font-size: 1.75rem;     /* H2 font size */
    line-height: 1.3;       /* Line height for H2 */
    margin-top: 2rem;       /* Top margin for H2 */
    margin-bottom: 0.8rem;  /* Bottom margin for H2 */
    font-weight: 700;
    color: #333;
}

.userClauseNet h3 {
    font-size: 1.5rem;      /* H3 font size */
    line-height: 1.4;       /* Line height for H3 */
    margin-top: 1.8rem;     /* Top margin for H3 */
    margin-bottom: 0.7rem;  /* Bottom margin for H3 */
    font-weight: 600;       /* Slightly less bold than H1/H2 */
    color: #333;
}

.userClauseNet h4 {
    font-size: 1.25rem;     /* H4 font size */
    line-height: 1.5;       /* Line height for H4 */
    margin-top: 1.5rem;     /* Top margin for H4 */
    margin-bottom: 0.6rem;  /* Bottom margin for H4 */
    font-weight: 600;
    color: #333;
}

.userClauseNet h5 {
    font-size: 1.1rem;      /* H5 font size */
    line-height: 1.6;       /* Line height for H5 */
    margin-top: 1.2rem;     /* Top margin for H5 */
    margin-bottom: 0.5rem;  /* Bottom margin for H5 */
    font-weight: 500;       /* Medium font weight */
    color: #555;            /* Slightly lighter color for less prominence */
}

/* Paragraph Styles */
.userClauseNet p {
    font-size: 1rem;        /* Standard paragraph font size */
    line-height: 1.6;       /* Generous line height for readability */
    margin-bottom: 1rem;    /* Bottom margin to separate paragraphs */
    color: #444;            /* Standard text color */
}

/* Unordered List Styles */
.userClauseNet ul {
    list-style-type: disc;  /* Default bullet style */
    margin-top: 1rem;       /* Top margin for lists */
    margin-bottom: 1rem;    /* Bottom margin for lists */
    padding-left: 2.5rem;   /* Indentation for bullet points */
    color: #444;
}

/* List Item Styles */
.userClauseNet li {
    font-size: 1rem;        /* List item font size, consistent with paragraphs */
    line-height: 1.6;       /* Line height for list items */
    margin-bottom: 0.5rem;  /* Spacing between list items */
}

/* Remove bottom margin from the last paragraph or list in the container to avoid extra space */
.userClauseNet p:last-child,
.userClauseNet ul:last-child {
    margin-bottom: 0;
}


.footerLgs, .navbarLogo{
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.footerLgs h2{
    margin: 0;
    font-size: clamp(18px,2.5vw,22px);
    color: #fff;
}

.navbarLogo h2{
    margin: 0;
    font-size: clamp(18px,2.5vw,22px);
    color: #000;
}

.toggle-details {
    display: none;
}

#comparaison .table>:not(caption)>*>*{
    background-color: inherit;
}