body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0f0f2a; /* Dark background for gaming theme */
    color: #f0f0f0; /* Light text color for readability */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: #00bcd4; /* Vibrant accent color for headings */
}

/* General text color for readability */
p, li, span, small {
    color: #e0e0e0;
}

a {
    color: #8e44ad; /* Accent color for links */
    text-decoration: none;
}

a:hover {
    color: #a765cb;
    text-decoration: underline;
}

.container {
    max-width: 1200px;
}

.text-muted{
    color: unset !important; /* Override Bootstrap's muted text color */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #00bcd4;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #2ecc71; /* Green accent for underline */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Header / Hero Section */
.hero-banner {
    background-image: url('img/pics/casino-background_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-banner::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-banner > .container-fluid {
    position: relative;
    z-index: 2;
}

.site-logo {
    max-height: 100px; /* Adjust logo size */
    width: auto;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.hero-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff; /* White for hero title */
}

.hero-banner p {
    font-size: 1.5rem;
    color: #e0e0e0;
}

/* Rating List */
.offer-item {
    background-color: #1a1a3a; /* Slightly lighter dark background for cards */
    border: 1px solid #2a2a4a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.offer-title {
    color: #00bcd4;
}

.offer-item .rating i {
    color: #ffd700; /* Gold for stars */
    font-size: 1.2rem;
}

.offer-item .rating-value {
    color: #e0e0e0;
    font-weight: 600;
}

.offer-button {
    background-color: #2ecc71; /* Green button */
    border-color: #2ecc71;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.offer-button:hover {
    background-color: #25a260;
    border-color: #25a260;
}

/* Rating Criteria */
.criterion-item {
    background-color: #1a1a3a;
    border: 1px solid #2a2a4a;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.criterion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.criterion-icon {
    font-size: 3rem;
    color: #00bcd4;
    margin-bottom: 1rem;
}

.criterion-item h4 {
    color: #00bcd4;
}

/* User Reviews */
.filter-controls .btn-group .btn {
    background-color: #2a2a4a;
    border-color: #3a3a5a;
    color: #e0e0e0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-controls .btn-group .btn:hover {
    background-color: #3a3a5a;
    color: #fff;
}

.filter-controls .btn-group .btn.active {
    background-color: #8e44ad; /* Purple active filter */
    border-color: #8e44ad;
    color: #fff;
}

.review-card {
    background-color: #1a1a3a;
    border: 1px solid #2a2a4a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.review-avatar {
    font-size: 1.8rem;
    color: #00bcd4;
}

.review-author {
    color: #00bcd4;
}

.review-card .rating i {
    color: #ffd700;
    font-size: 1rem;
}

.review-text {
    color: #d0d0d0 !important;
}

.review-date {
    color: #a0a0a0 !important;
}

/* Articles Block */
.article-item {
    background-color: #1a1a3a;
    border: 1px solid #2a2a4a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.article-icon {
    font-size: 2rem;
    color: #2ecc71;
}

.article-item h4 {
    color: #2ecc71;
}

/* Disclaimer Block */
#disclaimer-block {
    background-color: #2a2a4a; /* Distinct background */
    border-top: 5px solid #e74c3c; /* Red border for warning */
    border-bottom: 5px solid #e74c3c;
    margin-top: 3rem;
    margin-bottom: 0 !important; /* Ensure it's right above footer */
}

.disclaimer-content {
    background-color: #1a1a3a; /* Inner content background */
    border: 1px solid #e74c3c;
    padding: 2rem;
}

.disclaimer-icon {
    font-size: 3rem;
    color: #e74c3c; /* Red warning icon */
    margin-bottom: 1rem;
}

.disclaimer-title {
    color: #e74c3c; /* Red title */
    font-weight: 700;
}

.disclaimer-content p {
    color: #d0d0d0;
    font-size: 0.95rem;
}

/* Social Footer */
.footer {
    background-color: #0c0c20; /* Even darker background for footer */
    color: #a0a0a0;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.footer-heading {
    color: #00bcd4;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-links li a:hover {
    color: #fff;
}

.footer-img-icon {
    max-width: 90px; /* Limit width for footer logos */
    height: auto;
    display: block; /* Ensures proper centering with flexbox */
}

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

.social-proof-text {
    font-style: italic;
    color: #b0b0b0;
    margin-top: 0.5rem;
}

/* Cookie Consent Modal */
.cookie-modal-content {
    background-color: #1a1a3a;
    color: #f0f0f0;
    border: 1px solid #2a2a4a;
    border-radius: 0.75rem;
}

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

.cookie-modal-content .modal-title {
    color: #00bcd4;
}

.cookie-modal-content .modal-body p, .cookie-modal-content .modal-body small {
    color: #d0d0d0;
}

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

.cookie-modal-content .form-check-input:checked {
    background-color: #2ecc71;
    border-color: #2ecc71;
}

.cookie-modal-content .btn-primary {
    background-color: #2ecc71;
    border-color: #2ecc71;
}

.cookie-modal-content .btn-primary:hover {
    background-color: #25a260;
    border-color: #25a260;
}

.cookie-modal-content .btn-outline-secondary {
    border-color: #8e44ad;
    color: #8e44ad;
}

.cookie-modal-content .btn-outline-secondary:hover {
    background-color: #8e44ad;
    color: #fff;
}

.cookie-modal-content .btn-link {
    color: #00bcd4;
}

.cookie-modal-content .btn-link:hover {
    color: #0097a7;
}

.cookie-modal-content .btn-success {
    background-color: #00bcd4;
    border-color: #00bcd4;
}

.cookie-modal-content .btn-success:hover {
    background-color: #0097a7;
    border-color: #0097a7;
}

.cookie-policy-link {
    color: #8e44ad !important;
}

.cookie-policy-link:hover {
    color: #a765cb !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-banner {
        min-height: 400px;
    }
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    .hero-banner p {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .footer-logos {
        justify-content: center !important;
    }
    .footer-heading {
        text-align: center;
    }
    .footer-links {
        padding-left: 0;
    }
}
/* Styles for the main content block */
.lawMatrixNode {
    margin-top: 4rem; /* Top margin for the content block */
    margin-bottom: 4rem; /* Bottom margin for the content block */
    max-width: 960px; /* Maximum width for content to control side margins */
    margin-left: auto; /* Center the block horizontally */
    margin-right: auto; /* Center the block horizontally */
    padding-left: 1.5rem; /* Inner padding on the left for content */
    padding-right: 1.5rem; /* Inner padding on the right for content */
}

/* Heading styles within .lawMatrixNode */
.lawMatrixNode h1 {
    font-size: 2.4rem; /* Font size for H1 */
    margin-top: 2.5rem; /* Top margin for H1 */
    margin-bottom: 1.5rem; /* Bottom margin for H1 */
    line-height: 1.2; /* Line height for H1 */
}

.lawMatrixNode h2 {
    font-size: 2rem; /* Font size for H2 */
    margin-top: 2.2rem; /* Top margin for H2 */
    margin-bottom: 1.2rem; /* Bottom margin for H2 */
    line-height: 1.25; /* Line height for H2 */
}

.lawMatrixNode h3 {
    font-size: 1.7rem; /* Font size for H3 */
    margin-top: 2rem; /* Top margin for H3 */
    margin-bottom: 1rem; /* Bottom margin for H3 */
    line-height: 1.3; /* Line height for H3 */
}

.lawMatrixNode h4 {
    font-size: 1.4rem; /* Font size for H4 */
    margin-top: 1.8rem; /* Top margin for H4 */
    margin-bottom: 0.8rem; /* Bottom margin for H4 */
    line-height: 1.35; /* Line height for H4 */
}

.lawMatrixNode h5 {
    font-size: 1.2rem; /* Font size for H5 */
    margin-top: 1.5rem; /* Top margin for H5 */
    margin-bottom: 0.6rem; /* Bottom margin for H5 */
    line-height: 1.4; /* Line height for H5 */
}

/* Paragraph styles within .lawMatrixNode */
.lawMatrixNode p {
    font-size: 1rem; /* Base font size for paragraphs */
    margin-top: 0; /* No top margin for paragraphs by default */
    margin-bottom: 1rem; /* Bottom margin for paragraphs */
    line-height: 1.6; /* Line height for readability */
}

/* Unordered list styles within .lawMatrixNode */
.lawMatrixNode ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 1rem; /* Top margin for lists */
    margin-bottom: 1rem; /* Bottom margin for lists */
    padding-left: 1.5rem; /* Padding for bullet indentation */
}

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

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .lawMatrixNode {
        margin-top: 2.5rem; /* Reduced top margin on smaller screens */
        margin-bottom: 2.5rem; /* Reduced bottom margin on smaller screens */
        padding-left: 1rem; /* Slightly less inner padding on smaller screens */
        padding-right: 1rem; /* Slightly less inner padding on smaller screens */
    }
    .lawMatrixNode h1 {
        font-size: 2rem; /* Smaller H1 on mobile */
    }
    .lawMatrixNode h2 {
        font-size: 1.7rem; /* Smaller H2 on mobile */
    }
    .lawMatrixNode h3 {
        font-size: 1.5rem; /* Smaller H3 on mobile */
    }
    .lawMatrixNode h4 {
        font-size: 1.3rem; /* Smaller H4 on mobile */
    }
    .lawMatrixNode h5 {
        font-size: 1.1rem; /* Smaller H5 on mobile */
    }
}
