body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a; /* Dark background */
    color: #f8f9fa; /* Light text for readability */
}

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --dark-color: #212529;
    --light-color: #f8f9fa;

    --bg-dark-primary: #121212;
    --bg-dark-secondary: #1e1e1e;
    --bg-dark-light: #2a2a2a;
    --bg-warning-dark: #3a2a00; /* Darker shade of warning for disclaimer */

    --text-white-75: rgba(255, 255, 255, 0.75);
    --text-white-50: rgba(255, 255, 255, 0.5);
    --text-white-shadow: #fff;
}

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

.bg-dark-light {
    background-color: var(--bg-dark-light) !important;
}

.bg-dark-secondary {
    background-color: var(--bg-dark-secondary) !important;
}

.bg-primary-dark {
    background-color: #0a0a0a !important;
}

.text-white-75 {
    color: var(--text-white-75) !important;
}

.text-white-50 {
    color: var(--text-white-50) !important;
}

.text-white-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.text-gradient {
    background: linear-gradient(90deg, #ffc107, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hover-white:hover {
    color: var(--light-color) !important;
}

.btn {
    text-decoration: none !important;
}

.btn-warning {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: var(--dark-color);
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: var(--dark-color);
}

.btn-outline-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

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

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

.max-w-700 {
    max-width: 700px;
}

/* Top Header */
.top-header {
    background-color: #0a0a0a;
    color: #f8f9fa;
    padding: 8px 0;
    font-size: 0.85rem;
}

/* Main Header */
.main-header {
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1030;
}

.site-title {
    font-size: 1.8rem;
}

.header-tagline {
    font-size: 0.9rem;
    color: #fff !important;
}

.nav-item a{
    color: #fff !important;
}

.main-nav .nav-link {
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.main-nav .nav-link:hover {
    color: var(--light-color) !important;
}

/* Hero Section */
.hero-section {
    min-height: 500px;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-background-img {
    top: 0;
    left: 0;
    filter: brightness(0.4);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-section h2 {
    font-size: 3.5rem;
}

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

/* Cards in Casino Section */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-text a {
    text-decoration: none;
}

.card-text a:hover {
    text-decoration: underline;
}

/* Accordion (FAQ) */
.accordion-item {
    border: none;
}

.accordion-button {
    background-color: var(--bg-dark-light);
    color: var(--light-color);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-dark-secondary);
    color: var(--warning-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--bg-dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 0.5rem 0.5rem;
}

/* Responsible Gaming Disclaimer */
.responsible-gaming-disclaimer {
    background-color: var(--bg-warning-dark);
    color: var(--light-color);
}

.responsible-gaming-disclaimer .border-warning {
    border-color: var(--warning-color) !important;
}

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

/* Footer */
.footer-logos {
    gap: 1.5rem;
}

.footer-img {
    max-width: 120px;
    height: auto;
    display: block;
}

.footer-img-18plus {
    max-width: 60px;
    height: auto;
    display: block;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(289deg) brightness(100%) contrast(100%); /* Make it white initially */
}

/* Age Verification Modal */
#ageVerificationModal .modal-content {
    background-color: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#ageVerificationModal .modal-header, #ageVerificationModal .modal-footer {
    border-bottom: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    z-index: 1050;
    background-color: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner p {
    font-size: 0.9rem;
}

/* Cookie Config Modal */
#cookieConfigModal .modal-content {
    background-color: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#cookieConfigModal .form-check-input:checked {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
}

#cookieConfigModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

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

/* Responsive adjustments */

@media (max-width: 992px) {
    nav{
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section h2 {
        font-size: 2.5rem;
    }

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

    .site-title {
        font-size: 1.5rem;
    }

    .header-tagline {
        display: none !important;
    }

    .main-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .footer-logos {
        justify-content: center;
        gap: 1rem;
    }

    .footer-img {
        max-width: 100px;
    }
    
    .footer-img-18plus {
        max-width: 50px;
    }

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: unset;
    }
}/*
 * Base styles for the .rightsFieldUnit container.
 * Provides top margin for separation and horizontal padding for content.
 */
.rightsFieldUnit {
    margin-top: 20px; /* Spacing from the element above */
    padding-left: 15px; /* Internal padding on the left */
    padding-right: 15px; /* Internal padding on the right */
}

/*
 * Heading styles within .rightsFieldUnit.
 * Font sizes are set to be moderate, not overly large, while maintaining hierarchy.
 * Margins provide clear separation from surrounding content.
 */
.rightsFieldUnit h1 {
    font-size: 1.8em; /* Slightly larger than body text, but not huge */
    font-weight: 700; /* Bold */
    line-height: 1.2;
    margin-top: 1.2em; /* Top spacing for readability */
    margin-bottom: 0.8em; /* Bottom spacing to separate from content below */
}

.rightsFieldUnit h2 {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1em;
    margin-bottom: 0.7em;
}

.rightsFieldUnit h3 {
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 0.9em;
    margin-bottom: 0.6em;
}

.rightsFieldUnit h4 {
    font-size: 1.1em; /* Close to body text, but still distinct */
    font-weight: 700;
    line-height: 1.5;
    margin-top: 0.8em;
    margin-bottom: 0.5em;
}

.rightsFieldUnit h5 {
    font-size: 1em; /* Base text size, but bold */
    font-weight: 700;
    line-height: 1.6;
    margin-top: 0.7em;
    margin-bottom: 0.4em;
}

/*
 * Paragraph styles within .rightsFieldUnit.
 * Sets a comfortable line-height and bottom margin for readability.
 */
.rightsFieldUnit p {
    font-size: 1em; /* Base text size */
    line-height: 1.6; /* Good for readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/*
 * Unordered list styles within .rightsFieldUnit.
 * Adds padding for bullet points and vertical margins for separation.
 */
.rightsFieldUnit ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1em; /* Spacing above the list */
    margin-bottom: 1em; /* Spacing below the list */
    padding-left: 25px; /* Indent for bullet points */
}

/*
 * List item styles within .rightsFieldUnit.
 * Adds a small bottom margin for spacing between list items.
 */
.rightsFieldUnit li {
    margin-bottom: 0.5em; /* Space between individual list items */
    line-height: 1.5; /* Line height for list item text */
}
