/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333; /* Standard text color */
    background-color: #f8f9fa; /* Light background for general sections */
    line-height: 1.6;
}

/* Custom Primary Button Style */
.custom-btn-primary {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* No transition for instant change */
}

.custom-btn-primary:hover {
    background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
    color: white;
    /* No transition for instant change */
}

.section-title {
    font-weight: 700;
    color: #1a202c;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 2px;
}

/* Hero Section Styles */
.hero-section {
    background-image: url('media/media/chicken-road-hero-bg_3.webp'); /* Hero background image */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

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

.hero-logo {
    max-width: 250px;
    height: auto;
}

/* Rating Card Styles (Rating Grid) */
.rating-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
}

.rating-card .card-body {
    padding: 30px;
    flex-grow: 1;
}

.rating-card .casino-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.rating-card .card-title {
    font-size: 1.75rem;
    color: #1a202c;
}

.rating-card .rating-stars .bi-star-fill,
.rating-card .rating-stars .bi-star-half {
    color: #ffc107; /* Yellow for stars */
    font-size: 1.2rem;
}

/* Rating List Item Styles */
.rating-list-item {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.rating-list-item .list-casino-logo {
    max-width: 100px;
    height: auto;
}

.rating-list-item .rating-stars .bi-star-fill,
.rating-list-item .rating-stars .bi-star-half {
    color: #ffc107; /* Yellow for stars */
    font-size: 1.1rem;
}

/* Comparison Table Styles */
.comparison-table {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comparison-table thead th {
    background-color: #343a40;
    color: #fff;
    border-bottom: 2px solid #dee2e6;
    padding: 15px;
}

.comparison-table tbody tr:nth-of-type(odd) {
    background-color: #f2f2f2;
}

.comparison-table tbody tr:hover {
    background-color: #e9ecef;
    /* No transition */
}

.comparison-table .table-casino-logo {
    max-width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 5px auto;
}

.comparison-table .bi-check-circle-fill {
    color: #28a745; /* Green check */
}

.comparison-table .bi-x-circle-fill {
    color: #dc3545; /* Red cross */
}

/* Chicken Road Section Styles */
.chicken-road-section {
    background-color: #fdfdfd;
}

.chicken-road-section .section-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.chicken-road-section .section-title::after {
    left: 0;
    transform: translateX(0);
}

.chicken-road-section .chicken-road-img {
    max-width: 100%;
    height: auto;
}

.chicken-road-features li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.chicken-road-features .bi {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Disclaimer Section Styles */
.disclaimer-section {
    background-color: #e0f7fa; /* Light blue background to stand out */
    padding: 60px 0;
    border-top: 5px solid #00bcd4; /* Cyan border */
    border-bottom: 5px solid #00bcd4;
}

.disclaimer-content {
    background-color: #ffffff;
    border: 1px solid #b2ebf2; /* Lighter cyan border */
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.disclaimer-title {
    color: #00838f; /* Darker cyan for title */
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.disclaimer-title .bi {
    color: #ffc107; /* Warning yellow icon */
    font-size: 2rem;
}

.disclaimer-content p {
    color: #555;
}

.disclaimer-content a {
    font-weight: 600;
}

/* Footer Styles */
footer {
    background-color: #1a202c !important; /* Dark background */
    color: #f8f9fa !important; /* Light text */
    padding-top: 50px;
    padding-bottom: 30px;
}

footer .footer-logo {
    max-width: 180px;
    height: auto;

}

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

footer .footer-links a {
    font-size: 0.9rem;
    white-space: nowrap;
}

footer .footer-links a:hover {
    text-decoration: underline !important;
    /* No transition */
}

footer .footer-icon-18plus {
    max-width: 60px;
    height: auto;
    vertical-align: middle;
}

.footer-logos-container {
    gap: 20px; /* Space between logos */
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px; /* Fixed height for alignment */
    width: auto;
    max-width: 120px; /* Limit logo width */
}

.footer-org-logo {
    max-height: 100%; /* Ensure logo fits within height */
    max-width: 100%; /* Ensure logo fits within width */
    object-fit: contain;
    /* No grayscale or filters on hover */
}

/* Modal Specific Styles */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.modal-casino-logo {
    max-width: 180px;
    height: auto;
}

.modal-features li,
.modal-specs li {
    margin-bottom: 5px;
}

.modal-features .bi-check-circle-fill {
    color: #28a745;
}

/* Cookie Consent Modal Specific Styles */
.cookie-modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.cookie-modal-content .modal-header {
    border-bottom: none;
}

.cookie-modal-content .modal-footer {
    border-top: none;
    padding-top: 0;
}

.cookie-modal-content .form-check {
    padding-left: 2.5em; /* Align checkbox with label */
}

.cookie-modal-content .form-check-input {
    margin-left: -2.5em;
    margin-top: 0.3em;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0;
        min-height: 450px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p.lead {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 60px;
    }

    .rating-card .card-title {
        font-size: 1.5rem;
    }

    .rating-list-item .row {
        flex-direction: column;
    }

    .rating-list-item .col-md-2,
    .rating-list-item .col-md-7,
    .rating-list-item .col-md-3 {
        text-align: center;
    }

    .rating-list-item .list-casino-logo {
        margin-bottom: 15px;
    }

    .disclaimer-content {
        padding: 25px;
    }

    .disclaimer-title .bi {
        font-size: 1.5rem;
        margin-right: 10px !important;
    }

    .footer-links li {
        margin-right: 10px;
    }

    .footer-logo-link {
        max-width: 90px; /* Smaller logos on mobile */
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}/* New styles for .secureTermsHub and its children */

/* Base container for content, providing padding and max-width for readability */
.secureTermsHub {
    padding: 60px 20px; /* Top/bottom and side padding */
    max-width: 1200px; /* Maximum width for content, preventing lines from becoming too long */
    margin-left: auto; /* Centers the container horizontally */
    margin-right: auto; /* Centers the container horizontally */
    background-color: #ffffff; /* White background for the content area */
    border-radius: 8px; /* Slightly rounded corners for the content block */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

/* Heading 1 styles */
.secureTermsHub h1 {
    font-size: 2.5rem; /* Standard large heading, but not overly dominant */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 40px; /* Space above the heading */
    margin-bottom: 25px; /* Space below the heading */
    color: #1a202c; /* Dark text color for headings */
}

/* Heading 2 styles */
.secureTermsHub h2 {
    font-size: 2rem; /* Slightly smaller than h1 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.3;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #1a202c;
}

/* Heading 3 styles */
.secureTermsHub h3 {
    font-size: 1.75rem; /* Smaller than h2 */
    font-weight: 600;
    line-height: 1.4;
    margin-top: 30px;
    margin-bottom: 18px;
    color: #1a202c;
}

/* Heading 4 styles */
.secureTermsHub h4 {
    font-size: 1.5rem; /* Smaller than h3 */
    font-weight: 500; /* Medium font weight */
    line-height: 1.4;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a202c;
}

/* Heading 5 styles */
.secureTermsHub h5 {
    font-size: 1.25rem; /* Smallest heading, suitable for sub-sections */
    font-weight: 500;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a202c;
}

/* Paragraph styles */
.secureTermsHub p {
    font-size: 1.125rem; /* Standard readable text size (approx. 18px) */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 1em; /* Space between paragraphs */
    color: #333; /* Standard body text color */
}

/* Unordered list styles */
.secureTermsHub ul {
    list-style: disc; /* Default disc marker for unordered lists */
    padding-left: 25px; /* Indent for list markers */
    margin-top: 15px; /* Space above the list */
    margin-bottom: 15px; /* Space below the list */
    color: #333;
}

/* Ordered list styles (added for completeness) */
.secureTermsHub ol {
    list-style: decimal; /* Default decimal marker for ordered lists */
    padding-left: 25px; /* Indent for list markers */
    margin-top: 15px;
    margin-bottom: 15px;
    color: #333;
}

/* List item styles for both ul and ol */
.secureTermsHub li {
    font-size: 1.125rem; /* Consistent with paragraph text size */
    line-height: 1.6; /* Consistent line height */
    margin-bottom: 8px; /* Space between individual list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .secureTermsHub {
        padding: 40px 15px; /* Reduce padding on smaller screens */
    }

    .secureTermsHub h1 {
        font-size: 2rem; /* Adjust h1 size for mobile */
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .secureTermsHub h2 {
        font-size: 1.75rem; /* Adjust h2 size for mobile */
        margin-top: 25px;
        margin-bottom: 18px;
    }

    .secureTermsHub h3 {
        font-size: 1.5rem; /* Adjust h3 size for mobile */
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .secureTermsHub h4 {
        font-size: 1.25rem; /* Adjust h4 size for mobile */
        margin-top: 18px;
        margin-bottom: 12px;
    }

    .secureTermsHub h5 {
        font-size: 1.1rem; /* Adjust h5 size for mobile */
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .secureTermsHub p,
    .secureTermsHub li {
        font-size: 1rem; /* Slightly smaller text on mobile for better fit */
    }

    .secureTermsHub ul,
    .secureTermsHub ol {
        padding-left: 20px; /* Slightly less indent on mobile */
    }
}
.logo {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}
.logo img {
    max-width: 100px;
}