/* General Styles */
:root {
    --primary-green: #28a745; /* A vibrant green */
    --dark-green: #1e7e34;   /* Darker shade for hover/active */
    --light-green: #e6ffe6;  /* Very light green for backgrounds */
    --text-color: #333;
    --light-text-color: #f8f9fa;
    --dark-bg-color: #1a1a1a;
    --card-bg-color: #ffffff;
    --border-color: #ddd;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --error-color: #dc3545;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-green);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: var(--primary-green);
    text-decoration: none;
}

a:hover {
    color: var(--dark-green);
}

h1, h2, h3, h4 {
    color: var(--dark-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: -1rem auto 3rem auto;
    font-size: 1.1rem;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: none; /* No animations */
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--light-text-color);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    color: var(--light-text-color);
}

.btn-secondary {
    background-color: #6c757d;
    color: var(--light-text-color);
}

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

.btn-tertiary {
    background-color: #007bff;
    color: var(--light-text-color);
}

.btn-tertiary:hover {
    background-color: #0056b3;
}

/* Header */
.header {
    background-color: var(--dark-bg-color);
    padding: 15px 0;
    box-shadow: 0 2px 5px var(--shadow-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px; /* Adjust as needed */
    width: auto;
}

.nav-menu a {
    color: var(--light-text-color);
    margin-left: 20px;
    font-weight: 600;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
    padding: 20px 0;
}

@media screen and (max-width: 500px) {
    .hero-section {
        padding: 60px 0;
    }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}



.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--light-text-color);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-text-color);
}

/* About Us Section */
.about-us-section {
    padding: 80px 0;
    background-color: var(--light-green);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 30px;
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    background-color: var(--card-bg-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.advantage-item {
    text-align: center;
    padding: 20px;
}

.advantage-item i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.advantage-item p {
    color: #666;
}

/* Rating Grid Section */
.rating-grid-section {
    padding: 80px 0;
    background-color: #f0fdf0;
}

.rating-cards-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Center the single card */
    gap: 30px;
    flex-wrap: wrap;

    .platform-img {
        width: calc(60% - 30px);
        object-fit: contain;
    }
}

@media screen and (max-width: 820px){
    .rating-cards-wrapper {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;

        .platform-img {
            width: calc(80% - 30px);
        }

        .rating-card {
            width: 100%;
        }
    }
}

.rating-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    padding: 25px;
    text-align: center;
    max-width: 350px;
    width: 100%;
    box-sizing: border-box;
    width: calc(30% - 30px);


}

.rating-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.rating-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.rating-stars {
    color: #ffc107; /* Star color */
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating-stars i {
    margin-right: 3px;
}

.rating-stars span {
    color: var(--text-color);
    font-weight: 600;
    margin-left: 8px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.features-list li {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 1.1rem;
}

.bonus-info {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.bonus-info .highlight {
    color: var(--error-color);
}

.cta-button {
    padding: 15px 30px;
}

.muDiscList li{
    list-style: none;
}

/* Bonus List Section */
.bonus-list-section {
    padding: 80px 0;
    background-color: var(--light-green);
}

.bonus-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.bonus-item i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.bonus-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.bonus-item p {
    color: #666;
    margin-bottom: 15px;
}

.popularity-indicator {
    display: inline-flex;
    align-items: center;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;

}

.popularity-indicator i {
    font-size: 1rem;
    color: var(--primary-green);
    margin-right: 5px;
    margin-bottom: 0;

}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f0fdf0;
}

.faq-items {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: var(--card-bg-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: var(--dark-green);
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--border-color);
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-green);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0s ease-out; /* No smooth transition */
}

.faq-answer.open {
    max-height: 500px; /* Sufficiently large value */
    padding: 20px;
    transition: max-height 0s ease-in; /* No smooth transition */
}

.faq-answer p {
    margin: 0;
    color: #555;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: var(--light-green);
}

.news-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-article {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    overflow: hidden;
    text-align: center;
}

.news-article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.news-article h4 {
    font-size: 1.3rem;
    padding: 15px 20px 5px;
    color: var(--dark-green);
}

.news-article p {
    padding: 0 20px 15px;
    color: #666;
    font-size: 0.95rem;
}

/* Recommendations Section */
.recommendations-section {
    padding: 80px 0;
    background-color: #f0fdf0;
}

.recommendation-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.recommendation-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    overflow: hidden;
    text-align: center;
}

.recommendation-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.recommendation-card h4 {
    font-size: 1.3rem;
    padding: 15px 20px 5px;
    color: var(--dark-green);
}

.recommendation-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-green);
}

.contact-form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-green);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    
}

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none; /* Hidden by default */
}

.form-group.invalid .error-message {
    display: block;
}

.form-group.invalid input, .form-group.invalid textarea {
    border-color: var(--error-color);
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.contact-info h3 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
}

.contact-info i {
    color: var(--primary-green);
    margin-right: 10px;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fff3cd; /* Light yellow background for warning */
    padding: 40px 0;
    margin-top: 50px;
    border-top: 2px solid #ffc107; /* Yellow border */
    border-bottom: 2px solid #ffc107;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border: 1px solid #ffc107; /* Inner border */
    border-radius: 8px;
    background-color: #fff9e6; /* Slightly lighter inner background */
}

.disclaimer-icon {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 15px;
}

.disclaimer-content h3 {
    color: #856404; /* Darker yellow text */
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.disclaimer-content p {
    color: #856404;
    line-height: 1.8;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-bg-color);
    color: var(--light-text-color);
    padding: 50px 0 20px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-text-color);
}

.footer-column ul li a:hover {
    color: var(--primary-green);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-partners {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
}

.partner-logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.partner-logos-wrapper img {
    max-width: 150px;
    height: auto;
    width: auto;
    flex-shrink: 0;
}

.age-restriction-icon {
    max-width: 60px !important;
    height: auto;
    vertical-align: middle;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Modal Overlay (for 18+ and Cookie) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0s; /* No animation */
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

/* 18+ Modal Specifics */
.age-modal h2 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

.age-modal p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.age-modal .btn {
    margin: 0 10px;
}

/* Cookie Modal Specifics */
.cookie-modal h3 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

.cookie-modal p {
    margin-bottom: 20px;
    color: #555;
}

.cookie-categories {
    text-align: left;
    margin-bottom: 20px;
}

.category-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.category-item input[type="checkbox"] {
    margin-right: 10px;
    min-width: 18px;
    min-height: 18px;
}

.category-item label {
    font-weight: 600;
    color: var(--dark-green);
    flex-grow: 1;
}

.category-item .category-desc {
    font-size: 0.85rem;
    color: #777;
    margin-left: 28px; /* Align with label text */
    flex-basis: 100%;
    margin-top: 5px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cookie-settings-panel {
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    display: none; /* Hidden by default */
    text-align: left;
}

.cookie-settings-panel.active {
    display: block;
}

.cookie-settings-panel h4 {
    margin-top: 0;
    color: var(--dark-green);
}

.cookie-settings-panel .btn-primary {
    margin-top: 20px;
    width: auto;
    padding: 10px 20px;
}

.cookie-policy-link {
    font-size: 0.9rem;
    color: #777;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    .nav-menu {
        margin-top: 15px;
    }
    .nav-menu a {
        margin: 0 10px;
    }
    .hero-section {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .advantages-grid, .bonus-items-grid, .news-articles-grid, .recommendation-cards-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column ul {
        margin-bottom: 20px;
    }
    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .cookie-buttons .btn {
        width: 100%;
    }
    .age-modal .btn {
        margin: 10px 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .logo img, .footer-logo {
        height: 35px;
    }
    .nav-menu a {
        font-size: 0.9rem;
        margin: 0 8px;
    }
    .disclaimer-content h3 {
        font-size: 1.5rem;
    }
    .disclaimer-content p {
        font-size: 0.9rem;
    }
    .partner-logos-wrapper img {
        max-width: 100px;
    }
    .age-restriction-icon {
        max-width: 50px !important;
    }
    .cookie-modal, .age-modal {
        padding: 20px;
    }
    .cookie-modal h3 {
        font-size: 1.3rem;
    }
}
/* New styles for content within .policyScopeWrap */

.policyScopeWrap {
    /* Container for policy or general text content */
    max-width: 900px; /* Limits content width for better readability */
    margin: 40px auto; /* Top and bottom margin, centers horizontally */
    padding: 0 20px; /* Left and right padding for responsiveness on smaller screens */
    color: var(--text-color); /* Default text color from root variables */
    background-color: var(--card-bg-color); /* Light background for contrast */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    line-height: 1.7; /* General line height for improved readability */
}

.policyScopeWrap h1 {
    /* Main heading within the policy content */
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2.5rem; /* Space above the heading */
    margin-bottom: 1.5rem; /* Space below the heading */
    color: var(--dark-green); /* Heading color from root variables */
}

.policyScopeWrap h2 {
    /* Secondary heading */
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    color: var(--dark-green);
}

.policyScopeWrap h3 {
    /* Tertiary heading */
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.policyScopeWrap h4 {
    /* Quaternary heading */
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark-green);
}

.policyScopeWrap h5 {
    /* Quinary heading */
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--dark-green);
}

.policyScopeWrap p {
    /* Standard paragraph text */
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0; /* Resets default browser margin */
    margin-bottom: 1rem; /* Space between paragraphs */
}

.policyScopeWrap ul {
    /* Unordered list styling */
    list-style: disc; /* Default bullet points */
    padding-left: 25px; /* Indent for bullet points */
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.policyScopeWrap ol {
    /* Ordered list styling */
    list-style: decimal; /* Default numbered list */
    padding-left: 25px; /* Indent for numbers */
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.policyScopeWrap li {
    /* List item styling for both ul and ol */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem; /* Space between list items */
}

/* Responsive adjustments for policyScopeWrap padding and font sizes */
@media (max-width: 768px) {
    .policyScopeWrap {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0 15px; /* Adjust side padding for smaller screens */
    }
    .policyScopeWrap h1 {
        font-size: 2rem;
    }
    .policyScopeWrap h2 {
        font-size: 1.6rem;
    }
    .policyScopeWrap h3 {
        font-size: 1.3rem;
    }
    .policyScopeWrap h4 {
        font-size: 1.1rem;
    }
    .policyScopeWrap h5 {
        font-size: 1rem;
    }
    .policyScopeWrap p,
    .policyScopeWrap li {
        font-size: 0.95rem; /* Slightly smaller text for better fit on small screens */
    }
}

.feedbackBlock{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}