/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a2e; /* Dark background */
    color: #e0e0e0; /* Light grey text for readability */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff; /* White headings */
}

a {
    color: #8be9fd; /* Light blue for links */
    text-decoration: none;
}

a:hover {
    color: #6272a4; /* Slightly darker blue on hover */
}

/* Background Colors for Blocks */
.bg-dark-secondary {
    background-color: #2a2a4a; /* Slightly lighter dark for contrast */
}

.bg-dark-tertiary {
    background-color: #161625; /* Even darker for footer/specific elements */
}

.border-secondary {
    border-color: #44475a !important; /* Subtle border color */
}

/* Custom Buttons */
.btn-primary-custom {
    background-color: #50fa7b; /* Emerald green */
    border-color: #50fa7b;
    color: #1a1a2e;
    transition: background-color 0s, border-color 0s;
}

.btn-primary-custom:hover {
    background-color: #44cc6a;
    border-color: #44cc6a;
    color: #1a1a2e;
}

.btn-outline-info {
    border-color: #8be9fd;
    color: #8be9fd;
    transition: background-color 0s, color 0s, border-color 0s;
}

.btn-outline-info:hover {
    background-color: #8be9fd;
    color: #1a1a2e;
}

.btn-close-white {
    filter: invert(1);
}

/* Header & Logo */
.logo-img {
    max-height: 60px;
    width: auto;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('visuals/content/dark-abstract-casino-bg.jpg') center center no-repeat;
    background-size: cover;
    min-height: 60vh;
    position: relative;
}

.hero-image {
    max-height: 400px;
    width: auto;
    object-fit: contain;
}

/* Rating Grid */
.rating-grid-section {
    background-color: #1a1a2e;
}

.casino-card .card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0s, box-shadow 0s;
}

.casino-card .card-body {
    padding: 2rem;
}

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

.features-list li {
    margin-bottom: 0.5rem;
}

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

.comparison-table {
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    vertical-align: middle;
    padding: 1rem;
    border-color: #44475a;
}

.comparison-table thead th {
    background-color: #161625;
    color: #ffffff;
}

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

.comparison-table tbody tr:nth-of-type(even) {
    background-color: #1a1a2e;
}

.comparison-table .text-success {
    color: #50fa7b !important;
}

.comparison-table .text-danger {
    color: #ff5555 !important;
}

/* Rating Criteria */
.rating-criteria-section {
    background-color: #1a1a2e;
}

.rating-criteria-section .card {
    border-radius: 12px;
}

.rating-criteria-section .card-body {
    padding: 2rem;
}

.rating-criteria-section .progress {
    height: 15px;
    border-radius: 4px;
}

.rating-criteria-section .progress-bar {
    background-color: #8be9fd;
}

/* Articles Block */
.articles-section {
    background-color: #2a2a4a;
}

.articles-section .card {
    border-radius: 12px;
}

.articles-section .card-body {
    padding: 2rem;
}

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

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    border-radius: 8px !important;
    color: #ffffff !important;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #161625 !important;
    color: #ffffff !important;
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1) brightness(2);
}

.accordion-body {
    color: #b0b0b0;
}

/* Disclaimer Block */
.disclaimer-section {
    background-color: #1a1a2e;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.disclaimer-content {
    background-color: #3a2a4a; /* A distinct, slightly purplish dark background */
    border: 2px solid #ffcc00 !important; /* Warning yellow border */
    color: #e0e0e0;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
}

.disclaimer-content h4 {
    color: #ffcc00 !important; /* Warning yellow for heading */
}

/* Footer */
.footer {
    background-color: #161625;
    color: #b0b0b0;
}

.footer a {
    color: #b0b0b0;
}

.footer a:hover {
    color: #ffffff;
}

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

.footer-logos img {
    max-width: 120px; /* Adjust width as needed */
    height: auto;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2); /* Slightly dim for dark background */
    transition: filter 0s; /* No animation */
}

.footer-18plus-logo {
    max-width: 60px !important; /* Smaller for 18+ icon */
    height: auto;
    filter: none; /* Keep original colors for 18+ */
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050;
    background-color: #161625; /* Darker background */
    border-top: 1px solid #44475a;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-banner p {
    margin-bottom: 0;
    color: #e0e0e0;
}

.cookie-banner a {
    color: #8be9fd;
}

/* Modal specific styles for dark theme */
.modal-content {
    background-color: #2a2a4a;
    color: #e0e0e0;
}

.modal-header, .modal-footer {
    border-color: #44475a;
}

.modal-title {
    color: #ffffff;
}

.form-check-label {
    color: #e0e0e0;
}

.form-check-input:checked {
    background-color: #50fa7b;
    border-color: #50fa7b;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(80, 250, 123, 0.25);
}

.text-muted {
    color: #b0b0b0 !important;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section .row {
        flex-direction: column-reverse;
    }

    .hero-section .col-md-6 {
        text-align: center !important;
    }

    .hero-image {
        margin-bottom: 2rem;
    }

    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }

    .footer-logos {
        justify-content: center !important;
    }
}/* Styles for the content wrapper */
.userClauseNet {
    padding-top: 4rem; /* Top padding for the content block */
    padding-left: 1.5rem; /* Left padding for the content block */
    padding-right: 1.5rem; /* Right padding for the content block */
    max-width: 960px; /* Max width for readability */
    margin-left: auto; /* Center the block */
    margin-right: auto; /* Center the block */
    padding-bottom: 4rem; /* Bottom padding for the content block */
}

/* Heading 1 styles */
.userClauseNet h1 {
    font-size: 2.25rem; /* Font size for H1 */
    margin-bottom: 1.5rem; /* Bottom margin for H1 */
    line-height: 1.2; /* Line height for H1 */
}

/* Heading 2 styles */
.userClauseNet h2 {
    font-size: 1.75rem; /* Font size for H2 */
    margin-bottom: 1.25rem; /* Bottom margin for H2 */
    line-height: 1.2; /* Line height for H2 */
}

/* Heading 3 styles */
.userClauseNet h3 {
    font-size: 1.5rem; /* Font size for H3 */
    margin-bottom: 1rem; /* Bottom margin for H3 */
    line-height: 1.3; /* Line height for H3 */
}

/* Heading 4 styles */
.userClauseNet h4 {
    font-size: 1.25rem; /* Font size for H4 */
    margin-bottom: 0.75rem; /* Bottom margin for H4 */
    line-height: 1.4; /* Line height for H4 */
}

/* Heading 5 styles */
.userClauseNet h5 {
    font-size: 1.125rem; /* Font size for H5 */
    margin-bottom: 0.5rem; /* Bottom margin for H5 */
    line-height: 1.5; /* Line height for H5 */
}

/* Paragraph styles */
.userClauseNet p {
    font-size: 1rem; /* Base font size for paragraphs */
    margin-bottom: 1rem; /* Bottom margin for paragraphs */
    line-height: 1.6; /* Line height for paragraphs */
}

/* Unordered list styles */
.userClauseNet ul {
    margin-bottom: 1rem; /* Bottom margin for unordered lists */
    padding-left: 1.5rem; /* Left padding for list indentation */
    list-style-type: disc; /* Default disc bullet points */
}

/* List item styles */
.userClauseNet li {
    font-size: 1rem; /* Font size for list items */
    margin-bottom: 0.5rem; /* Bottom margin for list items */
    line-height: 1.6; /* Line height for list items */
}
