body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f8f9fa; 
}


.section-title {
    font-family: 'Inter', sans-serif;
    color: #E67E22; 
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

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


p, li, a, span {
    color: #333; 
}


.bg-light-orange {
    background-color: #FFF3E0; 
}


.btn-primary {
    background-color: #FF7F50; 
    border-color: #FF7F50;
    color: #fff;
    text-decoration: none !important; 
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
    text-decoration: none !important;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-outline-light:hover {
    background-color: #f8f9fa;
    color: #333;
}


.top-warning-banner {
    background-color: #dc3545; 
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 20px;
}


.hero-section {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    padding-top: 100px; 
    padding-bottom: 50px;
}

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



.hero-section .navbar-brand .logo-img {
    height: 40px;
    width: auto;
}
.bg-dark p{
    color: #fff;
}

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

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


.offer-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    margin-bottom: 20px;
}

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

.offer-logo-link {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px; 
    height: 100px; 
    padding: 10px;
    border-radius: 8px;
   
}

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

.offer-title {
    color: #E67E22;
    font-weight: 700;
}

.offer-title .badge {
    background-color: #FF7F50 !important;
    font-size: 0.9rem;
    vertical-align: middle;
}

.offer-features li {
    color: #555;
    margin-bottom: 5px;
}

.offer-license .license-link {
    color: #dc3545; 
    text-decoration: underline;
    font-weight: 600;
}

.offer-license .license-link:hover {
    color: #b02a37;
}

.offer-bonus {
    color: #E67E22;
    font-weight: 600;
}


.about-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}


.editor-ratings .list-group-item {
    border-color: #eee;
    background-color: #fff;
    color: #333;
    font-size: 1.1rem;
}

.editor-ratings .progress {
    background-color: #e9ecef;
}

.editor-ratings .progress-bar {
    background-color: #FF7F50 !important;
}


.accordion-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 20px;
    text-decoration: none !important;
}

.accordion-button:not(.collapsed) {
    color: #E67E22;
    background-color: #FFF8F0; 
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

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

.accordion-body {
    background-color: #fff;
    color: #555;
    padding: 20px;
}


.comparison-table th, .comparison-table td {
    padding: 12px;
    vertical-align: middle;
    text-align: center;
    color: #333;
}

.comparison-table thead th {
    background-color: #FF7F50;
    color: #fff;
    font-weight: 600;
    border-color: #E67E22;
}

.comparison-table tbody th {
    text-align: left;
    background-color: #FFF3E0;
    color: #E67E22;
    font-weight: 600;
}

.comparison-table .table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f9fa;
}

.comparison-table .table-striped tbody tr:nth-of-type(even) {
    background-color: #fff;
}


.review-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.review-card .text-warning i {
    color: #FFC107; 
}

.review-card .badge {
    background-color: #6c757d;
    color: #fff;
    font-weight: 400;
}


.accordion-flush .accordion-item {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.accordion-flush .accordion-item:first-of-type {
    border-top: 1px solid #eee;
}

.accordion-flush .accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
}

.accordion-flush .accordion-button:not(.collapsed) {
    color: #E67E22;
    background-color: #FFF8F0;
}


#main-disclaimer {
    background-color: #FEECE2; 
    padding-top: 50px;
    padding-bottom: 50px;
}

.disclaimer-box {
    border: 2px solid #FF7F50; 
    background-color: #fff;
    color: #333;
}

.disclaimer-title {
    color: #E67E22;
    font-weight: 700;
}

.disclaimer-subtitle {
    color: #E67E22;
    font-weight: 600;
}

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

.disclaimer-list i {
    color: #FF7F50;
}


footer {
    background-color: #343a40 !important; 
    color: #f8f9fa;
    padding-top: 40px;
    padding-bottom: 40px;
}

footer a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #FF7F50;
    text-decoration: underline;
}

.footer-links a {
    margin: 0 10px;
}

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

.footer-logos {
    margin-top: 30px;
}

.footer-logo {
    max-width: 120px; 
    height: auto;
    object-fit: contain;
    margin: 0 10px;
}

.footer-logo.eighteen-plus-icon {
    max-width: 80px;
    height: auto;
    object-fit: contain;
    filter: none; 
}

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


#ageVerificationModal .modal-content {
    background-color: #fff;
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#ageVerificationModal .modal-header {
    background-color: #FF7F50;
    color: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#ageVerificationModal .modal-title {
    color: #333; 
    font-weight: 700;
}

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


.cookie-banner {
    z-index: 1050;
    border-top: 1px solid #555;
    background-color: #343a40 !important;
    color: #fff !important;
    font-size: 0.9rem;
}
.cookie-banner p,
.top-warning-banner p,
.hero-content p{
    color: #fff !important;
}
.cookie-banner p a {
    color: #FF7F50;
}

.cookie-banner .btn-primary {
    background-color: #FF7F50;
    border-color: #FF7F50;
}

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

.cookie-banner .btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.cookie-banner .btn-outline-light:hover {
    background-color: #fff;
    color: #333;
}


#cookieSettingsModal .modal-content {
    border-radius: 10px;
}

#cookieSettingsModal .modal-header {
    background-color: #FF7F50;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#cookieSettingsModal .modal-title {
    color: #fff;
}

#cookieSettingsModal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%); 
}

#cookieSettingsModal .form-check-label {
    color: #333;
}


@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .offer-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .offer-logo-link {
        width: 100%;
        height: auto;
        margin-bottom: 15px !important;
    }
    .offer-logo {
        max-height: 60px;
    }
    .offer-details {
        width: 100%;
    }
    .footer-logos {
        flex-direction: column;
        gap: 20px;
    }
    .footer-logo {
        max-width: 100px;
    }
    .cookie-banner .container {
        flex-direction: column;
    }
    .cookie-banner p {
        margin-bottom: 15px !important;
    }
   
}
@media (max-width: 567px){
 .list-group-item{
        flex-direction: column;
    }
}



.userClauseNet {
    margin-top: 60px; 
    padding-left: 20px; 
    padding-right: 20px; 
    max-width: 960px; 
    margin-left: auto; 
    margin-right: auto; 
    line-height: 1.6; 
    color: #333; 
}


.userClauseNet h1 {
    font-family: 'Inter', sans-serif; 
    font-size: 2.2rem; 
    font-weight: 700; 
    color: #333; 
    margin-top: 2.5rem; 
    margin-bottom: 1.2rem; 
    line-height: 1.2; 
}


.userClauseNet h2 {
    font-family: 'Inter', sans-serif; 
    font-size: 1.8rem; 
    font-weight: 600; 
    color: #333; 
    margin-top: 2rem; 
    margin-bottom: 1rem; 
    line-height: 1.3; 
}


.userClauseNet h3 {
    font-family: 'Inter', sans-serif; 
    font-size: 1.5rem; 
    font-weight: 600; 
    color: #333; 
    margin-top: 1.8rem; 
    margin-bottom: 0.9rem; 
    line-height: 1.4; 
}


.userClauseNet h4 {
    font-family: 'Inter', sans-serif; 
    font-size: 1.25rem; 
    font-weight: 500; 
    color: #333; 
    margin-top: 1.5rem; 
    margin-bottom: 0.8rem; 
    line-height: 1.5; 
}


.userClauseNet h5 {
    font-family: 'Inter', sans-serif; 
    font-size: 1.1rem; 
    font-weight: 500; 
    color: #333; 
    margin-top: 1.2rem; 
    margin-bottom: 0.7rem; 
    line-height: 1.5; 
}


.userClauseNet p {
    font-family: 'Inter', sans-serif; 
    font-size: 1rem; 
    color: #333; 
    margin-bottom: 1rem; 
    line-height: 1.6; 
}


.userClauseNet ul {
    font-family: 'Inter', sans-serif; 
    font-size: 1rem; 
    color: #333; 
    margin-top: 1rem; 
    margin-bottom: 1rem; 
    padding-left: 25px; 
    list-style-type: disc; 
}


.userClauseNet ul li {
    margin-bottom: 0.5rem; 
    line-height: 1.6; 
}
