:root {
    --primary-purple: #3A015C;
    --dark-purple: #2C0045;
    --dark-purple-light: #4F027C;
    --dark-purple-accent: #6C03A6;
    --gold: #FFD700;
    --light-gold: #FFC107;
    --white: #FFFFFF;
    --gray-text: #CCCCCC;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-purple);
    color: var(--white);
    line-height: 1.6;
    box-sizing: border-box;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: inherit;
}

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

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

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

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

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

.btn-gold {
    background-color: var(--gold);
    color: var(--primary-purple);
    border: 1px solid var(--gold);
    font-weight: 600;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    text-decoration: none;
}

.btn-gold:hover {
    background-color: var(--light-gold);
    color: var(--primary-purple);
    border-color: var(--light-gold);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    white-space: normal;
    word-break: break-word;
    text-align: center;
    text-decoration: none;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-purple);
}

.text-muted-custom {
    color: var(--gray-text) !important;
}

/* Responsive Typography */
.site-title {
    font-size: 1.8rem; /* Desktop */
}
.hero-title {
    font-size: 2.5rem; /* Desktop */
}
.section-title {
    font-size: 2.2rem; /* Desktop */
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-title {
        font-size: 1.5rem; /* Tablet */
    }
    .hero-title {
        font-size: 2.2rem; /* Tablet */
    }
    .section-title {
        font-size: 2rem; /* Tablet */
    }
}

@media (max-width: 767px) {
    .site-title {
        font-size: 1.25rem; /* Mobile */
    }
    .hero-title {
        font-size: 1.8rem; /* Mobile */
        line-height: 1.2;
    }
    .section-title {
        font-size: 1.6rem; /* Mobile */
        line-height: 1.2;
    }
    .navbar-brand img {
        height: 30px !important;
    }
}

/* Navbar */
.navbar-brand .site-title {
    font-size: clamp(1.25rem, 4vw, 1.8rem); /* Responsive font size */
}

.navbar-nav .nav-link {
    white-space: nowrap;
}

@media (max-width: 1199px) { /* Adjust breakpoint for burger menu */
    .navbar-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }
    .offcanvas-body {
        padding-top: 1rem;
    }
    .offcanvas-header .btn-close {
        filter: invert(1);
    }
}

/* Age Verification Pop-up */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1050;
    display: none; /* Hidden by default */
}

.age-verification-card {
    background-color: var(--dark-purple-light);
    border: 2px solid var(--gold);
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1051;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    background-image: url('images/pics/a-landscape-fantasy-majestic-sunset-at.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px; /* To account for fixed navbar */
    padding-bottom: 80px;
}

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

.hero-section .container-fluid {
    position: relative;
    z-index: 1;
}

.hero-cards-image {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.scroll-down-indicator {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
}

/* About Section */
.about-section img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Games Section */
.game-card {
    border: 1px solid var(--primary-purple);
    overflow: hidden;
    transition: none; /* No animation */
}

.game-card:hover {
    transform: none; /* No animation */
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.game-card-img {
    width: 100%;
    height: 180px; /* Fixed height for uniformity */
    object-fit: cover;
}

.game-rating {
    color: var(--white);
}

.game-rating .bi-star-fill, .game-rating .bi-star-half {
    color: var(--gold);
}

/* Game Selection Section */
.game-selection-section img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Testimonials Section */
.testimonial-card {
    border: 1px solid var(--primary-purple);
    display: flex;
    flex-direction: column;
}

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

/* FAQ Section */
.accordion-item {
    border: none;
}

.accordion-button {
    background-color: var(--dark-purple-accent);
    color: var(--gold);
    border-bottom: 1px solid var(--primary-purple);
    text-decoration: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-purple);
    color: var(--gold);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    filter: invert(1) brightness(2); /* Make icon visible on dark background */
}

.accordion-body {
    background-color: var(--dark-purple-accent);
    color: var(--gray-text);
}

/* Contact Section */
.contact-form {
    background-color: var(--dark-purple-light);
    border: 1px solid var(--primary-purple);
}

.contact-form .form-control {
    background-color: var(--dark-purple-accent);
    border: 1px solid var(--primary-purple);
    color: var(--white);
}

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

.contact-form .form-control:focus {
    background-color: var(--dark-purple-accent);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

/* Responsible Gaming Disclaimer */
.responsible-gaming-disclaimer {
    background-color: var(--dark-purple-accent);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    margin-top: 3rem;
    padding: 3rem 0;
}

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

.responsible-gaming-disclaimer a {
    font-weight: 600;
}

/* Footer */
footer {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

footer .navbar-brand img {
    height: 35px;
}

footer .list-unstyled a {
    color: var(--gray-text);
}

footer .list-unstyled a:hover {
    color: var(--gold);
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    max-width: 120px; /* Adjust as needed */
    height: auto;
    filter: none; /* Ensure no grayscale */
    transition: none; /* No animation */
}

.footer-logo-18plus {
    max-width: 60px;
    height: auto;
    filter: none;
}

/* Game Modal */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1060; /* Above cookie modal */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent scroll on modal itself */
}

.game-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1070; /* Above iframe */
    padding: 0;
}

.game-modal-close:hover {
    color: var(--gold);
}

.game-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1040; /* Below age verification, above regular content */
    border-top: 1px solid var(--primary-purple);
    display: none; /* Hidden by default */
}

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

.cookie-banner .btn {
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
}

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    border: 1px solid var(--gold);
    z-index: 1055; /* Above age verification overlay if it was still active */
}

#cookieSettingsModal .modal-header .btn-close {
    filter: invert(1);
}

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

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

/* Utility for blocking scroll */
body.no-scroll {
    overflow: hidden;
}/* Container for policy content, providing overall padding */
.policyScopeWrap {
    padding: 40px 30px; /* Top/bottom and left/right padding */
}

/* Heading 1 styles */
.policyScopeWrap h1 {
    font-size: 28px; /* Main heading font size */
    font-weight: 700; /* Bold font weight */
    margin-top: 30px; /* Space above heading */
    margin-bottom: 15px; /* Space below heading */
    line-height: 1.2; /* Line height for readability */
}

/* Heading 2 styles */
.policyScopeWrap h2 {
    font-size: 24px; /* Sub-heading font size */
    font-weight: 700; /* Bold font weight */
    margin-top: 25px; /* Space above heading */
    margin-bottom: 12px; /* Space below heading */
    line-height: 1.3; /* Line height for readability */
}

/* Heading 3 styles */
.policyScopeWrap h3 {
    font-size: 20px; /* Section title font size */
    font-weight: 700; /* Bold font weight */
    margin-top: 20px; /* Space above heading */
    margin-bottom: 10px; /* Space below heading */
    line-height: 1.4; /* Line height for readability */
}

/* Heading 4 styles */
.policyScopeWrap h4 {
    font-size: 18px; /* Sub-section title font size */
    font-weight: 700; /* Bold font weight */
    margin-top: 18px; /* Space above heading */
    margin-bottom: 8px; /* Space below heading */
    line-height: 1.5; /* Line height for readability */
}

/* Heading 5 styles */
.policyScopeWrap h5 {
    font-size: 16px; /* Minor heading font size */
    font-weight: 700; /* Bold font weight */
    margin-top: 15px; /* Space above heading */
    margin-bottom: 6px; /* Space below heading */
    line-height: 1.5; /* Line height for readability */
}

/* Paragraph styles */
.policyScopeWrap p {
    font-size: 16px; /* Base paragraph font size */
    line-height: 1.7; /* Line height for readability */
    margin-bottom: 16px; /* Space below paragraph */
    margin-top: 0; /* Ensure no extra top margin if following another block */
}

/* Unordered list styles */
.policyScopeWrap ul {
    list-style-type: disc; /* Default bullet style */
    margin-bottom: 16px; /* Space below the list */
    margin-top: 0; /* Ensure no extra top margin if following another block */
    padding-left: 25px; /* Indentation for bullet points */
}

/* List item styles */
.policyScopeWrap li {
    font-size: 16px; /* List item font size, matching paragraph */
    line-height: 1.6; /* Line height for readability within list items */
    margin-bottom: 8px; /* Spacing between list items */
}


main{
    overflow: hidden !important;
}

.contactResponse{
    padding: 10px;
}