:root {
    --primary-white: #ffffff;
    --light-green: #e6ffe6; /* Very light green for subtle background */
    --success-green: #28a745; /* Bootstrap success green */
    --dark-green: #1a6e2e; /* Darker green for headings/accents */
    --secondary-grey: #6c757d;
    --dark-grey: #343a40;
    --warning-yellow: #ffc107;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-white);
    color: var(--dark-grey);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-grey);
}

a {
    color: var(--success-green);
    text-decoration: none;
}

a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.text-success {
    color: var(--success-green) !important;
}

.text-dark-green {
    color: var(--dark-green) !important;
}

.bg-light-green {
    background-color: var(--light-green);
}

.btn-primary {
    background-color: var(--success-green);
    border-color: var(--success-green);
    color: var(--primary-white);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.btn-success {
    background-color: var(--success-green);
    border-color: var(--success-green);
}

.btn-success:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.btn-outline-secondary {
    border-color: var(--secondary-grey);
    color: var(--secondary-grey);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-grey);
    color: var(--primary-white);
}

/* Header & Navigation */
.logo-img {
    height: 40px;
    width: auto;
}

.logo-img-footer {
    height: 30px;
    width: auto;
}

.navbar-brand .fw-bold {
    transition: color 0.3s ease;
}

.navbar-brand:hover .fw-bold {
    color: var(--dark-green) !important;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--success-green) !important;
}

/* Carousel Section */
#featuredCarousel .carousel-item img {
    max-height: 500px;
    object-fit: cover;
    filter: brightness(0.7);
}

#featuredCarousel .carousel-caption {
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0));
    padding: 2rem;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: left;
}

#featuredCarousel .carousel-caption h5 {
    font-size: 2.5rem;
}

#featuredCarousel .carousel-caption p {
    font-size: 1.1rem;
}

/* Rating List Section */
.card {
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
    max-height: 120px;
    object-fit: contain;
    margin: auto;
    display: block;
}

.rating i {
    font-size: 1.2rem;
    color: var(--warning-yellow);
}

.btn-group .btn {
    border-radius: 0.5rem;
    margin-left: 0.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-group .btn.active {
    background-color: var(--success-green);
    border-color: var(--success-green);
    color: var(--primary-white);
}

.btn-group .btn:not(.active):hover {
    background-color: var(--light-green);
    border-color: var(--success-green);
    color: var(--dark-green);
}

/* Bonus List Section */
.bonus-card .bonus-img {
    max-height: 200px;
    object-fit: cover;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fff3cd; /* Light yellow background */
    border: 1px solid #ffeeba; /* Yellow border */
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: #664d03; /* Dark yellow text */
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.disclaimer-title {
    color: #664d03;
    font-weight: 700;
}

.disclaimer-text {
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: var(--dark-grey) !important;
    color: var(--primary-white);
}

footer .text-white-50:hover {
    color: var(--success-green) !important;
}
.text-white-51{
    color: rgba(255, 255, 255, .5) !important;
}
.footer-logos {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-link, .age-restriction-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px; /* Fixed height for alignment */
    margin: 0 10px;
}

.footer-logo {
    max-width: 120px; /* Adjust as needed, between 100-150px */
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

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

.age-restriction-icon {
    max-width: 60px;
    height: auto;
    object-fit: contain;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    z-index: 1050;
    background-color: var(--primary-white);
    border: 1px solid var(--light-green);
    border-radius: 0.75rem;
}

.cookie-banner .card-title {
    color: var(--dark-green);
}

.cookie-banner .card-text {
    color: var(--dark-grey);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand span {
        font-size: 1.5rem !important;
    }
    .nav-link {
        padding: 0.5rem;
    }
    #featuredCarousel .carousel-caption {
        padding: 1rem;
        font-size: 0.8rem;
    }
    #featuredCarousel .carousel-caption h5 {
        font-size: 1.5rem;
    }
    #featuredCarousel .carousel-caption p {
        font-size: 0.9rem;
    }
    .cookie-banner {
        width: 90%;
        left: 5%;
        right: 5%;
    }
    .footer-logo {
        max-width: 100px;
    }
    .footer-logo-link, .age-restriction-icon {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    .btn-group .btn {
        margin-left: 0;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    .carousel-caption {
        position: static; /* Make caption flow with content on small screens */
        background: none; /* Remove overlay */
        color: var(--dark-grey); /* Adjust text color */
        text-align: center !important;
        padding-top: 1rem;
    }
    .carousel-caption h5, .carousel-caption p {
        color: var(--dark-grey) !important;
    }
    #featuredCarousel .carousel-item img {
        filter: none;
    }
    .disclaimer-section .d-flex {
        flex-direction: column;
        text-align: center;
    }
    .disclaimer-section i {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
}
/* Styles for the main content clause frame */
.dataClauseFrame {
    padding: 2rem 1rem; /* Default padding for mobile (top/bottom, left/right) */
    margin-bottom: 2rem; /* Spacing below the content block */
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
    .dataClauseFrame {
        padding: 3rem 2rem; /* Increased padding for tablets */
    }
}

@media (min-width: 992px) {
    .dataClauseFrame {
        padding: 4rem 3rem; /* Further increased padding for desktops */
    }
}

/* Heading 1 styles within the content block */
.dataClauseFrame h1 {
    font-size: 2.25rem; /* Moderate size for content sections */
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark-green); /* Using a predefined dark green color */
}

/* Heading 2 styles within the content block */
.dataClauseFrame h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    color: var(--dark-green);
}

/* Heading 3 styles within the content block */
.dataClauseFrame h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--dark-green);
}

/* Heading 4 styles within the content block */
.dataClauseFrame h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: var(--dark-green);
}

/* Heading 5 styles within the content block */
.dataClauseFrame h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--dark-green);
}

/* Paragraph styles within the content block */
.dataClauseFrame p {
    font-size: 1rem; /* Base font size for readability */
    margin-bottom: 1rem;
    line-height: 1.7; /* Generous line height for better readability */
    color: var(--dark-grey); /* Using a predefined dark grey color */
}

/* Unordered list styles within the content block */
.dataClauseFrame ul {
    list-style: disc; /* Default disc bullet style */
    margin-left: 1.5rem; /* Indentation for bullets */
    margin-bottom: 1rem;
    padding-left: 0; /* Reset default browser padding */
}

/* Ordered list styles within the content block */
.dataClauseFrame ol {
    list-style: decimal; /* Default decimal numbering style */
    margin-left: 1.5rem; /* Indentation for numbers */
    margin-bottom: 1rem;
    padding-left: 0; /* Reset default browser padding */
}

/* List item styles for both ordered and unordered lists */
.dataClauseFrame li {
    font-size: 1rem; /* Consistent with paragraph font size */
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.6;
    color: var(--dark-grey);
}

/* Remove bottom margin for the last list item to prevent excess space */
.dataClauseFrame li:last-child {
    margin-bottom: 0;
}
@media (max-width:767px) {
    .mnuyr-block{
        flex-direction: column;
    }
    .mndf-thumbfd{
        flex-wrap: wrap;
        justify-content: center;
    }
}