body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    color: #1a1a1a;
}

.custom-heading-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.text-white .custom-heading-font {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.bg-primary-dark {
    background-color: #2c3e50; /* Darker blue/charcoal */
}

.bg-warning-light {
    background-color: #fff3cd; /* Light yellow for disclaimer */
}

.btn-primary {
    background-color: #e67e22; /* Orange accent */
    border-color: #e67e22;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none; /* Ensure no underline */
}

.btn-primary:hover {
    background-color: #d35400;
    border-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: #34495e; /* Darker grey */
    border-color: #34495e;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none; /* Ensure no underline */
}

.btn-secondary:hover {
    background-color: #2c3e50;
    border-color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.custom-btn-shadow {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.navbar-brand img {
    filter: brightness(1.2);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff;
}

.header-restriction {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.header-restriction a {
    color: #a7d9f7 !important;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Adjust for fixed navbar */
    padding-bottom: 100px;
}

.hero-bg-image {
    filter: brightness(0.4);
}

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

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

.floating-element {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.about-section p {
    line-height: 1.8;
}

/* Platforms Section */
.platform-card {
    background-color: #fff;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.platform-card .card-title {
    color: #e67e22;
}

.platform-card .platform-image-link {
    display: block;
    height: 100%;
    overflow: hidden;
    padding: 14px;

    img{
        object-fit: contain;
    }
}

.platform-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-top: 30px;
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.534));
}

.platform-card:hover img {
    transform: scale(1.05);
}

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

.payment-icons img {
    height: 30px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

/* Why Choose Us Section */
.icon-box {
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-box i {
    color: #e67e22;
}

/* CTA Section */
.cta-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bg-image {
    filter: brightness(0.4);
}

.cta-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #f0f2f5;
}

.disclaimer-block .bg-warning-light {
    background-color: #fff3cd !important;
    border-color: #ffc107 !important;
}

.disclaimer-block h3 {
    color: #333;
}

.disclaimer-block p, .disclaimer-block ul {
    color: #555;
}

.disclaimer-block ul {
    padding-left: 20px;
}

.disclaimer-block li {
    margin-bottom: 5px;
}

.disclaimer-block a {
    color: #0d6efd;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a !important;
    color: #f8f9fa;
}

.site-footer .navbar-brand {
    color: #fff;
}

.site-footer .footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer h5 {
    color: #e67e22;
}

.site-footer .footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease;
}

.site-footer .footer-link:hover {
    color: #ffffff !important;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px; /* Adjusted for 7 images + 1 icon */
    height: 60px;
    padding: 5px;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.footer-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
}

.footer-logo-item:hover {
    transform: scale(1.05);
}

.footer-18plus-icon {
    width: 60px; /* Smaller for 18+ icon */
    height: 60px;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Age Verification Modal */
#ageVerificationModal .modal-content {
    background-color: #2c3e50 !important;
    border: none;
}

#ageVerificationModal .modal-title {
    color: #e67e22;
}

#ageVerificationModal .btn-primary {
    background-color: #e67e22;
    border-color: #e67e22;
}

#ageVerificationModal .btn-primary:hover {
    background-color: #d35400;
    border-color: #d35400;
}

/* Cookie Banner */
.cookie-banner {
    background-color: #2c3e50 !important;
    z-index: 1050;
    border-bottom: 1px solid #34495e;
}

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

.cookie-banner .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    text-decoration: none;
}

.cookie-banner .btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
    text-decoration: none;
}

#cookieConfigModal .modal-content {
    background-color: #2c3e50 !important;
    border: none;
}

#cookieConfigModal .modal-title {
    color: #e67e22;
}

#cookieConfigModal .form-check-label {
    color: #f8f9fa;
}

#cookieConfigModal .form-check-input:checked {
    background-color: #e67e22;
    border-color: #e67e22;
}

#cookieConfigModal .btn-primary {
    background-color: #e67e22;
    border-color: #e67e22;
}

#cookieConfigModal .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }

    .hero-section .overlay {
        background: rgba(0,0,0,0.7);
    }

    .platform-card .row > div:first-child {
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
        border-bottom-left-radius: 0;
    }
    .platform-card .row > div:last-child {
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
    }

    .platform-card img {
        border-radius: 0.5rem 0.5rem 0 0 !important;
    }

    .platform-card .card-body {
        padding: 1.5rem;
    }

    .disclaimer-block .d-flex.align-items-start {
        flex-direction: column;
        text-align: center;
    }
    .disclaimer-block .d-flex.align-items-start i {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    .disclaimer-block .bg-warning-light {
        padding: 1.5rem !important;
    }

    .footer-logos {
        justify-content: center;
    }
    .footer-logo-item {
        width: 100px;
        height: 50px;
    }
    .footer-18plus-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .cookie-banner .container {
        flex-direction: column;
    }
    .cookie-banner p {
        margin-bottom: 1rem;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn-sm {
        flex-grow: 1;
    }
}

@media (min-width: 768px) {
    .platform-card img {
        border-radius: 0.5rem 0 0 0.5rem !important;
    }
}
/* Base styles for the trust pillar unit container */
.trustPillarUnit {
    padding-top: 2.5rem; /* Top padding for the unit */
    padding-bottom: 2.5rem; /* Bottom padding for the unit */
    padding-left: 1.5rem; /* Left padding for the unit */
    padding-right: 1.5rem; /* Right padding for the unit */
    margin-top: 3rem; /* Top margin to separate from preceding content */
    /* You might want to add a max-width and margin: 0 auto; here for centering */
    /* max-width: 1200px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading styles within the trust pillar unit */
.trustPillarUnit h1 {
    font-size: 2.5rem; /* Moderate font size for H1 */
    line-height: 1.2; /* Improved readability */
    font-weight: 700; /* Bold weight */
    margin-top: 2.5rem; /* Space above H1 */
    margin-bottom: 1rem; /* Space below H1 */
}

.trustPillarUnit h2 {
    font-size: 2rem; /* Moderate font size for H2 */
    line-height: 1.25; /* Improved readability */
    font-weight: 600; /* Semi-bold weight */
    margin-top: 2rem; /* Space above H2 */
    margin-bottom: 0.8rem; /* Space below H2 */
}

.trustPillarUnit h3 {
    font-size: 1.75rem; /* Moderate font size for H3 */
    line-height: 1.3; /* Improved readability */
    font-weight: 600; /* Semi-bold weight */
    margin-top: 1.75rem; /* Space above H3 */
    margin-bottom: 0.7rem; /* Space below H3 */
}

.trustPillarUnit h4 {
    font-size: 1.5rem; /* Moderate font size for H4 */
    line-height: 1.35; /* Improved readability */
    font-weight: 500; /* Medium weight */
    margin-top: 1.5rem; /* Space above H4 */
    margin-bottom: 0.6rem; /* Space below H4 */
}

.trustPillarUnit h5 {
    font-size: 1.25rem; /* Moderate font size for H5 */
    line-height: 1.4; /* Improved readability */
    font-weight: 500; /* Medium weight */
    margin-top: 1.25rem; /* Space above H5 */
    margin-bottom: 0.5rem; /* Space below H5 */
}

/* Paragraph styles within the trust pillar unit */
.trustPillarUnit p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Good readability for body text */
    margin-top: 0; /* No top margin for the first paragraph in a sequence */
    margin-bottom: 1rem; /* Space below paragraphs */
}

/* List styles within the trust pillar unit */
.trustPillarUnit ul {
    list-style-type: disc; /* Default disc for unordered lists */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
}

.trustPillarUnit li {
    font-size: 1rem; /* Base font size for list items */
    line-height: 1.6; /* Consistent line height with paragraphs */
    margin-bottom: 0.5rem; /* Space between list items */
}

/* Optional: Remove bottom margin from the last paragraph/list item if desired */
.trustPillarUnit p:last-child,
.trustPillarUnit ul:last-child,
.trustPillarUnit li:last-child {
    margin-bottom: 0;
}
#cookieBanner{
    top: auto;
    bottom: 0;
}

@media (max-width: 767px){

    .site-footer .col-md-6{
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .site-footer .navbar-brand{
        justify-content: center;
    }

    .site-footer h5{
        text-align: center;
    }
}