/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #212529;
}

p {
    color: #555;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Header / Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Space for fixed navbar */
    padding-bottom: 50px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(75, 0, 130, 0.7) 0%, rgba(0, 191, 255, 0.7) 100%); /* Indigo to Azure Gradient */
    z-index: 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-section .btn-primary {
    background-color: #ffc107; /* Yellow */
    border-color: #ffc107;
    color: #333;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, color 0.1s ease-in-out; /* Instant transition */
}

.hero-section .btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #212529;
}

.navbar-brand .site-logo {
    max-height: 50px;
    width: auto;
}

.footer-logo {
    filter: none; /* Reset filter for footer logo */
}

/* Cookie Banner */
.cookie-banner {
    background-color: #212529; /* Dark background */
    color: #fff;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform 0.1s ease-out, opacity 0.1s ease-out, visibility 0.1s ease-out; /* Instant transition */
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner .btn-primary {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #333;
    font-weight: 600;
}

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

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

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

.cookie-banner a {
    color: #fff;
}

/* Featured Items Section (Chicken Road) */
.featured-items-section {
    background-color: #f0f4f7;
}

.featured-items-section h2 {
    color: #4b0082; /* Indigo */
}

.featured-card {
    background-color: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    padding: 2.5rem !important;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 0, 0.1), rgba(255, 255, 0, 0) 70%); /* Yellow glow */
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    z-index: 0;
}

.featured-card:hover::before {
    opacity: 1;
}

.featured-card .card-body, .featured-card .row > div {
    position: relative;
    z-index: 1;
}

.featured-card h3 {
    color: #007bff;
    font-weight: 600;
}

.featured-card .list-unstyled li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Recommended Platforms Modal */
.platform-card {
    background-color: #fff;
    border: 1px solid #eee;
    transition: box-shadow 0.1s ease-in-out;
}

.platform-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.platform-card .platform-logo {
    max-width: 120px;
    height: auto;
    margin: 0 auto;
}

.platform-card .rating-stars i {
    color: #ffc107; /* Yellow stars */
    font-size: 1.2rem;
}

.platform-card .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
}

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

/* Rating List Section */
.rating-list-section {
    background-color: #fff;
}

.rating-list-section h2 {
    color: #28a745; /* Green */
}

.list-group-item {
    border-color: #eee;
    transition: background-color 0.1s ease-in-out;
}

.list-group-item:hover {
    background-color: #f0f4f7;
}

.list-group-item .rating-stars i {
    color: #ffc107;
}

/* Rating Grid Section */
.rating-grid-section {
    background-color: #f0f4f7;
}

.rating-grid-section h2 {
    color: #6f42c1; /* Purple */
}

.rating-card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
    position: relative;
    overflow: hidden;
}

.rating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 191, 255, 0.1), rgba(0, 191, 255, 0) 70%); /* Azure glow */
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    z-index: 0;
}

.rating-card:hover::before {
    opacity: 1;
}

.rating-card .card-body {
    position: relative;
    z-index: 1;
}

.rating-card .platform-logo-grid {
    max-width: 100px;
    height: auto;
    object-fit: contain;
}

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

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

.comparison-table-section h2 {
    color: #dc3545; /* Red */
}

.comparison-table thead th {
    background-color: #343a40;
    color: #fff;
    border-color: #454d55;
}

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

.comparison-table tbody tr:hover {
    background-color: #e9ecef;
}

.comparison-table i.bi-check-circle-fill {
    color: #28a745;
}

.comparison-table i.bi-x-circle-fill {
    color: #dc3545;
}

.comparison-table .rating-stars i {
    color: #ffc107;
}

/* FAQ Section */
.faq-section {
    background-color: #f0f4f7;
}

.faq-section h2 {
    color: #17a2b8; /* Cyan */
}

.accordion-item {
    border: 1px solid #dee2e6;
    margin-bottom: 10px;
    border-radius: 0.25rem;
}

.accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    transition: background-color 0.1s ease-in-out;
}

.accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #007bff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

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

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

.user-reviews-section h2 {
    color: #fd7e14; /* Orange */
}

.review-card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #007bff;
}

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

/* Disclaimer Block */
.disclaimer-section {
    background-color: #343a40; /* Dark background */
    color: #fff;
    padding: 3rem 0;
}

.disclaimer-content {
    background-color: #495057; /* Slightly lighter dark background */
    border: 2px solid #ffc107; /* Yellow border */
    padding: 2rem;
    border-radius: 10px;
}

.disclaimer-content h3 {
    color: #ffc107;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-content h3 i {
    font-size: 1.8rem;
}

.disclaimer-content p {
    color: #e9ecef;
    margin-bottom: 1rem;
}

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

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

/* Footer Section */
.footer-section {
    background-color: #212529;
    color: #e9ecef;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-section .site-logo {
    max-height: 60px;
}

.footer-section p {
    color: #adb5bd;
}

.footer-section a {
    color: #e9ecef;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links ul {
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: inline-block;
    margin: 0 10px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* Increased gap for better spacing */
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.footer-img-icon {
    max-width: 120px; /* Max width for images */
    height: auto;
    object-fit: contain;
    filter: none; /* Ensure images remain colorful */
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

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

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

    .featured-card .col-md-5, .featured-card .col-md-7 {
        width: 100%;
    }

    .featured-card img {
        margin-bottom: 1.5rem;
    }

    .navbar-brand {
        position: static;
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 450px;
        padding-top: 80px;
    }

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

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

    .hero-section .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .cookie-banner p {
        margin-bottom: 10px;
    }

    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner .btn {
        flex: 1;
        margin: 0 5px;
    }

    .list-group-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .list-group-item > div:last-child {
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links li {
        margin: 0;
    }

    .footer-badges {
        gap: 1rem;
    }

    .footer-img-icon {
        max-width: 90px;
    }
}/* Container for general content */
.rightsCloudWrap {
    padding-top: 3rem; /* Top padding for the container */
    padding-left: 1rem; /* Left padding for the container */
    padding-right: 1rem; /* Right padding for the container */
    margin-left: auto; /* Center the container horizontally */
    margin-right: auto; /* Center the container horizontally */
    max-width: 1200px; /* Max width for content readability */
}

/* Heading 1 styles */
.rightsCloudWrap h1 {
    font-size: 2.25rem; /* Font size for H1 */
    margin-top: 2rem; /* Top margin for H1 */
    margin-bottom: 1rem; /* Bottom margin for H1 */
    line-height: 1.2; /* Line height for H1 */
    font-weight: 700; /* Bold font weight */
    color: #212529; /* Dark text color */
}

/* Heading 2 styles */
.rightsCloudWrap h2 {
    font-size: 1.75rem; /* Font size for H2 */
    margin-top: 1.75rem; /* Top margin for H2 */
    margin-bottom: 0.8rem; /* Bottom margin for H2 */
    line-height: 1.3; /* Line height for H2 */
    font-weight: 600; /* Semi-bold font weight */
    color: #212529; /* Dark text color */
}

/* Heading 3 styles */
.rightsCloudWrap h3 {
    font-size: 1.5rem; /* Font size for H3 */
    margin-top: 1.5rem; /* Top margin for H3 */
    margin-bottom: 0.7rem; /* Bottom margin for H3 */
    line-height: 1.4; /* Line height for H3 */
    font-weight: 600; /* Semi-bold font weight */
    color: #212529; /* Dark text color */
}

/* Heading 4 styles */
.rightsCloudWrap h4 {
    font-size: 1.25rem; /* Font size for H4 */
    margin-top: 1.25rem; /* Top margin for H4 */
    margin-bottom: 0.6rem; /* Bottom margin for H4 */
    line-height: 1.5; /* Line height for H4 */
    font-weight: 500; /* Medium font weight */
    color: #212529; /* Dark text color */
}

/* Heading 5 styles */
.rightsCloudWrap h5 {
    font-size: 1.125rem; /* Font size for H5 */
    margin-top: 1rem; /* Top margin for H5 */
    margin-bottom: 0.5rem; /* Bottom margin for H5 */
    line-height: 1.5; /* Line height for H5 */
    font-weight: 500; /* Medium font weight */
    color: #212529; /* Dark text color */
}

/* Paragraph styles */
.rightsCloudWrap p {
    font-size: 1rem; /* Base font size for paragraphs */
    margin-bottom: 1rem; /* Bottom margin for paragraphs */
    line-height: 1.7; /* Line height for readability */
    color: #555; /* Slightly lighter text color for body text */
}

/* Unordered list styles */
.rightsCloudWrap ul {
    list-style-type: disc; /* Default disc bullet for unordered lists */
    padding-left: 25px; /* Indentation for list items */
    margin-bottom: 1rem; /* Bottom margin for the entire list */
    color: #555; /* Text color for list items */
}

/* List item styles */
.rightsCloudWrap li {
    font-size: 1rem; /* Font size for list items */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Line height for list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .rightsCloudWrap {
        padding-top: 2rem; /* Adjust top padding for smaller screens */
        padding-left: 0.75rem; /* Adjust side padding for smaller screens */
        padding-right: 0.75rem; /* Adjust side padding for smaller screens */
    }

    .rightsCloudWrap h1 {
        font-size: 1.75rem; /* Smaller H1 for mobile */
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .rightsCloudWrap h2 {
        font-size: 1.5rem; /* Smaller H2 for mobile */
        margin-top: 1.25rem;
        margin-bottom: 0.7rem;
    }

    .rightsCloudWrap h3 {
        font-size: 1.25rem; /* Smaller H3 for mobile */
        margin-top: 1rem;
        margin-bottom: 0.6rem;
    }

    .rightsCloudWrap h4 {
        font-size: 1.125rem; /* Smaller H4 for mobile */
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .rightsCloudWrap h5 {
        font-size: 1rem; /* Smaller H5 for mobile */
        margin-top: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .rightsCloudWrap p,
    .rightsCloudWrap li {
        font-size: 0.9375rem; /* Slightly smaller base font size for mobile */
    }

    .rightsCloudWrap ul {
        padding-left: 20px; /* Slightly less indentation for mobile */
    }
}
.hero-section p {
    color: #fff;
}