body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    padding-top: 130px; 
}

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

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


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #343a40; 
}

::-webkit-scrollbar-thumb {
    background: #007bff; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3; 
}


#mainHeader {
    background-color: #1a202c !important; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1030;
}

#mainHeader .navbar-brand span {
    color: #ffffff;
    font-size: 1.8rem;
}
@media (max-width: 767.98px) {
    #mainHeader .navbar-brand span {
    font-size: 1.3rem;
}
}

#mainHeader .nav-link {
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}

#mainHeader .nav-link:hover {
    color: #007bff; 
}

.bg-warning {
    background-color: #ffc107 !important;
    color: #343a40 !important;
}


.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: -20px;
}

.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 .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.8rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

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

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
}


.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.bg-dark .section-title {
    color: #ffffff;
}

.bg-dark .section-title::after {
    background-color: #ffc107;
}


.platform-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

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

.platform-card .platform-logo {
    
    height: auto;
    object-fit: contain;
    margin: auto;
    display: block;
    padding: 15px;
    border-radius: 10px;
}

.platform-card .card-body {
    padding: 25px;
}

.platform-card .card-title {
    color: #1a202c;
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.rating-stars .bi-star-fill, .rating-stars .bi-star-half {
    color: #ffc107;
}

.features-list li {
    margin-bottom: 8px;
    color: #555;
}

.features-list .bi-check-circle-fill {
    color: #28a745;
}


#why-trust-us {
    background-color: #1a202c !important;
    position: relative;
    overflow: hidden;
}

#why-trust-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('pictures/media/geometric-pattern-dark_2.webp'); 
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

#why-trust-us .container > .row {
    position: relative;
    z-index: 1;
}

#why-trust-us img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}


.comparison-table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.comparison-table thead th {
    border-bottom: 2px solid #007bff;
    background-color: #1a202c;
    color: #ffffff;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comparison-table thead th:hover {
    background-color: #007bff;
}

.comparison-table tbody tr {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table tbody td, .comparison-table tbody th {
    padding: 15px;
    vertical-align: middle;
    border-top: none;
    text-align: center;
}

.comparison-table .comparison-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
}


#rating-criteria .accordion-item {
    background-color: #2a303c !important;
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

#rating-criteria .accordion-button {
    background-color: #2a303c !important;
    color: #ffffff;
    font-size: 1.15rem;
    padding: 18px 25px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#rating-criteria .accordion-button:not(.collapsed) {
    background-color: #007bff !important;
    color: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

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

#rating-criteria .accordion-body {
    background-color: #3a404c !important;
    color: #e0e0e0;
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#rating-criteria .accordion-button::after {
    filter: invert(1);
}


.review-card {
    border-radius: 15px;
    padding: 20px;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #007bff;
}

.review-text-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    transition: max-height 0.5s ease-out;
    max-height: 100px; 
}

.review-text-content.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
}

.read-more-btn {
    text-decoration: none;
    font-weight: 600;
    padding: 0;
}

.read-more-btn:hover {
    text-decoration: underline;
}


.disclaimer-section {
    background-color: #2c3e50; 
    color: #ffffff;
    padding: 60px 0;
}

.disclaimer-content {
    background-color: #34495e; 
    border: 2px solid #e74c3c; 
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.disclaimer-content h3, .disclaimer-content h4 {
    color: #e74c3c; 
}

.disclaimer-content h4 {
    color: #3498db; 
}

.disclaimer-content .bi-exclamation-triangle-fill {
    color: #e74c3c;
    font-size: 1.5em;
}

.disclaimer-content .bi-dot, .disclaimer-content .bi-telephone-fill, .disclaimer-content .bi-globe, .disclaimer-content .bi-search {
    color: #2ecc71; 
}

.disclaimer-content a {
    color: #ffffff;
    text-decoration: underline;
}

.disclaimer-content a:hover {
    color: #3498db;
}


footer {
    background-color: #1a202c !important;
    color: #e0e0e0;
}

footer .navbar-brand span {
    color: #ffffff;
}

footer .list-unstyled a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

footer .list-unstyled a:hover {
    color: #007bff;
}

.footer-logos {
    gap: 25px;
}

.footer-img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.footer-img-18plus {
    max-width: 60px;
    height: auto;
    object-fit: contain;
}


#ageVerificationModal .modal-content {
    background-color: #1a202c !important;
    border-radius: 15px;
    padding: 20px;
}

#ageVerificationModal .modal-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
}

#ageVerificationModal .modal-body p {
    color: #e0e0e0;
}

#ageVerificationModal .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    font-weight: 600;
}

#ageVerificationModal .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    font-weight: 600;
}

#ageVerificationModal .text-warning {
    color: #ffc107 !important;
}


.cookie-banner {
    background-color: #1a202c;
    z-index: 1040;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out;
}

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

.cookie-banner .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 600;
    border-radius: 5px;
    padding: 5px 15px;
}

.cookie-banner .btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    padding: 5px 15px;
}


#cookieCustomizationModal .modal-content {
    background-color: #1a202c !important;
    border-radius: 15px;
}

#cookieCustomizationModal .modal-title {
    color: #ffffff;
}

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

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


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

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}
.animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}
.animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}
.animate-on-scroll:nth-child(4) {
    transition-delay: 0.4s;
}
.animate-on-scroll:nth-child(5) {
    transition-delay: 0.5s;
}


@media (max-width: 991.98px) {
    body {
        padding-top: 100px;
    }

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

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

    .platform-card .platform-logo {
        
    }

    .platform-card .card-title {
        font-size: 1.5rem;
    }

    .disclaimer-content {
        padding: 20px;
    }

    .disclaimer-content h3 {
        font-size: 1.8rem;
    }

    .footer-logos {
        justify-content: center;
        gap: 15px;
    }

    .footer-img {
        max-width: 90px;
    }

    .footer-img-18plus {
        max-width: 50px;
    }

    .cookie-banner .container {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 100px;
    }

    .hero-section {
        min-height: 450px;
        padding-top: 150px !important;
    }

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

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

    .platform-card .row > div {
        text-align: center !important;
    }

    .platform-card .platform-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .platform-card .card-body {
        padding-top: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    #why-trust-us img {
        margin-bottom: 20px;
    }

    .disclaimer-content h3 {
        font-size: 1.5rem;
    }

    .disclaimer-content h4 {
        font-size: 1.2rem;
    }

    .footer-logos {
        justify-content: center;
        gap: 10px;
    }

    .footer-img {
        max-width: 80px;
    }

    .footer-img-18plus {
        max-width: 40px;
    }

    .cookie-banner p {
        font-size: 0.8rem;
    }
}


.policyOrbitalShell {
    
    margin-top: 3rem; 
    
    padding-left: 2rem;
    padding-right: 2rem;
    
     
    
    
    
}


.policyOrbitalShell h1 {
    font-size: 2.2rem; 
    font-weight: 700; 
    line-height: 1.2; 
    margin-top: 2.5rem; 
    margin-bottom: 1rem; 
}


.policyOrbitalShell h2 {
    font-size: 1.8rem; 
    font-weight: 600; 
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}


.policyOrbitalShell h3 {
    font-size: 1.5rem; 
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.8rem;
    margin-bottom: 0.7rem;
}


.policyOrbitalShell h4 {
    font-size: 1.3rem; 
    font-weight: 500; 
    line-height: 1.5;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}


.policyOrbitalShell h5 {
    font-size: 1.1rem; 
    font-weight: 500;
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}


.policyOrbitalShell p {
    font-size: 1rem; 
    line-height: 1.6; 
    margin-bottom: 1rem; 
}


.policyOrbitalShell ul {
    list-style: disc; 
    margin-top: 1rem; 
    margin-bottom: 1rem; 
    padding-left: 1.5rem; 
}


.policyOrbitalShell li {
    font-size: 1rem; 
    line-height: 1.6; 
    margin-bottom: 0.5rem; 
}
