body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333333; /* Standard text color */
    background: linear-gradient(135deg, #e0f7fa, #bbdefb);
    scroll-behavior: smooth;
}

/* Custom Colors */
:root {
    --primary-color: #007bff; /* A slightly darker blue for main elements */
    --accent-color: #87CEEB; /* Sky Blue */
    --light-blue-gradient-start: #e0f7fa;
    --light-blue-gradient-end: #bbdefb;
    --dark-gray-text: #555555;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

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

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

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

.bg-light-blue-gradient {
    background: linear-gradient(135deg, var(--light-blue-gradient-start), var(--light-blue-gradient-end));
}

.bg-light-blue-gradient-alt {
    background: linear-gradient(135deg, #f0faff, #e0f7fa);
}

.btn-primary-gradient {
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    background: linear-gradient(45deg, #0056b3, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Navbar */
.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--dark-gray-text);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}
.text-white-80{
    color: rgba(255, 255, 255, 0.9) !important;
}
/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('photos/graphics/hero-background_52.jpg'); /* Using a background image for hero */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding-top: 80px; /* Adjust for fixed navbar */
}

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

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

/* Feature Cards (About Section) */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Game Cards (Popular & Local Games) */
.game-card {
    background-color: white;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.game-card img {
    max-height: 200px;
    object-fit: cover;
    width: 100%;
}

/* How It Works Steps */
.step-card {
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* Testimonial Cards */
.testimonial-card {
    border: 1px solid rgba(0, 123, 255, 0.1);
    padding: 30px;
}

.testimonial-card .avatar-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid rgba(0, 123, 255, 0.1);
    margin-bottom: 15px;
}

.accordion-button {
    background-color: var(--light-blue-gradient-start);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 1.25rem;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

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

.accordion-body {
    background-color: white;
    padding: 1.25rem;
}

/* Game Modal */
.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.modal-content.bg-dark-blue-overlay {
    background-color: rgba(0, 0, 0, 0.85) !important; /* Dark overlay for game modal */
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: rgba(255, 165, 0, 0.1); /* Light orange background */
    border-top: 3px solid var(--warning-color);
    border-bottom: 3px solid var(--warning-color);
    margin-top: 40px;
    margin-bottom: 40px;
}

.disclaimer-content {
    max-width: 800px;
    background-color: white;
    border: 1px solid var(--warning-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: #222; /* Dark background for footer */
}

.footer-brand {
    color: var(--accent-color) !important;
}

.footer-links .list-inline-item a {
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links .list-inline-item a:hover {
    color: white !important;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: white;
}

.footer-org-logos {
    margin-top: 20px;
    gap: 20px; /* Spacing between logos */
}

.footer-logo-img {
    max-width: 120px; /* Adjusted width for logos */
    height: auto;
    display: block;
    filter: none; /* Ensure no grayscale */
}

.age-restriction .badge {
    background-color: var(--danger-color) !important;
    font-weight: 700;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    z-index: 1050;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

@media (max-width: 576px) {
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: unset;
    }
}

/* Age Verification Modal */
.modal-content.bg-light-blue-gradient {
    background: linear-gradient(135deg, var(--light-blue-gradient-start), var(--light-blue-gradient-end));
}

@media (max-width: 1200px){
.display-3{
    font-size: 2.5rem;
}
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
        min-height: auto;
    }

    .hero-section .col-lg-6 {
        margin-bottom: 30px;
    }

    .navbar-collapse {
        background-color: white;
        border-radius: 0.5rem;
        margin-top: 10px;
        padding: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .display-3 {
        font-size: 2rem;
    }
    .display-5 {
        font-size: 2rem;
    }
    .lead {
        font-size: 1rem;
    }
    .btn-lg {
        padding: 0.8rem 2.5rem;
        font-size: 1rem;
    }

    .footer-links .list-inline-item {
        display: block;
        margin-bottom: 5px;
    }
}
/* Styles for the main content container */
.consentTunnelGrid {
    padding-top: 40px; /* Top padding for the content area */
    padding-left: 20px; /* Left padding for the content area */
    padding-right: 20px; /* Right padding for the content area */
    /* You might want to add max-width and margin: auto for centering on larger screens */
    /* max-width: 960px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading styles within the consent tunnel grid */
.consentTunnelGrid h1 {
    font-size: 2rem; /* Moderate size for H1 */
    margin-bottom: 1.2em; /* Spacing below H1 */
    color: #333333; /* Dark text color */
    line-height: 1.2; /* Line height for readability */
}

.consentTunnelGrid h2 {
    font-size: 1.75rem; /* Moderate size for H2 */
    margin-bottom: 1em; /* Spacing below H2 */
    color: #333333;
    line-height: 1.2;
}

.consentTunnelGrid h3 {
    font-size: 1.5rem; /* Moderate size for H3 */
    margin-bottom: 0.8em; /* Spacing below H3 */
    color: #333333;
    line-height: 1.3;
}

.consentTunnelGrid h4 {
    font-size: 1.25rem; /* Moderate size for H4 */
    margin-bottom: 0.7em; /* Spacing below H4 */
    color: #333333;
    line-height: 1.3;
}

.consentTunnelGrid h5 {
    font-size: 1.1rem; /* Moderate size for H5, slightly larger than paragraph */
    margin-bottom: 0.6em; /* Spacing below H5 */
    color: #333333;
    line-height: 1.4;
}

/* Paragraph styles within the consent tunnel grid */
.consentTunnelGrid p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1em; /* Spacing between paragraphs */
    line-height: 1.6; /* Line height for readability */
    color: #555555; /* Slightly lighter text color for paragraphs */
}

/* Unordered list styles within the consent tunnel grid */
.consentTunnelGrid ul {
    list-style-type: disc; /* Standard disc bullet points */
    margin-left: 20px; /* Indent for list items */
    margin-bottom: 1em; /* Spacing below the list */
    padding-left: 0; /* Ensure no extra padding from user agent stylesheet */
    color: #555555;
}

/* List item styles within the consent tunnel grid */
.consentTunnelGrid li {
    font-size: 1rem; /* Standard font size for list items */
    margin-bottom: 0.5em; /* Spacing between list items */
    line-height: 1.6; /* Line height for readability */
    color: #555555;
}
