
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    scroll-behavior: smooth; 
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

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


.top-warning-bar {
    background-color: #dc3545 !important; 
    font-size: 0.9rem;
}


.main-header {
    background: linear-gradient(to right, #4b0082, #007bff); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .navbar-brand .site-logo {
    height: 40px; 
    width: auto;
}

.main-header .navbar-brand .site-name {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}

.main-header .navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
    text-decoration: none; 
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
    color: #e0e0e0;
}

.main-header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: width 0s; 
}

.main-header .navbar-nav .nav-link:hover::after {
    width: 70%;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.hero-section {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

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

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

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}


.offer-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0s, transform 0s; 
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5); 
    transform: translateY(0px); 
}

.offer-card .offer-logo-container {
    min-width: 120px;
    max-width: 150px;
}

.offer-card .offer-logo {
    max-height: 80px;
    object-fit: contain;
}

.offer-card .offer-title-link {
    font-weight: 600;
    color: #2c3e50;
}

.offer-card .offer-title-link:hover {
    color: #007bff;
}

.offer-card .license-link {
    color: #28a745; 
    font-weight: 600;
    text-decoration: none;
}

.offer-card .license-link:hover {
    text-decoration: underline;
}

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

.offer-card .play-button {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 600;
    text-decoration: none; 
}

.offer-card .play-button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}


.about-image {
    border-radius: 8px;
}


.criteria-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.criteria-card i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}


.statistic-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.statistic-item i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.statistic-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
}


.bonus-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bonus-card img {
    max-height: 150px;
    object-fit: contain;
    width: 100%;
}

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

.bonus-card .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}


.review-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    height: 100%; 
    display: flex;
    flex-direction: column;
}

.review-card .review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.review-card .review-feedback .btn-sm {
    text-decoration: none; 
}

.review-card .review-feedback .btn-outline-success:hover {
    background-color: #28a745;
    color: #fff;
}

.review-card .review-feedback .btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
}


.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

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

.accordion-button {
    font-weight: 600;
}


.disclaimer-section {
    background-color: #f0f0f0; 
    padding: 3rem 0;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
}

.disclaimer-content {
    background-color: #343a40; 
    color: #fff;
    border: 1px solid #212529;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.disclaimer-content h3 {
    color: #ffc107; 
}

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

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


.main-footer {
    background-color: #2c3e50; 
    color: #fff;
}

.main-footer .site-logo-footer {
    height: 35px; 
    width: auto;
}

.main-footer .site-name-footer {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.main-footer .footer-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.25rem 0;
}

.main-footer .footer-links a:hover {
    text-decoration: underline;
}

.footer-logos {
    gap: 1.5rem; 
}

.footer-org-logo {
    max-width: 120px; 
    height: auto;
    object-fit: contain;
    filter: none; 
    transition: none; 
}

.18plus-icon-footer {
    max-width: 50px;
    background-color: #dc3545;
    border-radius: 5px;
    padding: 5px;
}


#ageVerificationModal .modal-content {
    background-color: #f8f9fa;
    color: #333;
}

#ageVerificationModal .modal-header {
    border-bottom: none;
}

#ageVerificationModal .modal-title {
    color: #2c3e50;
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    max-width: 350px;
    display: none; 
}

.cookie-banner .card {
    border-radius: 8px;
    border: none;
}

.cookie-banner .card-title {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-banner .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    text-decoration: none; 
}

.cookie-banner .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.cookie-banner .btn-outline-secondary {
    text-decoration: none; 
}

.cookie-banner .btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
}


#cookieConfigModal .modal-content {
    background-color: #f8f9fa;
    color: #333;
}

#cookieConfigModal .modal-header {
    border-bottom: 1px solid #e9ecef;
}

#cookieConfigModal .modal-title {
    color: #2c3e50;
}

#cookieConfigModal .form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

#cookieConfigModal .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    text-decoration: none; 
}

#cookieConfigModal .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}


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

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

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

    .offer-card {
        flex-direction: column;
        text-align: center;
    }

    .offer-card .offer-logo-container {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .offer-card .offer-details {
        text-align: center;
    }

    .offer-card .rating-stars {
        justify-content: center;
    }

    .offer-card .offer-action {
        margin-top: 1rem;
        margin-left: 0;
    }

    .main-header .navbar-brand .site-name {
        font-size: 1.5rem;
    }

    .main-header .navbar-nav .nav-link {
        text-align: center;
    }

    .main-header .navbar-nav .nav-link::after {
        display: none;
    }

    .footer-logos {
        flex-direction: column;
        align-items: center;
    }
}

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


.privacyNestZone h1 {
    font-size: 2rem; 
    font-weight: 700; 
    color: #343a40; 
    margin-top: 1.5em; 
    margin-bottom: 0.75em; 
    line-height: 1.2; 
}

.privacyNestZone h2 {
    font-size: 1.75rem; 
    font-weight: 600; 
    color: #343a40; 
    margin-top: 1.5em; 
    margin-bottom: 0.75em; 
    line-height: 1.3; 
}

.privacyNestZone h3 {
    font-size: 1.5rem; 
    font-weight: 600; 
    color: #343a40; 
    margin-top: 1.5em; 
    margin-bottom: 0.75em; 
    line-height: 1.4; 
}

.privacyNestZone h4 {
    font-size: 1.25rem; 
    font-weight: 500; 
    color: #343a40; 
    margin-top: 1.5em; 
    margin-bottom: 0.75em; 
    line-height: 1.5; 
}

.privacyNestZone h5 {
    font-size: 1.125rem; 
    font-weight: 500; 
    color: #343a40; 
    margin-top: 1.5em; 
    margin-bottom: 0.75em; 
    line-height: 1.6; 
}


.privacyNestZone p {
    font-size: 1rem; 
    line-height: 1.6; 
    margin-bottom: 1em; 
    color: #333; 
}


.privacyNestZone ul {
    list-style: disc; 
    padding-left: 25px; 
    margin-bottom: 1em; 
    color: #333; 
}


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


.privacyNestZone ol {
    list-style: decimal; 
    padding-left: 25px; 
    margin-bottom: 1em; 
    color: #333; 
}
@media (max-width:767px) {
    .title-cards-cas{
        display: none;
    }
}
@media (max-width:575px) {
    .adptive-txexa{
        font-size: 12px;
    }
    .main-header .navbar-brand .site-name{
        font-size: 16px;
    }
    .hero-section h1{
        margin-top: 40px;
    }
}