body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d1a2d; /* Dark background for the whole site */
    color: #E0E0E0; /* Standard light text color */
}

/* Global Styles */
a {
    color: #FFD700; /* Gold/Yellow for links */
    text-decoration: none;
}

a:hover {
    color: #e6c200; /* Slightly darker gold on hover */
    text-decoration: underline;
}

.text-warning {
    color: #FFD700 !important; /* Ensure warning text is gold */
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important; /* Lighter white for secondary text */
}

.bg-dark {
    background-color: #1A2B4C !important; /* Primary dark blue for headers/footers */
}

.bg-light-dark {
    background-color: #243B55 !important; /* Slightly lighter dark blue for alternating sections */
}

.btn-warning {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #1A2B4C;
    font-weight: 600;
}

.btn-warning:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #1A2B4C;
}

/* Header */
.header-logo {
    height: 50px;
    width: auto;
}

.fixed-top {
    z-index: 1030; /* Ensure header is above other content */
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 400px; /* Adjust as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px; /* Offset for fixed header */
    padding-bottom: 50px;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
    z-index: 0;
}

.hero-section h2, .hero-section p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Casino Cards */
.casino-card {
    background-color: #1A2B4C;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

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

.casino-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.rating .bi-star-fill {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

/* How We Rate Section */
.how-we-rate-card {
    background-color: #1A2B4C;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #E0E0E0;
}

/* FAQ Section */
.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button {
    color: #FFD700 !important;
    background-color: #1A2B4C !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(80%) sepia(85%) saturate(7500%) hue-rotate(359deg) brightness(102%) contrast(100%); /* Gold filter for arrow */
}

.accordion-body {
    background-color: #1A2B4C;
    color: #E0E0E0;
}

/* Reviews Section */
.review-card {
    background-color: #1A2B4C;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFD700;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #0d1a2d; /* A slightly different dark background */
    border-top: 5px solid #FFD700; /* Gold top border */
    border-bottom: 5px solid #FFD700; /* Gold bottom border */
    padding: 3rem 0;
}

.disclaimer-content {
    background-color: #1A2B4C; /* Dark blue background for the content box */
    border: 1px solid #FFD700; /* Gold border around the content */
    padding: 2rem;
    color: #E0E0E0;
}

.disclaimer-content h4, .disclaimer-content h5 {
    color: #FFD700;
}

.disclaimer-content .bi-info-circle-fill {
    font-size: 1.8rem;
    vertical-align: middle;
}

.disclaimer-content hr {
    border-color: rgba(255, 215, 0, 0.5) !important; /* Lighter gold for HR */
}

/* Footer */
.footer-logo {
    height: 50px;
    width: auto;
}

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

.footer-org-logos {
    margin-top: 2rem;
}

.footer-logo-item {
    max-width: 120px; /* Adjusted based on the number of logos */
    height: auto;
    object-fit: contain;
    margin: 0 10px; /* Spacing between logos */
}

.footer-18-plus-icon {
    max-width: 60px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

/* Age Verification Modal */
#ageVerificationModal .modal-content {
    background-color: #1A2B4C !important;
    border: 1px solid #FFD700;
}

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

#ageVerificationModal .modal-title {
    color: #FFD700 !important;
}

#ageVerificationModal .btn-warning {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #1A2B4C;
}

#ageVerificationModal .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

#ageVerificationModal .btn-outline-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.nav{
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
  header .container{
        flex-direction: column;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {

    
    .hero-section {
        padding-top: 80px;
    }

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

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

    .header-logo {
        height: 30px;
    }

    .navbar-nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-link {
        padding: 0.5rem;
    }

    .footer-org-logos {
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo-item {
        max-width: 150px;
    }

    .disclaimer-content {
        padding: 1.5rem;
    }
}
/* Styles for the main content block */
.legalDomeBlock {
    padding: 3rem 1.5rem; /* Top/bottom padding, left/right padding */
    margin: 0 auto; /* Center the block */
    max-width: 1200px; /* Max width for readability */
    color: #E0E0E0; /* Default text color for this block */
    line-height: 1.6; /* Default line height for readability */
}

/* Headings within the legalDomeBlock */
.legalDomeBlock h1 {
    font-size: 2.2rem; /* Moderate size for H1 */
    margin-top: 2rem; /* Space above heading */
    margin-bottom: 1rem; /* Space below heading */
    color: #FFD700; /* Gold color for headings */
    font-weight: 600; /* Slightly bolder */
}

.legalDomeBlock h2 {
    font-size: 1.8rem; /* Moderate size for H2 */
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    color: #FFD700;
    font-weight: 600;
}

.legalDomeBlock h3 {
    font-size: 1.5rem; /* Moderate size for H3 */
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #FFD700;
    font-weight: 600;
}

.legalDomeBlock h4 {
    font-size: 1.3rem; /* Moderate size for H4 */
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    color: #FFD700;
    font-weight: 600;
}

.legalDomeBlock h5 {
    font-size: 1.1rem; /* Moderate size for H5 */
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: #FFD700;
    font-weight: 600;
}

/* Paragraphs within the legalDomeBlock */
.legalDomeBlock p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1rem; /* Space below paragraph */
    line-height: 1.7; /* Good line height for text readability */
}

/* Unordered lists within the legalDomeBlock */
.legalDomeBlock ul {
    list-style: disc; /* Default disc style for unordered lists */
    margin-left: 1.5rem; /* Indent the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 0; /* No extra padding on the list container itself */
}

/* List items within the legalDomeBlock */
.legalDomeBlock li {
    font-size: 1rem; /* Standard font size for list items */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Line height for list item text */
}

/* Optional: Remove bottom margin for the last paragraph/list item if needed */
.legalDomeBlock p:last-child,
.legalDomeBlock ul:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .legalDomeBlock {
        padding: 2rem 1rem; /* Adjust padding for smaller screens */
    }

    .legalDomeBlock h1 {
        font-size: 1.8rem;
    }

    .legalDomeBlock h2 {
        font-size: 1.5rem;
    }

    .legalDomeBlock h3 {
        font-size: 1.3rem;
    }

    .legalDomeBlock h4 {
        font-size: 1.1rem;
    }

    .legalDomeBlock h5 {
        font-size: 1rem;
    }

    .legalDomeBlock p,
    .legalDomeBlock li {
        font-size: 0.95rem; /* Slightly smaller font size for mobile */
    }

    .legalDomeBlock ul {
        margin-left: 1rem; /* Less indent on mobile */
    }
}

.mb2-5rem{
    margin-bottom: 2.5rem;
}

.review-card small{
    color: #fff !important;
}

.how-we-rate-card{
    flex: 1;
}