/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1A0D2E; /* Dark purple base */
    color: #E0E0E0; /* Standard light text color */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a {
    color: #8A2BE2; /* Primary purple for links */
    text-decoration: none;
}

a:hover {
    color: #9932CC; /* Slightly darker purple on hover */
    text-decoration: underline;
}

/* Custom Colors & Backgrounds */
.bg-dark-purple {
    background-color: #2C184B; /* Darker purple for cards/elements */
}

.bg-dark-purple-gradient {
    background: linear-gradient(135deg, #2C184B, #1A0D2E);
}

.bg-dark-purple-footer {
    background-color: #120921; /* Even darker for footer */
}

.text-light-purple {
    color: #C0B0D8; /* Lighter purple for secondary text */
}

.btn-primary {
    background-color: #8A2BE2; /* Primary button color */
    border-color: #8A2BE2;
    color: #fff;
}

.btn-primary:hover {
    background-color: #9932CC;
    border-color: #9932CC;
}

.btn-outline-light {
    color: #E0E0E0;
    border-color: #E0E0E0;
}

.btn-outline-light:hover {
    background-color: #E0E0E0;
    color: #1A0D2E;
}

.bg-warning-gradient {
    background: linear-gradient(45deg, #FFD700, #FFA500); /* Yellow-orange for disclaimer */
}

.text-dark-purple {
    color: #1A0D2E; /* Dark text for disclaimer */
}

/* Navbar */
.navbar {
    background-color: rgba(26, 13, 46, 0.8); /* Semi-transparent dark purple */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1020; /* Above cookie banner */
}

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

.navbar-nav .nav-link {
    color: #E0E0E0 !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #8A2BE2 !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh; /* Adjust as needed */
    overflow: hidden;
    background: linear-gradient(180deg, #1A0D2E 0%, #2C184B 100%); /* Gradient background */
    padding-top: 100px; /* Space for fixed navbar */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/pics/geometric-purple-pattern_2.jpg'); /* Subtle background pattern */
    background-size: cover;
    opacity: 0.1; /* Very subtle */
    z-index: 0;
}

.hero-section .hero-image {
    max-height: 500px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Section Padding */
section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Card Styles (used in Rating Grid, User Reviews, Bonus List) */
.card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.casino-logo {
    max-width: 150px; /* Limit logo size */
    height: auto;
    object-fit: contain;
}

/* Rating Grid Filters */
.btn-filter.active {
    background-color: #8A2BE2;
    border-color: #8A2BE2;
    color: #fff;
}

.btn-filter:hover {
    background-color: #9932CC;
    border-color: #9932CC;
    color: #fff;
}

/* Comparison Table */
.comparison-table th,
.comparison-table td {
    border-color: rgba(255, 255, 255, 0.1); /* Lighter border for dark theme */
}

.comparison-table .table-dark th {
    background-color: #1A0D2E;
}

/* User Reviews */
.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #8A2BE2;
}

/* Disclaimer Section */
#disclaimer-section {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    color: #1A0D2E;
}

.disclaimer-box {
    background-color: #FFF8DC; /* Light yellow background for the box */
    border: 3px solid #DC3545 !important; /* Red border */
    color: #1A0D2E;
}

.disclaimer-box h3 {
    color: #DC3545 !important; /* Red heading */
}
.disclaimer-box p {
    color: #1A0D2E;
}
/* Footer */
.footer a.hover-underline:hover {
    text-decoration: underline !important;
}

.footer-images-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Spacing between logos */
}

.footer-logo {
    max-width: 120px; /* Adjust width as per requirement (100-150px) */
    height: auto;
    object-fit: contain;
    transition: none; /* No grayscale or other filters on hover */
}

.footer-icon-18-plus {
    max-width: 80px; /* Smaller for 18+ icon */
    height: auto;
    object-fit: contain;
    filter: saturate(1.5); /* Make it pop a bit */
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    z-index: 1030; /* Ensure it's on top */
    width: 100%;
    max-height: 80px; /* Keep it narrow */
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .cookie-banner p {
        text-align: center;
        width: 100%;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }
}

/* Form Styling */
.form-control {
    background-color: #2C184B;
    color: #E0E0E0;
    border: 1px solid #8A2BE2;
}
.form-control::placeholder{
   color: #e0e0e070;
}
.form-control:focus {
    background-color: #2C184B;
    color: #E0E0E0;
    border-color: #9932CC;
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

.form-text {
    color: #C0B0D8 !important;
}

/* Ensure default text color is readable */
p, li, span, small {
    color: #E0E0E0;
}
/* Override specific elements where Bootstrap might set a different default */
.text-muted {
    color: #C0B0D8 !important;
}/* Styles for the content block */
.infoGuardBlock {
    padding: 60px 20px; /* Top/bottom padding and horizontal padding */
    max-width: 960px; /* Max width for content readability */
    margin: 0 auto; /* Center the block on larger screens */
    color: #E0E0E0; /* Default text color for the block */
}

/* Headings within infoGuardBlock */
.infoGuardBlock h1 {
    font-size: 2.25rem; /* ~36px */
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    color: #E0E0E0; /* Light text color for headings */
    line-height: 1.2;
}

.infoGuardBlock h2 {
    font-size: 2rem; /* ~32px */
    margin-top: 1.7em;
    margin-bottom: 0.7em;
    color: #E0E0E0;
    line-height: 1.25;
}

.infoGuardBlock h3 {
    font-size: 1.75rem; /* ~28px */
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    color: #E0E0E0;
    line-height: 1.3;
}

.infoGuardBlock h4 {
    font-size: 1.5rem; /* ~24px */
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #E0E0E0;
    line-height: 1.35;
}

.infoGuardBlock h5 {
    font-size: 1.25rem; /* ~20px */
    margin-top: 1.4em;
    margin-bottom: 0.4em;
    color: #E0E0E0;
    line-height: 1.4;
}

/* Paragraphs within infoGuardBlock */
.infoGuardBlock p {
    font-size: 1.125rem; /* ~18px for better readability */
    margin-bottom: 1em; /* Space after paragraphs */
    line-height: 1.6; /* Good line height for text */
    color: #E0E0E0; /* Consistent text color */
}

/* Unordered and Ordered Lists within infoGuardBlock */
.infoGuardBlock ul,
.infoGuardBlock ol {
    margin-bottom: 1em; /* Space after the list */
    padding-left: 1.8em; /* Indentation for list items */
    color: #E0E0E0; /* Consistent text color for lists */
}

/* List Items within infoGuardBlock */
.infoGuardBlock li {
    font-size: 1.125rem; /* Match paragraph font size */
    margin-bottom: 0.6em; /* Space between list items */
    line-height: 1.6; /* Consistent line height */
    color: #E0E0E0; /* Consistent text color */
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .infoGuardBlock {
        padding: 40px 15px; /* Reduce padding on smaller screens */
    }

    .infoGuardBlock h1 {
        font-size: 1.8rem; /* Smaller headings on mobile */
    }

    .infoGuardBlock h2 {
        font-size: 1.6rem;
    }

    .infoGuardBlock h3 {
        font-size: 1.4rem;
    }

    .infoGuardBlock h4 {
        font-size: 1.2rem;
    }

    .infoGuardBlock h5 {
        font-size: 1.1rem;
    }

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