/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1A361A; /* Dark forest green */
    color: #F0F2EB; /* Off-white for general text */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #D4AF37; /* Gold/Bronze for headings */
    font-weight: 600;
}

a {
    color: #4CAF50; /* Lighter green for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5cb85c; /* Slightly brighter green on hover */
}

.container {
    max-width: 1200px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

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

/* Buttons */
.btn-primary {
    background-color: #4CAF50; /* Lighter green */
    border-color: #4CAF50;
    color: #1A361A;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5cb85c;
    border-color: #5cb85c;
    color: #1A361A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-success {
    background-color: #28a745; /* Standard green for success */
    border-color: #28a745;
    color: #fff;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

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

.btn-outline-light:hover {
    background-color: #F0F2EB;
    color: #1A361A;
}

.btn-link {
    color: #4CAF50;
    text-decoration: underline;
}

.btn-link:hover {
    color: #5cb85c;
}

/* Header Section */
.main-header {
    background-color: #112211; /* Even darker green for header */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-title {
    font-size: 3rem;
    font-weight: 700;
}

.site-title .logo-img {
    height: 50px; /* Adjust as needed */
    vertical-align: middle;
}

.tagline {
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 54, 26, 0.8), rgba(26, 54, 26, 0.8)), url(uploads/pics/offers_showcase.jpg) center center no-repeat;
    background-size: cover;
    color: #F0F2EB;
    padding: 80px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    word-wrap: break-word;
    color: #D4AF37;
    font-weight: 700;
}

.hero-image {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Rating Grid Section */
.rating-grid-section {
    background-color: #214221; /* Slightly lighter dark green */
}

.rating-card {
    background-color: #2E502E; /* Darker green for cards */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #F0F2EB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.rating-card .platform-logo {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.rating-card .platform-logo-link:hover .platform-logo {
    transform: scale(1.05);
}

.rating-card .card-title {
    color: #D4AF37;
    font-size: 1.8rem;
}

.rating-card .rating i {
    color: #D4AF37;
    font-size: 1.3rem;
}

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

.rating-card .bonus-text {
    color: #4CAF50;
    font-weight: 600;
    font-size: 1.1rem;
}

.rating-card .description-text {
    color: #F0F2EB;
    font-size: 0.95rem;
}

.rating-card .user-quote {
    font-style: italic;
    color: #ccc;
    border-left: 3px solid #4CAF50;
    padding-left: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.rating-card .user-quote i {
    color: #D4AF37;
    font-size: 1.1rem;
    vertical-align: middle;
    margin-right: 5px;
}

/* Comparison Table Section */
.comparison-table-section {
    background-color: #1A361A;
}

.table-dark {
    --bs-table-bg: #2E502E;
    --bs-table-striped-bg: #3A5C3A;
    --bs-table-hover-bg: #4A6E4A;
    --bs-table-color: #F0F2EB;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden; /* Ensures rounded corners apply */
}

.table-dark thead th {
    color: #D4AF37;
    font-weight: 700;
    border-bottom: 2px solid #4CAF50;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.table-dark thead th:hover {
    background-color: #3A5C3A;
}

.table-dark tbody tr {
    transition: background-color 0.3s ease;
}

.table-dark tbody tr:hover {
    background-color: var(--bs-table-hover-bg);
}

.table-logo {
    max-height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

.table i.bi-check-circle-fill {
    color: #4CAF50;
    font-size: 1.1rem;
}

.rating-stars-small i {
    color: #D4AF37;
    font-size: 0.8rem;
}

/* User Reviews Section */
.user-reviews-section {
    background-color: #214221;
}

.review-card {
    background-color: #2E502E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #F0F2EB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px; /* Ensure consistent height for cards */
    display: flex;
    flex-direction: column;
}

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

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

.review-rating i {
    color: #D4AF37;
    font-size: 1.1rem;
}

.review-content {
    overflow: hidden;
    max-height: 100px; /* Initial collapsed height */
    transition: max-height 0.5s ease-in-out;
    position: relative;
}

.review-content.expanded {
    max-height: 500px; /* Max height when expanded */
}

.review-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #2E502E, transparent);
}

.read-more-btn {
    color: #4CAF50;
    font-weight: 600;
    align-self: flex-start;
    margin-top: auto; /* Push button to bottom */
}

/* Rating Criteria Section */
.rating-criteria-section {
    background-color: #1A361A;
}

.criteria-item {
    background-color: #2E502E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #F0F2EB;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure equal height */
}

.criteria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.criteria-icon {
    font-size: 3rem;
    color: #D4AF37;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #214221;
}

.contact-form {
    background-color: #2E502E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #F0F2EB;
}

.contact-form .form-label {
    color: #D4AF37;
    font-weight: 600;
}

.contact-form .form-control {
    background-color: #3A5C3A;
    border: 1px solid #4CAF50;
    color: #F0F2EB;
}

.contact-form .form-control::placeholder {
    color: rgba(240, 242, 235, 0.6);
}

.contact-form .form-control:focus {
    background-color: #4A6E4A;
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.contact-form .invalid-feedback {
    color: #ffc107; /* Warning color for validation */
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #3A5C3A; /* A distinct dark green */
    color: #F0F2EB;
    padding: 3rem 0;
    border-top: 5px solid #D4AF37; /* Gold border top */
    border-bottom: 5px solid #D4AF37; /* Gold border bottom */
}

.disclaimer-box {
    background-color: #2E502E; /* Slightly darker than section for contrast */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

.disclaimer-icon {
    font-size: 2.5rem;
    color: #D4AF37; /* Gold warning icon */
    margin-top: -5px;
}

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

.disclaimer-section p a {
    color: #F0F2EB;
    text-decoration: underline;
}

.disclaimer-section p a:hover {
    color: #D4AF37;
}

/* Social Footer Section (Carousel) */
.social-footer-section {
    background-color: #1A361A;
}

.review-carousel-item {
    background-color: #2E502E;
    border-radius: 15px;
    padding: 2.5rem;
    color: #F0F2EB;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(212, 175, 55, 0.7); /* Goldish arrows */
    border-radius: 50%;
    padding: 1rem;
}

/* Footer Section */
.main-footer {
    background-color: #112211; /* Even darker green for footer */
    color: #F0F2EB;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-heading {
    color: #D4AF37;
    font-weight: 600;
}

.footer-link {
    color: #F0F2EB;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4CAF50;
}

.footer-18plus-icon {
    max-width: 80px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5)); /* Red glow for 18+ */
}

.footer-logos {
    gap: 15px;
}

.footer-logo-item img {
    max-width: 120px; /* Adjusted from 100-150 for 4 logos */
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Age Verification Modal */
#ageVerificationModal .modal-content {
    background-color: #2E502E;
    color: #F0F2EB;
    border: 1px solid #4CAF50;
    border-radius: 15px;
}

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

#ageVerificationModal .modal-body p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #3A5C3A; /* Slightly different green */
    color: #F0F2EB;
    padding: 10px 0;
    z-index: 1050; /* Above other content, below modals */
    font-size: 0.9rem;
    display: none; /* Hidden by default, shown by JS */
    border-bottom: 1px solid #4CAF50;
}

.cookie-banner p {
    margin-bottom: 0;
}

.cookie-banner .cookie-policy-link {
    color: #D4AF37;
    text-decoration: underline;
}

.cookie-banner .cookie-policy-link:hover {
    color: #F0F2EB;
}

/* Cookie Config Modal */
#cookieConfigModal .modal-content {
    background-color: #2E502E;
    color: #F0F2EB;
    border: 1px solid #4CAF50;
    border-radius: 15px;
}

#cookieConfigModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#cookieConfigModal .modal-title {
    color: #D4AF37;
}

#cookieConfigModal .form-check-label {
    color: #F0F2EB;
}

#cookieConfigModal .form-check-input:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

#cookieConfigModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .site-title {
        font-size: 2.2rem;
    }
    .site-title .logo-img {
        height: 40px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .rating-card .card-body {
        flex-direction: column;
    }
    .rating-card .platform-logo-link {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }
    .rating-card .platform-logo {
        max-width: 120px;
    }
    .rating-card .text-md-start {
        text-align: center !important;
    }
    .section-title {
        font-size: 2rem;
    }
    .disclaimer-icon {
        font-size: 2rem;
    }
    .disclaimer-title {
        font-size: 1.5rem;
    }
    .footer-logos {
        justify-content: center !important;
    }
}
/* Styles for content within the .userClauseNet block */
.userClauseNet {
    padding: 2.5rem 2rem; /* Padding for top/bottom and sides of the content block */
    margin-top: 3rem; /* Top margin to separate from preceding sections */
    margin-bottom: 3rem; /* Bottom margin to separate from following sections */
    background-color: #2E502E; /* Darker green background for the content block */
    border-radius: 15px; /* Rounded corners for the content block */
    color: #F0F2EB; /* Off-white text color for readability */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

.userClauseNet h1 {
    font-size: 2.2rem; /* Moderate font size for H1 */
    margin-top: 2.5rem; /* Top margin for H1, creating space above */
    margin-bottom: 1.2rem; /* Bottom margin for H1, separating from text below */
    color: #D4AF37; /* Gold/Bronze color for headings */
    line-height: 1.2; /* Line height for better readability */
}

.userClauseNet h2 {
    font-size: 1.8rem; /* Moderate font size for H2 */
    margin-top: 2rem; /* Top margin for H2 */
    margin-bottom: 1rem; /* Bottom margin for H2 */
    color: #D4AF37; /* Gold/Bronze color for headings */
    line-height: 1.3;
}

.userClauseNet h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    margin-top: 1.8rem; /* Top margin for H3 */
    margin-bottom: 0.8rem; /* Bottom margin for H3 */
    color: #D4AF37; /* Gold/Bronze color for headings */
    line-height: 1.4;
}

.userClauseNet h4 {
    font-size: 1.3rem; /* Moderate font size for H4 */
    margin-top: 1.5rem; /* Top margin for H4 */
    margin-bottom: 0.6rem; /* Bottom margin for H4 */
    color: #D4AF37; /* Gold/Bronze color for headings */
    line-height: 1.5;
}

.userClauseNet h5 {
    font-size: 1.1rem; /* Moderate font size for H5 */
    margin-top: 1.2rem; /* Top margin for H5 */
    margin-bottom: 0.5rem; /* Bottom margin for H5 */
    color: #D4AF37; /* Gold/Bronze color for headings */
    line-height: 1.6;
}

.userClauseNet p {
    font-size: 1rem; /* Standard font size for paragraphs */
    margin-bottom: 1rem; /* Bottom margin for paragraphs */
    line-height: 1.7; /* Enhanced line height for readability */
}

.userClauseNet ul {
    list-style-type: disc; /* Default disc bullet for unordered lists */
    margin-top: 1rem; /* Top margin for lists */
    margin-bottom: 1rem; /* Bottom margin for lists */
    padding-left: 1.8rem; /* Indentation for list items */
}

.userClauseNet ol {
    list-style-type: decimal; /* Default decimal for ordered lists */
    margin-top: 1rem; /* Top margin for lists */
    margin-bottom: 1rem; /* Bottom margin for lists */
    padding-left: 1.8rem; /* Indentation for list items */
}

.userClauseNet li {
    font-size: 1rem; /* Font size for list items */
    margin-bottom: 0.6rem; /* Bottom margin for list items */
    line-height: 1.6; /* Line height for list items */
}

.userClauseNet ul li:last-child,
.userClauseNet ol li:last-child {
    margin-bottom: 0; /* No bottom margin for the last list item to prevent excess space */
}
.table i.bi-check-circle-fill {
    margin-inline: 5px;
}