body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0A0A; /* Dark background */
    color: #E0E0E0; /* Light gray for general text */
    line-height: 1.6;
}

/* Custom Color Palette */
:root {
    --primary-blue: #0A1931;
    --secondary-pink: #FF69B4;
    --accent-black: #0A0A0A;
    --light-gray: #E0E0E0;
    --dark-gray: #B0B0B0;
    --dark-blue-text: #1C2E4A;
    --warning-yellow: #FFC107;
}

.bg-dark-section {
    background-color: var(--accent-black);
    color: var(--light-gray);
}

.bg-light-section {
    background-color: #F8F9FA; /* A very light gray to contrast with black */
    color: var(--dark-blue-text);
}

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

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

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

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

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

/* General Styles */
section {
    padding: 60px 0;
}

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

h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2.8rem;
    color: var(--dark-blue-text);
}

.main-header {
    background-color: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1030;
}

.main-header .navbar-brand .logo-img {
    height: 45px;
    width: auto;
}

.main-header .nav-link {
    color: var(--light-gray) !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: var(--secondary-pink) !important;
}

.main-header .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-pink);
    transition: width 0.3s ease, left 0.3s ease;
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after {
    width: 80%;
    left: 10%;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem 0.5rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin: 5px;
}

.btn-primary-pink {
    background-color: var(--secondary-pink);
    border-color: var(--secondary-pink);
    color: var(--light-gray);
}

.btn-primary-pink:hover {
    background-color: #e6529e;
    border-color: #e6529e;
    color: var(--light-gray);
    transform: translateY(-2px);
}

.btn-secondary-dark {
    background-color: var(--dark-blue-text);
    border-color: var(--dark-blue-text);
    color: var(--light-gray);
}

.btn-secondary-dark:hover {
    background-color: #15243a;
    border-color: #15243a;
    color: var(--light-gray);
    transform: translateY(-2px);
}

.btn-outline-primary-pink {
    border-color: var(--secondary-pink);
    color: var(--secondary-pink);
}

.btn-outline-primary-pink:hover {
    background-color: var(--secondary-pink);
    color: var(--light-gray);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-bg-img {
    z-index: 0;
    filter: brightness(0.5);
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 25, 49, 0.8) 0%, rgba(255, 105, 180, 0.3) 100%);
    z-index: 1;
}

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

/* Trust Badges */
.trust-badge-card {
    background-color: var(--primary-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Rating Criteria */
.criteria-block {
    background-color: var(--light-gray);
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.criteria-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Main Rating Grid */
.rating-card {
    background-color: var(--light-gray);
    color: var(--dark-blue-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.rating-card .card-img-top {
    height: 200px;
    object-fit: contain;
    padding: 15px;
    background-color: #fff;
}

.rating-card .card-img-link {
    display: block;
    border-bottom: 1px solid #eee;
}

.rating-card .star-rating i {
    font-size: 1.1rem;
}

/* About Us */
#about-us img {
    max-height: 400px;
    object-fit: cover;
}

/* User Reviews */
.review-card {
    background-color: var(--light-gray);
    color: var(--dark-blue-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.review-text-content .collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.review-text-content .collapse.show {
    max-height: 500px; /* Adjust as needed */
    transition: max-height 0.5s ease-in;
}

.toggle-review-btn {
    text-decoration: none !important;
}

.toggle-review-btn i {
    transition: transform 0.3s ease;
}

.toggle-review-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Contact Form */
.contact-form-card {
    background-color: var(--light-gray);
    color: var(--dark-blue-text);
}

.contact-form-card .form-control {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
}

.contact-form-card .form-control:focus {
    border-color: var(--secondary-pink);
    box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.25);
}

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

/* Disclaimer Section */
.disclaimer-section {
    background-color: #0A0A0A; /* Dark background */
    padding: 80px 0;
}

.disclaimer-content {
    background: linear-gradient(45deg, var(--primary-blue), #2C003E);
    border: 2px solid var(--secondary-pink);
    color: white;
}

.disclaimer-content h3 {
    color: var(--warning-yellow) !important;
}

.disclaimer-content a {
    color: var(--secondary-pink) !important;
}

/* Footer */
.main-footer {
    background-color: var(--primary-blue);
    color: var(--light-gray);
}

.main-footer .footer-logo-link .logo-img-footer {
    height: 40px;
    width: auto;
}

.main-footer .footer-links a {
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.main-footer .footer-links a:hover {
    color: var(--secondary-pink);
}

.main-footer .text-primary-pink {
    color: var(--secondary-pink) !important;
}

.main-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

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

.footer-logo-item {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    filter: none; /* Ensure no grayscale */
}

.footer-18-plus {
    max-width: 90px;
    filter: none; /* Ensure no grayscale */
}

/* 18+ Age Verification Modal */
#ageVerificationModal .modal-content {
    background-color: var(--primary-blue);
    color: var(--light-gray);
    border-radius: 1rem;
    border: 2px solid var(--secondary-pink);
}

#ageVerificationModal .modal-title {
    color: var(--secondary-pink);
}

#ageVerificationModal .age-confirm-btn {
    background-color: var(--secondary-pink);
    border-color: var(--secondary-pink);
    color: white;
}

#ageVerificationModal .age-deny-btn {
    background-color: var(--dark-blue-text);
    border-color: var(--dark-blue-text);
    color: white;
}

/* Cookie Consent Modal */
#cookieConsentModal .modal-content {
    background-color: var(--primary-blue);
    color: var(--light-gray);
    border-radius: 1rem;
    border: 2px solid var(--secondary-pink);
}

#cookieConsentModal .modal-title {
    color: var(--secondary-pink);
}

#cookieConsentModal .form-check-input:checked {
    background-color: var(--secondary-pink);
    border-color: var(--secondary-pink);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-section {
        min-height: 60vh;
    }
    .navbar-collapse {
        background-color: var(--primary-blue);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.5rem;
    }
    .navbar-nav {
        align-items: center;
    }
    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
    }
    .navbar-nav .nav-link::after {
        left: 10%;
        width: 80%;
    }
    .footer-logos {
        gap: 15px;
    }
    .footer-logo-item {
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.6rem;
        margin: 5px;
    }
    .hero-section {
        min-height: 50vh;
    }
    .disclaimer-content {
        padding: 2rem;
    }
    .review-card .avatar-img {
        width: 50px;
        height: 50px;
    }
    .footer-logos {
        gap: 10px;
    }
    .footer-logo-item {
        max-width: 80px;
    }
}
.dataTrustFrame {
    /* Container padding for top and sides */
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 30px; /* Adding bottom padding for consistency */
    padding-left: 20px;
    /* You might want to add a max-width and margin: 0 auto; for better readability on very wide screens, but not explicitly asked. */
    /* max-width: 1200px; */
    /* margin: 0 auto; */
}

.dataTrustFrame h1 {
    /* Heading 1 styles */
    font-size: 2em; /* Not too large, roughly 32px if base is 16px */
    line-height: 1.2;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: 700; /* Bold */
    color: #fff; /* Dark grey for better readability */
}

.dataTrustFrame h2 {
    /* Heading 2 styles */
    font-size: 1.75em; /* Roughly 28px */
    line-height: 1.3;
    margin-top: 1.3em;
    margin-bottom: 0.7em;
    font-weight: 600; /* Semi-bold */
    color: #fff;
}

.dataTrustFrame h3 {
    /* Heading 3 styles */
    font-size: 1.5em; /* Roughly 24px */
    line-height: 1.4;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    font-weight: 600;
    color: #fff;
}

.dataTrustFrame h4 {
    /* Heading 4 styles */
    font-size: 1.25em; /* Roughly 20px */
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: 500; /* Medium weight */
    color: #fff;
}

.dataTrustFrame h5 {
    /* Heading 5 styles */
    font-size: 1.1em; /* Roughly 17.6px */
    line-height: 1.5;
    margin-top: 0.8em;
    margin-bottom: 0.4em;
    font-weight: 500;
    color: #fff;
}

.dataTrustFrame p {
    /* Paragraph styles */
    font-size: 1em; /* Base font size, typically 16px */
    line-height: 1.6; /* Good for readability */
    margin-bottom: 1em; /* Space between paragraphs */
    color: #fff; /* Slightly lighter grey for body text */
}

.dataTrustFrame ul {
    /* Unordered list styles */
    list-style-type: disc; /* Default bullet points */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 25px; /* Space for bullet points */
    color: #fff;
}

.dataTrustFrame li {
    /* List item styles */
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 0.5em; /* Space between list items */
    color: #fff;
}

#cookieConsentModal{
    z-index: 1054 !important;
}

.navbar-brand, .footer-logos{
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.navbar-brand h2, .footer-logos h2{
    margin: 0;
    font-size: clamp(18px,2.5vw,22px);
    color: #fff;
}

.card-body{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

#about-us, #rating-criteria{
    overflow: hidden !important;
}

.modal-backdrop{
    z-index: 1049 !important;
}