:root {
    --color-black: #000000;
    --color-dark-alt: #1a1a1a;
    --color-red: #e74c3c;
    --color-red-dark: #c0392b;
    --color-gold: #f1c40f;
    --color-white: #ffffff;
    --color-white-50: rgba(255, 255, 255, 0.5);
    --font-primary: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--color-gold);
}

a {
    color: var(--color-red);
    text-decoration: none;
}

a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.btn-red {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
    transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
}

.btn-red:hover {
    background-color: var(--color-red-dark);
    border-color: var(--color-red-dark);
    color: var(--color-white);
}

.btn-outline-gold {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background-color: transparent;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

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

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

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

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

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

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

.cursor-pointer {
    cursor: pointer;
}

/* Age Verification PopUp */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
}

.age-verification-modal small{
    color: #fff !important;
}

.age-verification-modal.d-none {
    opacity: 0;
    visibility: hidden;
}

.age-verification-modal .modal-content {
    background-color: var(--color-dark-alt);
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--color-gold);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

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

.hero-section .site-logo {
    max-width: 250px;
    height: auto;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-section p.lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Rating Grid */
.scroll-snap-container {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
}

.scroll-snap-item {
    scroll-snap-align: start;
    min-width: 90%; /* For mobile, one card at a time */
}

@media (min-width: 768px) {
    .scroll-snap-item {
        min-width: 50%; /* Two cards on tablet */
    }
}

@media (min-width: 992px) {
    .scroll-snap-item {
        min-width: 33.333%; /* Three cards on desktop */
    }
}

.casino-card {
    border: 1px solid var(--color-gold);
    height: 100%; /* Ensure cards have same height in flex container */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.casino-card .casino-logo {
    max-width: 200px;
    height: auto;
}

.casino-card .rating-score {
    font-size: 1.5rem;
    font-weight: 700;
}

.casino-card .casino-features li {
    margin-bottom: 8px;
}

/* Information Block */
.info-card {
    background-color: var(--color-dark-alt);
    border: 1px solid var(--color-red-dark);
}

/* User Reviews */
.review-card {
    border: 1px solid var(--color-white-50);
    height: 100%;
}

.review-card .review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.review-card .review-screenshot {
    border: 1px solid var(--color-white-50);
    max-height: 100px;
    object-fit: cover;
}

/* Rating Criteria (Custom Accordion) */
.accordion-custom .accordion-item-custom {
    background-color: var(--color-dark-alt);
    border: 1px solid var(--color-gold);
}

.accordion-custom .accordion-header-custom {
    padding: 10px 15px;
    font-size: 1.25rem;
    position: relative;
}

.accordion-custom .accordion-header-custom .expand-icon {
    transition: transform 0.1s ease-in-out; /* Instant change */
}

.accordion-custom .accordion-header-custom.expanded .expand-icon {
    transform: rotate(45deg);
}

.accordion-custom .accordion-body-custom {
    padding: 0 15px 15px;
}

/* Articles Block */
.article-card {
    border: 1px solid var(--color-white-50);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card .article-img {
    height: 200px; /* Fixed height for images */
    object-fit: cover;
    width: 100%;
}

/* Contact Form */
.form-container {
    background-color: var(--color-dark-alt);
    border: 1px solid var(--color-gold);
}

.form-control {
    background-color: var(--color-black);
    border: 1px solid var(--color-white-50);
    color: var(--color-white);
}

.form-control::placeholder {
    color: var(--color-white-50);
}

.form-control:focus {
    background-color: var(--color-black);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.25rem rgba(241, 196, 15, 0.25);
    color: var(--color-white);
}

.form-label {
    font-weight: 600;
}

.invalid-feedback {
    color: var(--color-red);
}

/* Disclaimer Block */
#disclaimer-block {
    border-top: 3px solid var(--color-gold);
    border-bottom: 3px solid var(--color-gold);
    margin-top: 50px;
    margin-bottom: 50px;
}

#disclaimer-block h3 {
    color: var(--color-gold);
    font-size: 1.8rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--color-gold);
}

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

.footer-links a {
    font-size: 0.9rem;
}

.footer-logos {
    gap: 20px;
}

.footer-logo-item {
    height: 50px;
    max-width: 140px; /* Adjusted from 100-150px to 120px for consistency with 4 images */
    object-fit: contain;
    filter: none; /* Ensure no grayscale */
    transition: none; /* No hover effects */
}

/* Cookie Consent Banner */
.cookie-banner {
    z-index: 1050;
    border-top: 2px solid var(--color-gold);
}

/* Cookie Customization Modal */
.modal-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1060;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
}

.modal-custom.d-none {
    opacity: 0;
    visibility: hidden;
}

.modal-custom .modal-content-custom {
    background-color: var(--color-dark-alt);
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--color-gold);
}

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

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(241, 196, 15, 0.25);
}
/* Styles for the main content wrapper */
.regShieldWrap {
    padding-top: 50px; /* Top padding for the content block */
    padding-left: 15px; /* Left padding for the content block */
    padding-right: 15px; /* Right padding for the content block */
    max-width: 1200px; /* Maximum width for content readability */
    margin-left: auto; /* Center the block horizontally */
    margin-right: auto; /* Center the block horizontally */
}

/* Heading styles within the content wrapper */
.regShieldWrap h1 {
    font-size: 2.2rem; /* Moderate size for main content headings */
    margin-bottom: 1.2rem; /* Spacing below the heading */
    color: var(--color-gold); /* Inherit gold color from theme variables */
}

.regShieldWrap h2 {
    font-size: 1.8rem; /* Moderate size for sub-headings */
    margin-bottom: 1rem; /* Spacing below the heading */
    color: var(--color-gold);
}

.regShieldWrap h3 {
    font-size: 1.5rem; /* Moderate size for sub-sub-headings */
    margin-bottom: 0.8rem; /* Spacing below the heading */
    color: var(--color-gold);
}

.regShieldWrap h4 {
    font-size: 1.25rem; /* Moderate size for smaller headings */
    margin-bottom: 0.7rem; /* Spacing below the heading */
    color: var(--color-gold);
}

.regShieldWrap h5 {
    font-size: 1rem; /* Smallest heading size, similar to paragraph text */
    margin-bottom: 0.6rem; /* Spacing below the heading */
    color: var(--color-gold);
}

/* Paragraph styles within the content wrapper */
.regShieldWrap p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.6; /* Standard line height for readability */
    margin-bottom: 1rem; /* Spacing below the paragraph */
    color: var(--color-white); /* Default text color */
}

/* Unordered list styles within the content wrapper */
.regShieldWrap ul {
    list-style-type: disc; /* Standard disc bullets for unordered lists */
    margin-bottom: 1rem; /* Spacing below the list */
    padding-left: 20px; /* Indentation for list items */
    color: var(--color-white); /* Default text color */
}

/* List item styles within the content wrapper */
.regShieldWrap ul li {
    margin-bottom: 0.5rem; /* Spacing between individual list items */
}


.casino-card p, #rating-grid p, #user-reviews small{
    color: #fff !important;
}