/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000; /* Main background color */
    color: #F0F0F0; /* Standard text color */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll due to animations */
}

/* Color Palette */
:root {
    --primary-dark: #000000; /* Black */
    --secondary-dark: #1a1a1a; /* Darker grey for backgrounds */
    --green-main: #006400; /* Dark Green */
    --green-light: #32CD32; /* Lime Green for accents */
    --text-light: #F0F0F0; /* Light grey for general text */
    --text-muted: #A0A0A0; /* Muted grey for secondary text */
    --warning-color: #FFD700; /* Gold for warnings/stars */
    --danger-light: #FF6347; /* Tomato for report abuse */
}

/* Background Gradients/Images */
.bg-dark-gradient {
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.bg-black-dark {
    background-color: var(--primary-dark);
}

/* Custom Buttons */
.btn-success-custom {
    background-color: var(--green-light);
    border-color: var(--green-light);
    color: var(--primary-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success-custom:hover {
    background-color: #28a745; /* Slightly darker green on hover */
    border-color: #28a745;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 255, 0, 0.2);
}

.btn-outline-light {
    border-color: var(--text-light);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

/* Header */
#header {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1030;
}

#header.scrolled {
    background-color: var(--primary-dark); /* Solid black on scroll */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-brand .logo-img {
    height: 40px; /* Adjust logo size */
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--green-light);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    background: url('img/media/subtle-pattern-dark_2.jpg') center center/cover no-repeat, linear-gradient(135deg, var(--green-main) 0%, var(--primary-dark) 100%);
    background-blend-mode: multiply;
    min-height: 80vh;
    padding-top: 100px; /* Offset for fixed header */
    position: relative;
    overflow: hidden;
}

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

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

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

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

.hero-section .img-fluid {
    max-height: 450px;
    object-fit: cover;
}

/* Rating List & Casino Cards */
.casino-card {
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.15);
}

.casino-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.casino-product-img {
    max-height: 200px;
    object-fit: cover;
    width: 100%;
}

.rating i {
    color: var(--warning-color);
}

.casino-features li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.casino-features i {
    color: var(--green-light);
}

/* Bonus List & Carousel */
.bonus-card {
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem !important;
}

.bonus-img {
    max-height: 250px;
    width: 100%;
    object-fit: cover;
}

.countdown-timer .timer-segment {
    background-color: var(--green-main);
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    margin: 0 0.2rem;
    min-width: 70px;
    display: inline-block;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(50, 205, 50, 0.7); /* Greenish tint */
    border-radius: 50%;
    padding: 1.5rem;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

/* Rating Criteria */
.criteria-card {
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.15);
}

.criteria-card i {
    color: var(--green-light);
}

/* Comparison Table */
.comparison-controls {
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: middle;
}

.comparison-table thead th {
    background-color: var(--green-main);
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
}

.comparison-table tbody tr:nth-child(odd) {
    background-color: var(--secondary-dark);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--primary-dark);
}

.comparison-table .feature-col {
    text-align: left;
    font-weight: 600;
    color: var(--green-light);
    width: 200px; /* Fixed width for feature column */
}

.comparison-table .casino-col {
    text-align: center;
    width: calc(80% / 2); /* Distribute remaining width */
}

.comparison-table .casino-col img {
    max-height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
}

.comparison-table .casino-col .fa-check-circle {
    color: var(--green-light);
    font-size: 1.5rem;
}

.comparison-table .casino-col .fa-times-circle {
    color: var(--danger-light);
    font-size: 1.5rem;
}

/* User Reviews */
.review-card {
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--green-light);
}

.review-card .text-warning i {
    color: var(--warning-color);
}

.report-abuse-btn {
    color: var(--danger-light);
    font-size: 0.9rem;
    padding-left: 0;
}

.report-abuse-btn:hover {
    color: #ff0000;
}

/* Contact Section */
.contact-form-card {
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-card .form-label {
    color: var(--green-light);
    font-weight: 600;
}

.contact-form-card .form-control {
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.contact-form-card .form-control:focus {
    background-color: var(--primary-dark);
    border-color: var(--green-light);
    box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.25);
    color: var(--text-light);
}

.contact-form-card .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form-card .invalid-feedback {
    color: var(--danger-light);
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-top: 5px solid var(--warning-color);
    padding: 3rem 0;
}

.disclaimer-content {
    background-color: rgba(26, 26, 26, 0.9); /* Slightly lighter dark for contrast */
    border: 1px solid var(--warning-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.disclaimer-content h3 {
    color: var(--warning-color);
}

.disclaimer-content p.lead {
    font-size: 1rem;
    color: var(--text-light);
}

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

/* Footer */
.footer {
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links li a {
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--green-light) !important;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-item {
    max-width: 120px; /* Adjusted max-width for footer images */
    height: auto;
    object-fit: contain;
    filter: none; /* Ensure no grayscale */
}

/* Cookie Consent Modal */
#cookieConsentModal .modal-content {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

#cookieConsentModal .modal-header {
    border-bottom: none;
}

#cookieConsentModal .modal-title {
    color: var(--green-light);
    font-weight: 600;
}

#cookieConsentModal .form-check-label {
    color: var(--text-light);
}

#cookieConsentModal .form-check-input:checked {
    background-color: var(--green-light);
    border-color: var(--green-light);
}

#cookieConsentModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.25);
}

#cookieConsentModal .btn-success-custom {
    width: 100%;
}

#cookieConsentModal .btn-link {
    color: var(--text-muted);
}

#cookieConsentModal .btn-link:hover {
    color: var(--text-light);
}

#cookieConsentModal .cookie-categories .form-check-input:disabled + .form-check-label {
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
    }

    .navbar-nav .nav-link {
        text-align: center;
        padding: 0.75rem 1rem;
    }

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

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

    .display-4 {
        font-size: 2.5rem;
    }

    .bonus-card {
        padding: 1.5rem !important;
    }

    .countdown-timer .timer-segment {
        font-size: 1.2rem;
        padding: 0.3rem 0.5rem;
        min-width: 50px;
    }

    .footer-logos {
        gap: 1rem;
    }

    .footer-logo-item {
        max-width: 100px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 70vh;
        padding-top: 80px;
    }

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

    .display-4 {
        font-size: 2rem;
    }

    .casino-card, .criteria-card, .bonus-card, .review-card, .contact-form-card {
        padding: 1.5rem !important;
    }

    .comparison-table .feature-col {
        width: 150px;
    }
}
/* Styles for the main content block */
.trustPillarUnit {
    padding: 3rem 1.5rem; /* Top/bottom padding, and side padding */
    margin-top: 2rem; /* Top margin for separation */
    margin-bottom: 2rem; /* Bottom margin for separation */
    /* Optional: background or border if this unit is a distinct section */
    /* background-color: var(--secondary-dark); */
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

/* Heading styles within .trustPillarUnit */
.trustPillarUnit h1 {
    font-size: 2.2rem; /* Moderate font size for H1 */
    line-height: 1.2;
    margin-top: 1.5em; /* Top margin for spacing */
    margin-bottom: 0.8em; /* Bottom margin for spacing */
    color: var(--green-light); /* Highlight H1 with accent color */
    font-weight: 700; /* Bold font weight */
}

.trustPillarUnit h2 {
    font-size: 1.8rem; /* Moderate font size for H2 */
    line-height: 1.3;
    margin-top: 1.2em;
    margin-bottom: 0.7em;
    color: var(--text-light); /* Standard text color */
    font-weight: 600;
}

.trustPillarUnit h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    line-height: 1.4;
    margin-top: 1em;
    margin-bottom: 0.6em;
    color: var(--text-light);
    font-weight: 600;
}

.trustPillarUnit h4 {
    font-size: 1.2rem; /* Moderate font size for H4 */
    line-height: 1.5;
    margin-top: 0.8em;
    margin-bottom: 0.5em;
    color: var(--text-light);
    font-weight: 500;
}

.trustPillarUnit h5 {
    font-size: 1.1rem; /* Moderate font size for H5 */
    line-height: 1.6;
    margin-top: 0.6em;
    margin-bottom: 0.4em;
    color: var(--text-light);
    font-weight: 500;
}

/* Paragraph styles within .trustPillarUnit */
.trustPillarUnit p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Good readability line height */
    margin-bottom: 1em; /* Bottom margin for paragraph separation */
    color: var(--text-light); /* Standard text color */
}

/* Unordered list styles within .trustPillarUnit */
.trustPillarUnit ul {
    list-style-type: disc; /* Default disc bullets */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-bottom: 1em; /* Bottom margin for list separation */
    color: var(--text-light);
}

/* List item styles within .trustPillarUnit */
.trustPillarUnit li {
    font-size: 1rem; /* Standard list item font size */
    line-height: 1.6;
    margin-bottom: 0.5em; /* Spacing between list items */
    color: var(--text-light);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .trustPillarUnit {
        padding: 2rem 1rem; /* Reduce padding on smaller screens */
    }

    .trustPillarUnit h1 {
        font-size: 1.8rem; /* Adjust H1 size for mobile */
    }

    .trustPillarUnit h2 {
        font-size: 1.5rem; /* Adjust H2 size for mobile */
    }

    .trustPillarUnit h3 {
        font-size: 1.3rem; /* Adjust H3 size for mobile */
    }

    .trustPillarUnit h4 {
        font-size: 1.1rem; /* Adjust H4 size for mobile */
    }

    .trustPillarUnit h5 {
        font-size: 1rem; /* Adjust H5 size for mobile */
    }

    .trustPillarUnit p,
    .trustPillarUnit li {
        font-size: 0.95rem; /* Slightly smaller text for better mobile readability */
    }

    .trustPillarUnit ul {
        padding-left: 1.2rem; /* Reduce list indentation on mobile */
    }
}
