
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.container {
    width: 90%;
    max-width: 1200px;
}

.section {
    padding: 60px 0;
}

.mod-discl-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

nav a {
    color: #887c7c;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #007bff; 
    background: linear-gradient(45deg, #007bff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 0 10px;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #007bff, #00c6ff) 1;
}

.py-1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-3 {
    margin-top: 30px !important;
}


.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}


.gradient-btn {
    background: linear-gradient(45deg, #007bff, #00c6ff);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    text-decoration: none !important;
}

.gradient-btn:hover {
    background: linear-gradient(45deg, #0056b3, #0099cc);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.red-warning-bar {
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
}


header {
    position: relative;
    height: 70vh; 
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

header .navbar-fixed {
    z-index: 999;
}

nav {
    background-color: rgba(0, 0, 0, 0.6) !important; 
    box-shadow: none;
}

nav .brand-logo, .brand-logo-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    h2 {
        color: #263238;
        font-size: 22px;
        font-weight: 900;
        margin: 0;
    }
}


.brand-logo-footer h2 {
    color: #0056b3 !important;
}

nav .brand-logo .logo-img {
    height: 45px;
    margin-top: 10px;
}

nav ul a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul a:hover {
    color: #00c6ff;
    background-color: transparent;
}

.sidenav {
    background-color: #fff;
}

.sidenav li a {
    color: #333;
    font-weight: 500;
}

.sidenav li a:hover {
    background-color: #e0e0e0;
}


.hero-banner {
    flex-grow: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}


.rating-card {
    height: 100%; 
    display: flex;
    flex-direction: column;
    border: 1px solid;
    border-image: linear-gradient(to right, #e0f2f7, #bbdefb) 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.rating-card .card-image img {
    max-height: 200px;
    object-fit: contain;
    width: 100%;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.rating-card .card-content {
    flex-grow: 1;
    padding-bottom: 0;
}

.rating-card .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.rating-stars .star-icon {
    color: #ffc107;
    font-size: 1.2rem;
    vertical-align: middle;
}

.rating-card .features-list {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}

.rating-card .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.rating-card .features-list li .material-icons {
    font-size: 1rem;
    margin-right: 5px;
    color: #28a745;
}

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

.rating-card .license-link:hover {
    color: #c82333;
}

.rating-card .card-action {
    padding: 16px 24px;
    border-top: 1px solid #eee;
    text-align: right;
}

.rating-card .card-action .btn {
    text-decoration: none !important;
}

.row.flex-stretch {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  row-gap: 20px;
}

.bono-txt {
    font-size: 18px;
    font-weight: 800;
}


@media only screen and (min-width: 993px) {
    .rating-card.horizontal {
        display: flex;
        flex-direction: row;
    }
    .rating-card.horizontal .card-image {
        min-width: 250px;
        max-width: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #eee;
        padding: 20px;
    }
    .rating-card.horizontal .card-image img {
        max-height: 150px;
        width: auto;
        border-bottom: none;
    }
    .rating-card.horizontal .card-stacked {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .rating-card.horizontal .card-content {
        flex-grow: 1;
    }
}

@media only screen and (max-width: 992px) {
    .rating-card .card-image img {
        height: 180px;
        object-fit: contain;
        width: 100%;
        display: block;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }
}


.about-us-img {
    border-radius: 8px;
    border: 3px solid;
    border-image: linear-gradient(45deg, #007bff, #00c6ff) 1;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.about-features {
    margin-top: 20px;
    list-style: none;
    padding-left: 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.about-features li .material-icons {
    margin-right: 10px;
    font-size: 1.5rem;
}


.criteria-card {
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid;
    border-image: linear-gradient(to right, #e0f2f7, #bbdefb) 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.criteria-card .card-content {
    flex-grow: 1;
}

.criteria-card .material-icons {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.criteria-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 10px;
}


.review-card {
    height: 100%; 
    display: flex;
    flex-direction: column;
    border: 1px solid;
    border-image: linear-gradient(to right, #e0f2f7, #bbdefb) 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.review-card .card-content {
    flex-grow: 1;
}

.review-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.review-card .rating-stars .star-icon {
    color: #ffc107;
    font-size: 1rem;
}

.review-card .review-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}


.faq-collapsible {
    border: 1px solid;
    border-image: linear-gradient(to right, #e0f2f7, #bbdefb) 1;
    border-radius: 8px;
    overflow: hidden;
}

.faq-collapsible li {
    border-bottom: 1px solid #e0e0e0;
}

.faq-collapsible li:last-child {
    border-bottom: none;
}

.faq-collapsible .collapsible-header {
    font-weight: 500;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    transition: background-color 0.3s ease;
}

.faq-collapsible .collapsible-header:hover {
    background-color: #e3f2fd; 
}

.faq-collapsible .collapsible-header i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.faq-collapsible .collapsible-body {
    padding: 20px;
    background-color: #fcfcfc;
    border-top: 1px solid #e0e0e0;
}


.disclaimer-block {
    background-color: #fff3cd; 
    border: 1px solid #ffeeba; 
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.disclaimer-block .disclaimer-content {
    text-align: center;
}

.disclaimer-block .disclaimer-title {
    color: #856404; 
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-block .disclaimer-title i {
    font-size: 2.5rem;
    margin-right: 10px;
    color: #ffc107;
}

.disclaimer-block p {
    font-size: 1.1rem;
    color: #665201;
    margin-bottom: 15px;
}

.disclaimer-block p strong {
    font-weight: 700;
    color: #856404;
}

.disclaimer-block a {
    color: #007bff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

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


.page-footer {
    padding-top: 20px;
    background-color: #263238 !important; 
    color: #fff;
}

.page-footer .footer-copyright {
    background-color: #1a2327 !important; 
    padding: 15px 0;
    font-size: 0.9rem;
}

.page-footer .brand-logo-footer .logo-img-footer {
    height: 40px;
    margin-bottom: 10px;
}

.page-footer h5 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.page-footer p {
    margin-bottom: 10px;
}

.page-footer ul li a {
    color: #cfd8dc; 
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.page-footer ul li a:hover {
    color: #00c6ff;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-logos .footer-img {
    max-width: 120px; 
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.footer-logos .footer-img:hover {
    opacity: 0.8;
}

.footer-logos .icon-18-plus {
    max-width: 80px; 
    filter: brightness(1.2) saturate(1.5) hue-rotate(-20deg); 
}




#age-verification-modal {
    max-width: 500px;
    border-radius: 8px;
}

#age-verification-modal h4 {
    color: #007bff;
    font-weight: 700;
    margin-bottom: 20px;
}

#age-verification-modal p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

#age-verification-modal .modal-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
    padding: 20px;
    text-align: center;
}

#age-verification-modal .modal-footer .btn-large {
    margin: 0 10px;
    text-decoration: none !important;
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border: 1px solid;
    border-image: linear-gradient(to bottom right, #007bff, #00c6ff) 1;
}

.cookie-banner .card-content .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 10px;
}

.cookie-banner .card-action {
    border-top: 1px solid #eee;
    padding: 16px 24px;
    text-align: right;
}

.cookie-banner .card-action .btn {
    margin-left: 10px;
    text-decoration: none !important;
}


#cookie-config-modal {
    max-width: 600px;
    border-radius: 8px;
}

#cookie-config-modal h4 {
    color: #007bff;
    font-weight: 700;
    margin-bottom: 20px;
}

#cookie-config-modal p {
    margin-bottom: 15px;
}

#cookie-config-modal .modal-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
    padding: 20px;
    text-align: right;
}

#cookie-config-modal .helper-text {
    font-size: 0.85rem;
    color: #777;
    margin-left: 35px;
    display: block;
}


@media only screen and (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .rating-card .card-image img {
        height: 150px;
    }
    .rating-card .card-title {
        font-size: 1.5rem;
    }
    .disclaimer-block .disclaimer-title {
        font-size: 1.5rem;
    }
    .disclaimer-block .disclaimer-title i {
        font-size: 2rem;
    }
    .disclaimer-block p {
        font-size: 0.9rem;
    }
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: unset;
    }
    .cookie-banner .card-action {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .cookie-banner .card-action .btn {
        margin: 0;
    }
    .footer-logos {
        flex-direction: column;
        gap: 10px;
    }
    .footer-logos .footer-img {
        max-width: 100px;
    }
}

.rightsCloudWrap {
    padding-top: 40px; 
    padding-left: 20px; 
    padding-right: 20px; 
    
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


.rightsCloudWrap h1 {
    font-size: 2.2rem; 
    font-weight: 700; 
    color: #333; 
    margin-top: 30px; 
    margin-bottom: 20px; 
    line-height: 1.2; 
}

.rightsCloudWrap h2 {
    font-size: 1.8rem; 
    font-weight: 600; 
    color: #333; 
    margin-top: 25px; 
    margin-bottom: 18px; 
    line-height: 1.3; 
}

.rightsCloudWrap h3 {
    font-size: 1.5rem; 
    font-weight: 600; 
    color: #333; 
    margin-top: 20px; 
    margin-bottom: 15px; 
    line-height: 1.4; 
}

.rightsCloudWrap h4 {
    font-size: 1.3rem; 
    font-weight: 500; 
    color: #333; 
    margin-top: 18px; 
    margin-bottom: 12px; 
    line-height: 1.5; 
}

.rightsCloudWrap h5 {
    font-size: 1.1rem; 
    font-weight: 500; 
    color: #333; 
    margin-top: 15px; 
    margin-bottom: 10px; 
    line-height: 1.6; 
}


.rightsCloudWrap p {
    font-size: 1rem; 
    line-height: 1.7; 
    margin-bottom: 15px; 
    color: #444; 
}


.rightsCloudWrap ul {
    list-style-type: disc; 
    padding-left: 25px; 
    margin-top: 15px; 
    margin-bottom: 15px; 
}


.rightsCloudWrap li {
    font-size: 1rem; 
    line-height: 1.6; 
    margin-bottom: 8px; 
    color: #444; 
}


@media (max-width: 1200px) {
    .card.horizontal {
        flex-direction: column !important;
    }
    
    .card.horizontal .card-image {
    display: flex;
    justify-content: center;
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px;
}

.card.horizontal .card-image a {
    width: 100%;
}

.card.horizontal .card-image a img {
    width: auto;
    height: 150px;
    object-fit: contain;
    margin: auto;
}

}


@media only screen and (max-width: 600px) {
    .rightsCloudWrap {
        padding-top: 20px; 
        padding-left: 15px; 
        padding-right: 15px; 
    }

    .rightsCloudWrap h1 {
        font-size: 1.8rem; 
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .rightsCloudWrap h2 {
        font-size: 1.5rem; 
        margin-top: 20px;
        margin-bottom: 12px;
    }
    .rightsCloudWrap h3 {
        font-size: 1.3rem; 
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .rightsCloudWrap h4 {
        font-size: 1.1rem; 
        margin-top: 12px;
        margin-bottom: 8px;
    }
    .rightsCloudWrap h5 {
        font-size: 1rem; 
        margin-top: 10px;
        margin-bottom: 6px;
    }
    .rightsCloudWrap p,
    .rightsCloudWrap li {
        font-size: 0.95rem; 
        line-height: 1.6;
        margin-bottom: 10px;
    }
    .rightsCloudWrap ul {
        padding-left: 20px; 
    }
}
