:root {
    --primary-raspberry: #E30B5C; 
    --primary-raspberry-dark: #B8094A;
    --primary-raspberry-light: #F05C8C;
    --text-dark: #333333;
    --text-light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-dark: #212529;
    --star-gradient-start: #FFD700; 
    --star-gradient-end: #FFA500; 
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
}
section {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}


.top-warning-banner {
    background-color: #dc3545; 
    color: var(--text-light);
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.top-warning-banner p {
    margin-bottom: 0;
}


.header-section .navbar-brand .logo {
    height: 40px; 
}

.header-section .navbar-brand .site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-raspberry);
}

.header-section .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.header-section .nav-link:hover,
.header-section .nav-link.active {
    color: var(--primary-raspberry);
}


.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--text-light);
    padding: 100px 0;
}

.hero-bg-image {
    filter: brightness(0.5); 
    object-position: center;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p.lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-raspberry);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-raspberry-light);
    margin: 10px auto 0;
    border-radius: 2px;
}


.rating-list-section {
    padding: 80px 0;
}

.rating-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.rating-card .card-img-top {
    height:150px;  
    object-fit: contain;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

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

.rating-card .card-title {
    font-size: 1.75rem;
    color: var(--primary-raspberry);
    margin-bottom: 1rem;
}

.rating-stars {
    color: var(--star-gradient-start);
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating-stars i {
    background: linear-gradient(to right, var(--star-gradient-start), var(--star-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 2px;
}

.rating-card .features-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.rating-card .license-link {
    color: #dc3545; 
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.rating-card .license-link:hover {
    color: var(--primary-raspberry-dark);
}

.rating-card .btn-primary {
    background-color: var(--primary-raspberry);
    border-color: var(--primary-raspberry);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
    text-decoration: none; 
}

.rating-card .btn-primary:hover {
    background-color: var(--primary-raspberry-dark);
    border-color: var(--primary-raspberry-dark);
    transform: translateY(-2px);
}


.about-section {
    padding: 80px 0;
}

.about-section h3 {
    color: var(--primary-raspberry);
    font-size: 1.75rem;
    margin-top: 2rem;
}

.about-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.about-list i {
    color: var(--primary-raspberry);
}


.user-reviews-section {
    padding: 80px 0;
}

.review-card {
    border: none;
    border-radius: 15px;
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--primary-raspberry-light);
}

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

.report-abuse-btn {
    color: #6c757d;
    font-size: 0.875rem;
    text-decoration: none;
}

.report-abuse-btn:hover {
    color: var(--primary-raspberry);
    text-decoration: underline;
}


.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-button {
    background-color: var(--primary-raspberry-light);
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-raspberry);
    color: var(--text-light);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

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

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.25rem;
    background-color: var(--bg-light);
    border-top: 1px solid #e0e0e0;
}


.disclaimer-block {
    padding: 60px 0;
    background-color: #f8d7da; 
    color: #721c24; 
}

.disclaimer-content {
    background-color: #ffffff;
    border: 2px solid #dc3545; 
    padding: 2rem;
    border-radius: 10px;
}

.disclaimer-title {
    color: #dc3545; 
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-title i {
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

.disclaimer-block p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.disclaimer-block ul li {
    font-size: 0.95rem;
}

.disclaimer-block a {
    color: #dc3545;
    font-weight: 500;
}

.disclaimer-block a:hover {
    color: #b02a37;
}


.footer-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-section .footer-brand .logo {
    height: 35px;
}

.footer-section .footer-brand .site-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-raspberry-light);
}

.footer-section h5 {
    color: var(--primary-raspberry-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section .footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    padding: 0.2rem 0;
    display: inline-block;
}

.footer-section .footer-links li a:hover {
    color: var(--primary-raspberry-light);
}

.footer-section .btn-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section .btn-link:hover {
    color: var(--primary-raspberry-light);
}

.footer-logos {
    gap: 15px; 
}

.footer-logo {
    max-width: 120px; 
    height: auto; 
    filter: none; 
    transition: transform 0.2s ease;
}

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

.footer-logo-18plus {
    max-width: 60px; 
    filter: saturate(200%) hue-rotate(-20deg); 
}


.btn-primary {
    background-color: var(--primary-raspberry);
    border-color: var(--primary-raspberry);
    text-decoration: none; 
}

.btn-primary:hover {
    background-color: var(--primary-raspberry-dark);
    border-color: var(--primary-raspberry-dark);
}

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

.btn-secondary:hover {
    background-color: #5c636a;
    border-color: #5c636a;
}


#ageVerificationModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#ageVerificationModal .modal-header {
    background-color: var(--primary-raspberry);
    color: var(--text-light);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: none;
}

#ageVerificationModal .modal-title {
    font-weight: 600;
}

#ageVerificationModal .modal-body {
    padding: 2rem;
    font-size: 1.1rem;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-light);
    z-index: 1070; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none; 
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.cookie-banner.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-banner a {
    color: var(--primary-raspberry-light);
    font-weight: 500;
}

.cookie-banner .btn-sm {
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
}



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

.animate__fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate__fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate__fade-in-up.animated,
.animate__fade-in-left.animated,
.animate__fade-in-right.animated {
    opacity: 1;
    transform: translateY(0);
    transform: translateX(0);
}


.animate__delay-1s { transition-delay: 0.1s; }
.animate__delay-2s { transition-delay: 0.2s; }
.animate__delay-3s { transition-delay: 0.3s; }
.animate__delay-4s { transition-delay: 0.4s; }
.animate__delay-5s { transition-delay: 0.5s; }


@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

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

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

    .header-section .navbar-brand .site-name {
        font-size: 1.3rem;
    }

    .footer-logos {
        justify-content: center;
    }

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

.lawMatrixNode {
    padding-top: 3rem; 
    padding-left: 1.5rem; 
    padding-right: 1.5rem; 
    
    max-width: 960px; 
    margin-left: auto;
    margin-right: auto;
}


.lawMatrixNode h1 {
    font-size: 2.25rem; 
    margin-top: 2rem; 
    margin-bottom: 1rem; 
    line-height: 1.2; 
    font-weight: 700; 
    color: var(--text-dark); 
}


.lawMatrixNode h2 {
    font-size: 1.75rem; 
    margin-top: 1.75rem; 
    margin-bottom: 0.8rem; 
    line-height: 1.3; 
    font-weight: 600; 
    color: var(--text-dark); 
}


.lawMatrixNode h3 {
    font-size: 1.5rem; 
    margin-top: 1.5rem; 
    margin-bottom: 0.7rem; 
    line-height: 1.4; 
    font-weight: 600; 
    color: var(--text-dark); 
}


.lawMatrixNode h4 {
    font-size: 1.25rem; 
    margin-top: 1.25rem; 
    margin-bottom: 0.6rem; 
    line-height: 1.5; 
    font-weight: 500; 
    color: var(--text-dark); 
}


.lawMatrixNode h5 {
    font-size: 1.1rem; 
    margin-top: 1rem; 
    margin-bottom: 0.5rem; 
    line-height: 1.5; 
    font-weight: 500; 
    color: var(--text-dark); 
}


.lawMatrixNode p {
    font-size: 1rem; 
    margin-bottom: 1rem; 
    line-height: 1.6; 
    color: var(--text-dark); 
}


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


.lawMatrixNode li {
    font-size: 1rem; 
    margin-bottom: 0.5rem; 
    line-height: 1.6; 
    color: var(--text-dark); 
}


@media (max-width: 768px) {
    .lawMatrixNode {
        padding-left: 1rem; 
        padding-right: 1rem; 
    }

    .lawMatrixNode h1 {
        font-size: 1.8rem; 
    }

    .lawMatrixNode h2 {
        font-size: 1.5rem; 
    }

    .lawMatrixNode h3 {
        font-size: 1.3rem; 
    }
}
