/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa; /* Light background for general content */
}

/* Custom Gradient Buttons */
.custom-btn-gradient {
    background: linear-gradient(45deg, #8A2BE2, #4169E1); /* Purple to Blue */
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-btn-gradient:hover {
    background: linear-gradient(45deg, #4169E1, #8A2BE2); /* Reverse gradient on hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.custom-btn-gradient-secondary {
    background: linear-gradient(45deg, #4169E1, #8A2BE2); /* Blue to Purple */
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-btn-gradient-secondary:hover {
    background: linear-gradient(45deg, #8A2BE2, #4169E1); /* Reverse gradient on hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Header */
header {
    background-color: #1a1a1a !important; /* Dark background for header */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

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

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

.hero-section p.lead {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.25rem;
}

/* Recommended Platforms - Casino Cards */
#recommended-platforms .card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#recommended-platforms .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.casino-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.rating-stars {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    color: gold; /* Default star color */
}

/* Gradient effect for rating ribbons - applied behind stars */
.rating-stars .star-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #8A2BE2, #4169E1); /* Purple to Blue gradient */
    border-radius: 5px;
    z-index: -1;
    opacity: 0.2; /* Subtle background */
}

.features-list li {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #555;
}

.features-list-lg li {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #444;
}

/* Chicken Road Slot Section */
#chicken-road-slot {
    background-color: #f0f4f7;
}

/* Community Opinions */
.review-card {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #ddd;
}

.review-card .rating-stars i {
    color: gold;
}

.helpful-btn, .not-helpful-btn {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 20px;
}

.helpful-btn.active, .not-helpful-btn.active {
    pointer-events: none;
    opacity: 0.7;
}

/* Criteria Section */
#criteria .badge {
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 20px;
}

/* Articles Block */
#articles .card {
    border-radius: 10px;
    border: none;
    text-align: center;
}

#articles .card i {
    font-size: 3.5rem;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fcf8e3; /* Light yellow background */
    border-top: 5px solid #ffc107; /* Warning yellow border */
    border-bottom: 5px solid #ffc107;
    margin-top: 40px;
    margin-bottom: 40px;
}

.disclaimer-content {
    background-color: #fff3cd; /* Slightly darker yellow for content block */
    border: 1px solid #ffeeba;
    border-radius: 8px;
    padding: 25px;
}

.disclaimer-content h3 {
    color: #dc3545; /* Red for warning title */
}

.disclaimer-content a {
    color: #0d6efd; /* Bootstrap primary blue for links */
    text-decoration: underline;
}

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

/* Footer */
.footer {
    background-color: #1a1a1a !important; /* Dark background */
    color: #f8f9fa;
    font-size: 0.9rem;
}

.footer a {
    color: #adb5bd; /* Light grey for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
}

.footer-icon-18plus {
    height: 24px;
    vertical-align: middle;
    margin-right: 5px;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between logos */
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 120px; /* Adjusted based on total number of images */
    height: auto;
    filter: none; /* Ensure no grayscale or other filters */
    transition: none; /* No transition on hover */
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    z-index: 1050;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none; /* Hidden by default, shown by JS */
}

.cookie-banner .card-body {
    padding: 20px;
}

.cookie-banner .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cookie-banner .card-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 450px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

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

    .custom-btn-gradient, .custom-btn-gradient-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    #recommended-platforms .card {
        margin-bottom: 20px;
    }

    .casino-logo {
        max-width: 120px;
    }

    .review-card {
        margin-bottom: 20px;
    }

    .cookie-banner {
        width: 90%;
        left: 5%;
        right: 5%;
        bottom: 15px;
    }

    .footer-logo-img {
        max-width: 90px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 350px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

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

    .footer-logos {
        gap: 10px;
    }

    .footer-logo-img {
        max-width: 80px;
    }
}/* New styles for content within .rightsCloudWrap */
.rightsCloudWrap {
    /* Padding for the content wrapper */
    padding: 60px 20px; /* Top/bottom, left/right padding */
    max-width: 1200px; /* Maximum width for content */
    margin: 0 auto; /* Center the wrapper horizontally */
    line-height: 1.6; /* Default line height for improved readability */
    color: #333; /* Default text color for the content block */
}

/* Headings */
.rightsCloudWrap h1 {
    font-size: 2.2rem; /* Moderate size for H1 */
    margin-bottom: 1.2em; /* Spacing below the heading, relative to its font size */
    color: #222; /* Slightly darker color for headings */
}

.rightsCloudWrap h2 {
    font-size: 1.8rem; /* Moderate size for H2 */
    margin-bottom: 1em;
    color: #222;
}

.rightsCloudWrap h3 {
    font-size: 1.5rem; /* Moderate size for H3 */
    margin-bottom: 0.8em;
    color: #222;
}

.rightsCloudWrap h4 {
    font-size: 1.3rem; /* Moderate size for H4 */
    margin-bottom: 0.7em;
    color: #222;
}

.rightsCloudWrap h5 {
    font-size: 1.1rem; /* Moderate size for H5 */
    margin-bottom: 0.6em;
    color: #222;
}

/* Paragraphs */
.rightsCloudWrap p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1em; /* Spacing below the paragraph */
    line-height: 1.6; /* Improved readability for paragraphs */
}

/* Unordered Lists */
.rightsCloudWrap ul {
    list-style: disc; /* Default disc style for list items */
    margin-left: 25px; /* Indent the list items */
    margin-bottom: 1.5em; /* Spacing below the entire list */
    padding: 0; /* Remove default browser padding */
}

/* List Items */
.rightsCloudWrap li {
    font-size: 1rem; /* Standard list item font size */
    margin-bottom: 0.5em; /* Spacing between individual list items */
    line-height: 1.5; /* Improved readability for list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .rightsCloudWrap {
        padding: 40px 15px; /* Reduce padding on smaller screens */
    }

    .rightsCloudWrap h1 {
        font-size: 2rem;
    }

    .rightsCloudWrap h2 {
        font-size: 1.6rem;
    }

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

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

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

    .rightsCloudWrap p,
    .rightsCloudWrap li {
        font-size: 0.95rem; /* Slightly smaller text on mobile */
    }
}
