body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a2e; 
    color: #e0e0e0; 
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

a {
    color: #6a8dff; 
    text-decoration: none;
}

a:hover {
    color: #92aeff;
    text-decoration: underline;
}

.btn {
    text-decoration: none !important; 
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.btn-primary {
    background-color: #e94560; 
    border-color: #e94560;
}

.btn-primary:hover {
    background-color: #ff6a80;
    border-color: #ff6a80;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #4a4a6b; 
    border-color: #4a4a6b;
}

.btn-secondary:hover {
    background-color: #6a6a8d;
    border-color: #6a6a8d;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: #e0e0e0;
    color: #e0e0e0;
}

.btn-outline-light:hover {
    background-color: #e0e0e0;
    color: #1a1a2e;
}


.top-warning-banner {
    background-color: #e94560; 
    font-weight: 600;
    font-size: 0.9rem;
}


.hero-section {
    background-image: url('media/uploads/hero-bg_25.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .navbar-brand {
    font-size: 2.2rem;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.hero-section .navbar-brand:hover {
    color: #ffffff;
    text-decoration: none;
}

.hero-section .logo-img {
    height: 40px; 
    width: auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #e94560, #6a8dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: #e0e0e0;
}

.max-w-800 {
    max-width: 800px;
}


.featured-card, .review-card, .editor-rating-card {
    background-color: #2a2a4a; 
    border: 1px solid #3a3a5a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.featured-card:hover, .review-card:hover, .editor-rating-card:hover {
    transform: translateY(-5px);
}

.featured-card .card-header {
    margin: 0 auto;
    background-color: transparent;
    border-bottom: 1px solid #3a3a5a;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.featured-card .card-title {
    color: #ffffff;
    font-size: 1.75rem;
}

.offer-logo {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.offer-logo-link {
    display: inline-block;
}

.featured-card .card-text {
    color: #e0e0e0;
}

.features-list li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.features-list li i {
    color: #6a8dff;
}

.rating-stars {
    color: #ffc107; 
    font-size: 1.2rem;
}

.rating-score {
    color: #e0e0e0;
    font-weight: 600;
}

.bonus-offer {
    color: #e94560;
    font-size: 1.1rem;
}

.license-link {
    color: #6a8dff; 
    text-decoration: underline;
}

.license-link:hover {
    color: #92aeff;
}


.rating-grid-item {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
    min-height: 250px; 
}

.rating-grid-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.rating-grid-item .grid-logo {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.rating-grid-item .hidden-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 42, 74, 0.95); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    border-radius: 0.75rem;
}

.rating-grid-item:hover .hidden-info {
    opacity: 1;
    visibility: visible;
}

.rating-grid-item .hidden-info h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.rating-grid-item .hidden-info p, .rating-grid-item .hidden-info ul li {
    color: #e0e0e0;
    font-size: 0.95rem;
}

.rating-grid-item .hidden-info ul li i {
    color: #6a8dff;
}


.rating-list-group .list-group-item {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.rating-list-group .list-group-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.rating-list-group .list-logo {
    height: 40px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.rating-list-group h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.rating-list-group .text-white-50 {
    color: rgba(224, 224, 224, 0.75) !important;
}

.rating-list-group .badge {
    background-color: #3a3a5a !important;
    color: #e0e0e0;
    padding: 0.5em 0.8em;
    font-weight: 400;
}

.rating-list-group .badge i {
    color: #6a8dff;
}

.inline-anchor-link {
    color: #6a8dff;
    text-decoration: underline;
}

.inline-anchor-link:hover {
    color: #92aeff;
}


.comparison-table-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #3a3a5a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.table-dark {
    --bs-table-bg: #2a2a4a;
    --bs-table-striped-bg: #3a3a5a;
    --bs-table-border-color: #4a4a6b;
    --bs-table-color: #e0e0e0;
}

.table-bordered {
    border-color: #4a4a6b;
}

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

.comparison-table-wrapper thead th {
    background-color: #1a1a2e;
    color: #ffffff;
    font-weight: 700;
    vertical-align: middle;
}

.comparison-table-wrapper tbody th {
    color: #ffffff;
    font-weight: 600;
}

.table-logo {
    height: 80px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.table-logo-link {
    line-height: 1;
}


.review-card {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #6a8dff;
}

.review-text {
    font-style: italic;
}


.editor-rating-card {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.editor-rating-card h3 {
    font-size: 1.75rem;
}

.editor-rating-card h5.text-success {
    color: #28a745 !important;
}

.editor-rating-card h5.text-danger {
    color: #dc3545 !important;
}

.editor-rating-card ul {
    padding-left: 1.5rem;
}

.editor-rating-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.4rem;
}

.editor-rating-card ul li .bi-dot {
    position: absolute;
    left: 0;
    top: 0.2em;
    font-size: 1.5em;
    line-height: 1;
    color: #6a8dff;
}

.editor-rating-card .text-success .bi-check-circle-fill {
    color: #28a745;
}

.editor-rating-card .text-danger .bi-x-circle-fill {
    color: #dc3545;
}


.disclaimer-block {
    background-color: #1a1a2e;
}

.disclaimer-content {
    background-color: #2a2a4a;
    border: 2px solid #e94560; 
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}

.disclaimer-title {
    color: #e94560;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.disclaimer-title i {
    font-size: 2.5rem;
    color: #e94560;
}

.disclaimer-content p, .disclaimer-content ul li {
    color: #e0e0e0;
}

.disclaimer-content .text-info {
    color: #6a8dff !important;
}


footer {
    background-color: #1a1a2e !important;
    border-top: 1px solid #3a3a5a;
}

footer .footer-links a {
    color: #e0e0e0;
    font-size: 0.95rem;
    transition: color 0.2s ease-in-out;
}

footer .footer-links a:hover {
    color: #6a8dff;
    text-decoration: underline;
}

footer .footer-disclaimer p {
    font-size: 0.85rem;
    color: #b0b0b0;
}

footer .footer-logos {
    gap: 1.5rem; 
}

.footer-org-logo {
    height: auto;
    max-width: 120px; 
    width: auto;
    object-fit: contain;
    filter: brightness(0.8); 
    transition: filter 0.2s ease-in-out;
}

.footer-org-logo:hover {
    filter: brightness(1); 
}

.footer-org-logo-18plus {
    height: 40px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    filter: none; 
}

footer .text-info {
    color: #6a8dff !important;
}

footer .text-white-50 {
    color: rgba(224, 224, 224, 0.75) !important;
}


.age-modal-content {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.age-modal-content .modal-header {
    border-bottom: none;
}

.age-modal-content .modal-title {
    color: #e94560;
    font-weight: 700;
}


.cookie-banner {
    z-index: 1050;
    border-top: 1px solid #3a3a5a;
}

.cookie-banner .text-info {
    color: #6a8dff !important;
}


.modal-content.bg-dark {
    background-color: #2a2a4a !important;
    border: 1px solid #3a3a5a;
    border-radius: 1rem;
}

.modal-content{
    align-items: center;
}

.modal-body img{
    width: 80px;
}

.modal-header .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%); 
}

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


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

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

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

    .rating-list-group .list-group-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .rating-list-group .list-group-item p {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .rating-list-group .d-flex.flex-wrap.gap-2 {
        justify-content: flex-start;
    }

    .disclaimer-title {
        font-size: 1.5rem;
    }

    .disclaimer-title i {
        font-size: 2rem;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0 !important;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
    }

    .footer-logos {
        gap: 1rem;
    }

    .footer-org-logo {
        max-width: 80px;
    }

    .footer-org-logo-18plus {
        height: 30px;
    }
}

.lawMatrixNode {
    padding: 3rem 1.5rem; 
    max-width: 1200px; 
    margin: 0 auto; 
}


.lawMatrixNode h1 {
    font-size: 2.2rem; 
    line-height: 1.2; 
    margin-bottom: 1.2rem; 
    color: #ffffff; 
    font-weight: 700; 
}


.lawMatrixNode h2 {
    font-size: 1.8rem; 
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}


.lawMatrixNode h3 {
    font-size: 1.5rem; 
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 600;
}


.lawMatrixNode h4 {
    font-size: 1.3rem; 
    line-height: 1.5;
    margin-bottom: 0.7rem;
    color: #ffffff;
    font-weight: 500;
}


.lawMatrixNode h5 {
    font-size: 1.1rem; 
    line-height: 1.6;
    margin-bottom: 0.6rem;
    color: #ffffff;
    font-weight: 500;
}


.lawMatrixNode p {
    font-size: 1rem; 
    line-height: 1.7; 
    margin-bottom: 1rem; 
    color: #e0e0e0; 
}


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


.lawMatrixNode li {
    font-size: 1rem; 
    line-height: 1.6; 
    margin-bottom: 0.5rem; 
    color: #e0e0e0; 
}


@media (max-width: 767.98px) {
    .lawMatrixNode {
        padding: 2rem 1rem; 
    }

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

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

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

    .lawMatrixNode h4 {
        font-size: 1.1rem;
    }

    .lawMatrixNode h5 {
        font-size: 1rem;
    }

    .lawMatrixNode p,
    .lawMatrixNode li {
        font-size: 0.95rem; 
    }

    .lawMatrixNode ul {
        padding-left: 1rem; 
    }
}
