/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light gray text */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from AOS */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #FF8C00; /* Orange for headings */
}

.text-orange {
    color: #FF8C00 !important;
}

.bg-dark {
    background-color: #1a1a1a !important; /* Slightly lighter dark for header/footer */
}

.bg-dark-alt {
    background-color: #222222 !important; /* Alternative dark for blocks */
}

.text-light-gray {
    color: #cccccc !important;
}

.btn-orange {
    background-color: #FF8C00;
    border-color: #FF8C00;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none; /* Remove underline */
}

.btn-orange:hover {
    background-color: #e67e00;
    border-color: #e67e00;
    color: #1a1a1a;
}

.btn-outline-orange {
    color: #FF8C00;
    border-color: #FF8C00;
    text-decoration: none; /* Remove underline */
}

.btn-outline-orange:hover,
.btn-outline-orange.active {
    background-color: #FF8C00;
    color: #1a1a1a;
    border-color: #FF8C00;
}

.form-control.bg-secondary {
    background-color: #333333 !important;
    color: #e0e0e0 !important;
    border: 1px solid #555555;
}

.form-control.bg-secondary::placeholder {
    color: #aaaaaa;
}

.form-control.bg-secondary:focus {
    border-color: #FF8C00;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
}

.form-check-input.bg-orange {
    background-color: #FF8C00;
    border-color: #FF8C00;
}

.form-check-input.bg-orange:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
}

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

/* Header */
header .navbar-brand img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(87%) saturate(706%) hue-rotate(357deg) brightness(101%) contrast(101%); /* Orange tint */
}

/* Hero Section */
.hero-section {
    background-image: url(visuals/graphics/hero-background_90.jpg); /* Background image for hero */
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

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

.hero-section .list-unstyled li {
    font-size: 1.1rem;
}

/* Featured Offers Slider */
.carousel-item img {
    height: 400px;
    object-fit: cover;
    filter: brightness(0.6); /* Darken images */
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 8px;
    bottom: 27%;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(255, 140, 0, 0.7); /* Orange controls */
    border-radius: 50%;
    padding: 1rem;
}

.carousel-indicators [data-bs-target] {
    background-color: #FF8C00;
}

/* Rating Grid */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2) !important;
}

.card-img-top {
    height: 180px; /* Fixed height for card images */
    object-fit: contain; /* Ensure logo fits */
    background-color: #333333; /* Dark background for logos */
    padding: 15px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.card-img-link {
    display: block;
    height: 180px; /* Ensure link covers image area */
}

.border-orange-light {
    border: 1px solid rgba(255, 140, 0, 0.3) !important;
}

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

.badge.bg-orange {
    background-color: #FF8C00 !important;
    color: #1a1a1a !important;
    font-weight: 600;
}

.btn-orange-selected {
    background-color: #FF8C00;
    border-color: #FF8C00;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none; /* Remove underline */
}

.btn-orange-selected:hover {
    background-color: #e67e00;
    border-color: #e67e00;
    color: #1a1a1a;
}

/* Comparison Table */
#comparisonSection {
    transition: all 0.5s ease-in-out;
}

#comparisonTable th, #comparisonTable td {
    vertical-align: middle;
    border-color: #333333;
}

#comparisonTable thead th {
    background-color: #FF8C00;
    color: #1a1a1a;
    font-weight: 700;
}

#comparisonTable tbody tr:nth-of-type(odd) {
    background-color: #2a2a2a;
}

#comparisonTable tbody tr:nth-of-type(even) {
    background-color: #222222;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #0d0d0d; /* Even darker background for separation */
    border-top: 5px solid #FF8C00; /* Strong orange border */
    border-bottom: 5px solid #FF8C00;
}

.disclaimer-block h3 {
    color: #FF8C00;
    font-weight: 700;
}

.disclaimer-block .bi-exclamation-triangle-fill {
    color: #FF8C00;
}

/* Footer */
footer {
    border-top: 1px solid #333333;
}

footer .footer-logos-row {
    padding-top: 20px;
    border-top: 1px solid #333333;
    margin-top: 20px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px; /* Uniform height for logos */
    margin: 5px 10px; /* Spacing between logos */
}

.footer-logo {
    max-width: 120px; /* Limit width */
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.8); /* Slightly dim logos */
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1); /* Brighten on hover */
}

.footer-logo-18plus {
    width: 60px;
    height: 60px;
    background-color: #dc3545; /* Red background for 18+ */
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.footer-logo-18plus-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: invert(1);
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050; /* Above modals */
    border-bottom: 1px solid #FF8C00;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.cookie-banner p {
    flex-grow: 1;
}

.cookie-banner .btn {
    white-space: nowrap;
}

/* Age Verification Modal */
#ageVerificationModal .modal-content {
    border: 2px solid #FF8C00;
}

#ageVerificationModal .modal-header {
    background-color: #222222;
}

#ageVerificationModal .modal-body {
    background-color: #1a1a1a;
}

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

/* Utility for removing underline on buttons */
.btn {
    text-decoration: none !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner p {
        text-align: center;
        margin-bottom: 10px !important;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn {
        flex-grow: 1;
        margin: 0 5px 10px 5px !important;
    }

    .hero-section {
        min-height: 400px;
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .carousel-item img {
        height: 250px;
    }

    .carousel-caption {
        bottom: 20%;
        padding: 0.5rem 1rem;
    }

    .carousel-caption h3 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
    }

    .carousel-caption .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .footer-logo-link {
        margin: 5px;
    }

    .footer-logo {
        max-width: 100px;
    }

    .btn-group .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .disclaimer-block h3 {
        font-size: 1.25rem;
    }
    .disclaimer-block h4 {
        font-size: 1.2rem;
    }

   
}
/* Policy Scope Wrapper Styles */
.policyScopeWrap {
    padding-top: 3rem; /* Top padding for the content area */
    padding-bottom: 3rem; /* Bottom padding for the content area */
    padding-left: 1.5rem; /* Left padding for the content area */
    padding-right: 1.5rem; /* Right padding for the content area */
    max-width: 960px; /* Max width to keep content readable */
    margin-left: auto; /* Center the content horizontally */
    margin-right: auto; /* Center the content horizontally */
}

/* Heading Styles within Policy Scope */
.policyScopeWrap h1 {
    font-size: 2.2rem; /* Moderate size for main heading */
    margin-top: 1.8em; /* Spacing above heading */
    margin-bottom: 0.8em; /* Spacing below heading */
    line-height: 1.2; /* Tighter line height for headings */
    color: #FF8C00; /* Orange color for headings, consistent with previous styles */
}

.policyScopeWrap h2 {
    font-size: 1.8rem; /* Size for sub-headings */
    margin-top: 1.6em; /* Spacing above heading */
    margin-bottom: 0.7em; /* Spacing below heading */
    line-height: 1.3;
    color: #FF8C00;
}

.policyScopeWrap h3 {
    font-size: 1.5rem; /* Size for minor headings */
    margin-top: 1.4em;
    margin-bottom: 0.6em;
    line-height: 1.4;
    color: #FF8C00;
}

.policyScopeWrap h4 {
    font-size: 1.3rem; /* Size for sub-minor headings */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.5;
    color: #FF8C00;
}

.policyScopeWrap h5 {
    font-size: 1.1rem; /* Smallest heading size */
    margin-top: 1em;
    margin-bottom: 0.4em;
    line-height: 1.6;
    color: #FF8C00;
}

/* Paragraph Styles within Policy Scope */
.policyScopeWrap p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1em; /* Spacing between paragraphs */
    line-height: 1.7; /* Increased line height for readability on dark backgrounds */
    color: #e0e0e0; /* Light gray text color */
}

/* Unordered List Styles within Policy Scope */
.policyScopeWrap ul {
    list-style-type: disc; /* Default disc bullet point */
    margin-top: 1em; /* Spacing above the list */
    margin-bottom: 1em; /* Spacing below the list */
    padding-left: 25px; /* Indentation for list items */
    color: #e0e0e0;
}

/* List Item Styles within Policy Scope */
.policyScopeWrap ul li {
    font-size: 1rem; /* Standard list item font size */
    margin-bottom: 0.5em; /* Spacing between list items */
    line-height: 1.6; /* Line height for list items */
    color: #e0e0e0;
}

/* Responsive adjustments for policyScopeWrap */
@media (max-width: 767.98px) {
    .policyScopeWrap {
        padding-left: 1rem; /* Reduced side padding on smaller screens */
        padding-right: 1rem; /* Reduced side padding on smaller screens */
    }

    .policyScopeWrap h1 {
        font-size: 1.8rem; /* Adjust heading sizes for mobile */
    }
    .policyScopeWrap h2 {
        font-size: 1.5rem;
    }
    .policyScopeWrap h3 {
        font-size: 1.3rem;
    }
    .policyScopeWrap h4 {
        font-size: 1.1rem;
    }
    .policyScopeWrap h5 {
        font-size: 1rem;
    }
}

@media (max-width: 540px) {
 .carousel-item img{
        object-fit: contain;
    }
}




#cookieBanner{
    position: fixed;
    width: 100%;
    z-index: 99999;
    bottom: 0;
    left: 0;
}