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

.container {
    max-width: 1200px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e94560; /* Accent color */
    border-radius: 2px;
}

.bg-light-gray {
    background-color: #2a2a4a; /* Slightly lighter dark background for contrast */
}

/* Header */
header {
    background-color: #16213e !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header-disclaimer {
    font-size: 0.85rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Section */
.hero-section {
    min-height: 500px;
    background-color: #0f0f1f;
    position: relative;
    padding: 80px 0;
}

.hero-bg-image {
    filter: brightness(0.4) grayscale(0.2); /* Dark overlay for image */
}

.hero-overlay {
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.9));
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Offer Cards */
.offers-grid {
    background-color: #1a1a2e;
}

.offer-card {
    background-color: #16213e;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e94560;
    color: #e0e0e0;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.offer-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    padding: 10px;
}

.offer-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 0.5rem;
}

.offer-rating .stars i {
    color: #ffc107; /* Gold stars */
    font-size: 1.1rem;
}

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

.offer-bonus-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
}

.offer-btn {
    background-color: #e94560;
    border-color: #e94560;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.offer-btn:hover {
    background-color: #ff6b8a;
    border-color: #ff6b8a;
}

.payment-logos img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
}

.offer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

/* Rating Criteria */
.rating-criteria {
    background-color: #2a2a4a;
}

.criteria-item {
    background-color: #16213e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.criteria-item i {
    color: #e94560;
}

.criteria-item h3 {
    color: #e94560;
    font-weight: 600;
}

.criteria-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.criteria-item ul li {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.criteria-item ul li i {
    color: #28a745; /* Green checkmark */
}

/* User Reviews */
.user-reviews {
    background-color: #1a1a2e;
}

.review-card {
    background-color: #16213e;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #e94560;
}

.review-card h6 {
    color: #e94560;
    font-weight: 600;
}

.review-card .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.review-stars i {
    color: #ffc107;
    font-size: 1rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq-section {
    background-color: #2a2a4a;
}

.faq-item {
    background-color: #16213e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.faq-item h3 {
    color: #e94560;
    font-weight: 600;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Form */
.newsletter-form {
    background-color: #1a1a2e;
}

.newsletter-form-card {
    background-color: #16213e;
    border-radius: 12px;
    border: 1px solid #e94560;
    color: #e0e0e0;
}

.newsletter-form .form-label {
    color: #e0e0e0;
    font-weight: 600;
}

.newsletter-form .form-control {
    background-color: #2a2a4a;
    border: 1px solid #e94560;
    color: #e0e0e0;
    padding: 10px 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background-color: #2a2a4a;
    border-color: #ff6b8a;
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
    color: #e0e0e0;
}

.newsletter-form .form-check-input {
    background-color: #2a2a4a;
    border-color: #e94560;
}

.newsletter-form .form-check-input:checked {
    background-color: #e94560;
    border-color: #e94560;
}

.newsletter-form .form-check-label {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form .btn-primary {
    background-color: #e94560;
    border-color: #e94560;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.newsletter-form .btn-primary:hover {
    background-color: #ff6b8a;
    border-color: #ff6b8a;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875em;
}

/* Responsible Gaming Disclaimer */
.responsible-gaming-disclaimer {
    background-color: #0f0f1f; /* Darker background */
    border-top: 5px solid #e94560; /* Accent border */
    border-bottom: 5px solid #e94560;
    margin-top: 50px;
    margin-bottom: 50px !important; /* Ensure it's above footer */
}

.disclaimer-content {
    background-color: #16213e; /* Inner block background */
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-title {
    color: #e94560; /* Accent color for title */
    font-weight: 700;
    font-size: 2rem;
}

.responsible-gaming-disclaimer p {
    color: rgba(255, 255, 255, 0.8);
}

.responsible-gaming-disclaimer ul {
    padding: 0;
    margin: 0;
}

.responsible-gaming-disclaimer ul li {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.responsible-gaming-disclaimer ul li a {
    color: #fff; /* White for phone numbers */
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #16213e !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer h5 {
    color: #e94560;
    font-weight: 600;
}

footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #e94560 !important;
}

.social-icons a {
    font-size: 1.5rem;
}

.footer-logos {
    gap: 20px;
}

.footer-logo {
    max-width: 140px; /* Adjusted width for more logos */
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
}

.age-restriction-icon img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050;
    background-color: #16213e !important;
    border-top: 1px solid #e94560;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.8);
}

.cookie-banner .btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.cookie-banner .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.cookie-banner .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.8);
}

.cookie-banner .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    background-color: #16213e;
    border: 1px solid #e94560;
    color: #e0e0e0;
}

#cookieSettingsModal .modal-title {
    color: #e94560;
}

#cookieSettingsModal .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%); /* Make white close button visible on dark background */
}

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

#cookieSettingsModal .form-check-input {
    background-color: #2a2a4a;
    border-color: #e94560;
}

#cookieSettingsModal .form-check-input:checked {
    background-color: #e94560;
    border-color: #e94560;
}

#cookieSettingsModal .btn-primary {
    background-color: #e94560;
    border-color: #e94560;
}

#cookieSettingsModal .btn-primary:hover {
    background-color: #ff6b8a;
    border-color: #ff6b8a;
}

#cookieSettingsModal .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

#cookieSettingsModal .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .offer-card .row > div {
        text-align: center;
    }
    .offer-logo {
        margin-bottom: 1rem;
    }
    .offer-rating, .payment-logos {
        justify-content: center !important;
    }
    .header-disclaimer {
        font-size: 0.75rem;
        text-align: center !important;
        margin-top: 10px;
    }
    header .container-fluid {
        flex-direction: column;
    }
    .responsible-gaming-disclaimer ul {
        flex-direction: column;
        align-items: center;
    }
    .responsible-gaming-disclaimer ul li {
        margin-bottom: 10px;
    }
}
/* New styles for content within .complianceVaultNode */

/* Parent container for compliance content, providing overall padding */
.complianceVaultNode {
    padding-top: 50px; /* Top padding for the content block */
    padding-left: 20px; /* Left padding for the content block */
    padding-right: 20px; /* Right padding for the content block */
    padding-bottom: 50px; /* Bottom padding for the content block */
    /* Ensure content text color is consistent with the theme */
    color: #e0e0e0;
    /* Optional: background-color if this section is distinct */
    /* background-color: #1a1a2e; */
}

/* Heading 1 styles */
.complianceVaultNode h1 {
    font-size: 2.2rem; /* Moderate font size for main headings within content */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 1.5em; /* Top margin for spacing */
    margin-bottom: 0.8em; /* Bottom margin for spacing */
    color: #e94560; /* Accent color for main headings */
}

/* Heading 2 styles */
.complianceVaultNode h2 {
    font-size: 1.8rem; /* Font size for sub-headings */
    line-height: 1.3;
    margin-top: 1.2em;
    margin-bottom: 0.7em;
    color: #e94560; /* Accent color for sub-headings */
}

/* Heading 3 styles */
.complianceVaultNode h3 {
    font-size: 1.5rem; /* Font size for smaller headings */
    line-height: 1.4;
    margin-top: 1em;
    margin-bottom: 0.6em;
    color: #e94560; /* Accent color for smaller headings */
}

/* Heading 4 styles */
.complianceVaultNode h4 {
    font-size: 1.3rem; /* Font size for even smaller headings */
    line-height: 1.5;
    margin-top: 0.8em;
    margin-bottom: 0.5em;
    color: #e0e0e0; /* Standard text color for less prominent headings */
}

/* Heading 5 styles */
.complianceVaultNode h5 {
    font-size: 1.1rem; /* Smallest heading size */
    line-height: 1.6;
    margin-top: 0.7em;
    margin-bottom: 0.4em;
    color: #e0e0e0; /* Standard text color */
}

/* Paragraph styles */
.complianceVaultNode p {
    font-size: 1rem; /* Standard body text font size */
    line-height: 1.7; /* Generous line height for readability */
    margin-top: 0; /* No top margin by default, let headings define spacing */
    margin-bottom: 1em; /* Bottom margin for paragraph separation */
    color: #e0e0e0; /* Standard text color */
}

/* Unordered list styles */
.complianceVaultNode ul {
    list-style: disc; /* Default disc bullet */
    margin-top: 1em; /* Top margin for list spacing */
    margin-bottom: 1em; /* Bottom margin for list spacing */
    padding-left: 25px; /* Indentation for list items */
    color: #e0e0e0; /* Standard text color */
}

/* Ordered list styles (included for completeness) */
.complianceVaultNode ol {
    list-style: decimal; /* Default decimal numbering */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 25px;
    color: #e0e0e0;
}

/* List item styles */
.complianceVaultNode li {
    font-size: 1rem; /* Same font size as paragraphs */
    line-height: 1.6; /* Consistent line height */
    margin-bottom: 0.5em; /* Spacing between list items */
    color: #e0e0e0; /* Standard text color */
}


