body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a0a2a;
    color: #e0e0e0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #ffffff;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.text-secondary {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-primary {
    color: #bb86fc !important; /* Lighter purple for accents */
}

.text-info {
    color: #8be9fd !important; /* Light blue for links */
}

.text-warning {
    color: #ffc107 !important; /* Yellow for stars */
}

.text-success {
    color: #28a745 !important; /* Green for checkmarks */
}

.btn-primary {
    background-color: #bb86fc;
    border-color: #bb86fc;
    color: #1a0a2a;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #a06dfc;
    border-color: #a06dfc;
    color: #1a0a2a;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    color: #ffffff;
}

.btn-outline-light {
    border-color: #e0e0e0;
    color: #e0e0e0;
    font-weight: 600;
    text-decoration: none;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

a {
    color: #bb86fc;
    text-decoration: none;
}

a:hover {
    color: #a06dfc;
    text-decoration: none;
}

/* Header */
.header-bg {
    background-color: #2a1a3a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-logo {
    height: 40px;
    width: auto;
}

.site-title {
    font-weight: 700;
    letter-spacing: 1px;
}

.header-18-plus {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .overlay-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: clamp(22px, 4vw, 56px);
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {

    .hero-section p {
        font-size: 1rem;
    }

    a.text-info{
        font-size: 12px;
    }
}

/* General Section Styling */
.section-title {
    color: #bb86fc;
    text-shadow: 0 0 10px rgba(187, 134, 252, 0.3);
}

.bg-dark-purple-gradient {
    background: linear-gradient(135deg, #1a0a2a 0%, #2a1a3a 100%);
}

.bg-dark-purple-light {
    background-color: #2a1a3a;
}

/* Rating Grid */
.rating-card {
    background-color: #2a1a3a;
    border: 1px solid #4a2a6a;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.rating-card .card-img-link {
    display: block;
    background-color: #1a0a2a;
    padding: 1rem;
    border-bottom: 1px solid #4a2a6a;
}

.rating-card .rating-logo {
    max-height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

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

.rating-card .rating-stars i {
    font-size: 1.2rem;
}

/* Comparison Table */
.comparison-table {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #4a2a6a;
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    border-color: #4a2a6a;
}

.comparison-table th {
    background-color: #3a2a4a;
    color: #ffffff;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background-color: #3a2a4a;
}

/* Editor's Choice */
.editor-choice-card {
    max-width: 800px;
    background: linear-gradient(135deg, #2a1a3a 0%, #4a2a6a 100%);
    border: 1px solid #bb86fc;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.2);
}

.editor-badge {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}

/* Rating Criteria */
.criteria-block {
    background-color: #3a2a4a;
    border: 1px solid #4a2a6a;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
}

.criteria-block:hover {
    background-color: #4a2a6a;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
}

.faq-accordion .accordion-item {
    border: 1px solid #4a2a6a;
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    color: #ffffff;
    background-color: #2a1a3a;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    padding: 1rem 1.25rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #bb86fc;
    color: #1a0a2a;
    box-shadow: none;
}

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

.faq-accordion .accordion-body {
    background-color: #3a2a4a;
    border-top: 1px solid #4a2a6a;
    padding: 1rem 1.25rem;
}

/* Contact Form */
.form-control-dark {
    background-color: #3a2a4a;
    border: 1px solid #4a2a6a;
    color: #e0e0e0;
}

.form-control-dark:focus {
    background-color: #3a2a4a;
    border-color: #bb86fc;
    color: #e0e0e0;
    box-shadow: 0 0 0 0.25rem rgba(187, 134, 252, 0.25);
}

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

.form-label {
    font-weight: 600;
    color: #ffffff;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #150820;
    padding: 3rem 0;
}

.disclaimer-content {
    background: linear-gradient(135deg, #3a2a4a 0%, #1a0a2a 100%);
    border: 2px solid #ffc107;
    border-radius: 1rem;
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.2);
}

.disclaimer-content h2 {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.disclaimer-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

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

/* Footer */
.footer-bg {
    background-color: #1a0a2a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-org-logo {
    max-width: 90px;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

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

.footer-icon-18plus {
    max-width: 50px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

/* Age Verification Overlay */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-align: center;
}

.age-verification-content {
    background-color: #2a1a3a;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.4);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;

    .d-flex.justify-content-center.gap-3{
        flex-wrap: wrap;
    }
}


.age-verification-content .logo-age-verification {
    height: 80px;
    margin-bottom: 1.5rem;
}

.age-verification-content h2 {
    color: #bb86fc;
}

.age-verification-content p {
    color: #e0e0e0;
}

.age-verification-overlay.hidden {
    display: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9000;
    max-width: 350px;
    transform: translateX(120%);
    transition: transform 0.5s ease-out;
}

.cookie-banner.show {
    transform: translateX(0);
}

.cookie-banner .card {
    background-color: #2a1a3a !important;
    border: 1px solid #4a2a6a;
}

.cookie-banner .card-title {
    color: #bb86fc;
}

.cookie-banner .card-text {
    color: rgba(255, 255, 255, 0.75);
}

/* Cookie Modal */
.modal-content.bg-dark {
    background-color: #2a1a3a !important;
    border: 1px solid #4a2a6a;
}

#cookieModal{
    z-index: 9999999;
}

.modal-header {
    border-bottom: 1px solid #4a2a6a;
}

.modal-footer {
    border-top: 1px solid #4a2a6a;
}

.btn-close-white {
    filter: invert(1);
}

.form-check-label {
    color: #e0e0e0;
}

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

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(187, 134, 252, 0.25);
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}/* Parent container for rights field content */
.rightsFieldUnit {
    margin-top: 2rem; /* Top margin for the container */
    margin-inline: 1.5rem; /* Left and right margins for the container */
}

/* Heading styles within the rights field unit */
.rightsFieldUnit h1 {
    font-size: 1.8rem; /* Relatively small H1 font size */
    margin-top: 2.5rem; /* Top margin for separation */
    margin-bottom: 1rem; /* Bottom margin for separation */
    line-height: 1.2; /* Line height for readability */
    font-weight: 700; /* Bold font weight */
}

.rightsFieldUnit h2 {
    font-size: 1.6rem; /* H2 font size */
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.25;
    font-weight: 700;
}

.rightsFieldUnit h3 {
    font-size: 1.4rem; /* H3 font size */
    margin-top: 1.8rem;
    margin-bottom: 0.7rem;
    line-height: 1.3;
    font-weight: 700;
}

.rightsFieldUnit h4 {
    font-size: 1.2rem; /* H4 font size */
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    line-height: 1.35;
    font-weight: 700;
}

.rightsFieldUnit h5 {
    font-size: 1.1rem; /* H5 font size */
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: 700;
}

/* Paragraph styles within the rights field unit */
.rightsFieldUnit p {
    font-size: 1rem; /* Base font size for paragraphs */
    margin-bottom: 1rem; /* Bottom margin for paragraph separation */
    line-height: 1.6; /* Line height for readability */
}

/* Unordered list styles within the rights field unit */
.rightsFieldUnit ul {
    margin-top: 1rem; /* Top margin for list separation */
    margin-bottom: 1rem; /* Bottom margin for list separation */
    padding-left: 2rem; /* Indentation for list items with bullet points */
    list-style-type: disc; /* Default bullet style */
}

/* List item styles within the rights field unit */
.rightsFieldUnit li {
    margin-bottom: 0.5rem; /* Bottom margin for list item separation */
    line-height: 1.5; /* Line height for readability */
}


.wr{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 767px){
    header{
        .container.d-flex.justify-content-between.align-items-center{
            flex-direction: column;
            text-align: center;
        }
    }
}
.accordion-button::after{
    filter: invert(1);
}