/* General Styles */
:root {
    --primary-green: #8BC34A; /* Light Green */
    --dark-green: #689F38;
    --light-green-bg: #F0F8EE; /* Very light green for sections */
    --text-color-dark: #333;
    --text-color-light: #f8f9fa; /* For dark backgrounds */
    --accent-yellow: #FFEB3B; /* For highlights */
    --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color-dark);
    line-height: 1.6;
    background-color: var(--light-green-bg); /* Overall light green background */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-green);
}

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

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

.section-title {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

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

/* 18+ Banner */
.age-restriction-banner {
    background-color: #333;
    color: white;
    font-size: 0.9rem;
}
.age-restriction-banner img {
    vertical-align: middle;
}

/* Navigation */
.navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease-in-out;
}

.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}


/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('graphics/media/social-casino-hero.jpg') no-repeat center center/cover;
    min-height: 80vh;
    position: relative;
    color: var(--text-color-light);
    overflow: hidden; /* For parallax */
    background-attachment: fixed; /* Parallax effect */
}

.hero-section h1 {
    font-size: 5rem;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p.lead {
    font-size: 1.75rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: var(--text-color-light);
}

.hero-section p.hero-slogan {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

/* About Us Section */
.about-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-feature {
    background-color: var(--light-green-bg);
    border: 1px solid rgba(139, 195, 74, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-color);
}

.about-feature .feature-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Games Section */
.games-section {
    background-color: var(--light-green-bg);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.game-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; /* Adjust as needed for carousel height */
}

.game-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    max-width: 400px; /* Limit card width */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.game-img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    max-height: 200px; /* Limit image height */
    object-fit: contain; /* Ensure image fits well */
}

.game-title {
    color: var(--dark-green);
    margin-top: 1.5rem;
    font-size: 1.8rem;
}

.game-description {
    color: var(--text-color-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-green);
    border-radius: 50%;
    padding: 1.2rem;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-green);
}

/* Game Modal */
#gameModal .modal-content {
    background-color: #1a1a1a; /* Dark background for modal */
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

#gameModal .modal-header {
    background-color: #222;
    border-bottom: 1px solid #333;
    color: var(--text-color-light);
}

#gameModal .modal-title {
    color: var(--text-color-light);
}

#gameModal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%); /* Make close button white */
}

#gameModal .modal-body {
    padding: 0;
    position: relative;
    width: 100%;
    height: 80vh; /* Set a fixed height for the iframe container */
}

#gameModal iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.modal-dialog{
    width: 100%!important;
    padding: 30px!important;
    max-width: 100%!important;
}
.coockeirs{
    max-width: 760px!important;
}
/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.form-check-input:disabled~.form-check-label, .form-check-input[disabled]~.form-check-label{
    opacity: 1!important;
    color: black!important;
}
.accordion-item {
    border: 1px solid var(--primary-green);
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--light-green-bg);
    color: var(--dark-green);
    font-weight: 600;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    border: none;
    box-shadow: none;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-green);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 195, 74, 0.25);
}

.accordion-body {
    background-color: #fff;
    color: var(--text-color-dark);
    padding: 1.25rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to right, var(--light-green-bg), var(--primary-green) 150%);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid var(--primary-green);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color-dark);
}

/* Important Disclaimer Section */
.important-disclaimer-section {
    background-color: var(--dark-green); /* Darker green background */
    padding-top: 5rem;
    padding-bottom: 5rem;
    color: var(--text-color-light);
}

.disclaimer-content {
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    border: 2px solid var(--accent-yellow); /* Yellow border */
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.disclaimer-title {
    color: var(--accent-yellow); /* Yellow title */
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.disclaimer-item h4 {
    color: var(--primary-green); /* Light green for sub-titles */
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.disclaimer-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background-color: #222;
    color: var(--text-color-light);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-logo img {
    filter: brightness(0) invert(1); /* Make logo white for dark background */
    height: 40px;
}

.footer-links .list-inline-item a {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 10px;
    transition: color 0.3s ease;
}

.footer-links .list-inline-item a:hover {
    color: var(--primary-green);
    text-decoration: none;
}

.footer-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 1.5rem;
}

.partner-logo-link, .age-18-plus {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* Consistent height for logos */
}

.partner-logo {
    max-width: 120px; /* Set max width as per requirement */
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.age-18-plus {
    max-width: 60px; /* Smaller for 18+ icon */
}

/* Cookie Consent Modal */
#cookieConsentModal .modal-content {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#cookieConsentModal .modal-header {
    background-color: var(--primary-green);
    color: white;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#cookieConsentModal .modal-body {
    padding: 2rem;
    color: var(--text-color-dark);
}

#cookieConsentModal .modal-footer {
    border-top: 1px solid #eee;
    padding: 1rem 2rem;
}

#cookieConsentModal .form-check-input:checked {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

#cookieConsentModal .btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

#cookieConsentModal .btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

#cookieConsentModal .btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

#cookieConsentModal .btn-outline-primary:hover {
    background-color: var(--primary-green);
    color: white;
}

#cookieConsentModal .btn-success {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

#cookieConsentModal .btn-success:hover {
    background-color: #4CAF50; /* A bit lighter green */
    border-color: #4CAF50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .game-card {
        padding: 1.5rem;
    }

    .game-title {
        font-size: 1.5rem;
    }

    #gameModal .modal-body {
        height: 50vh; /* Smaller height for mobile iframe */
    }

    .disclaimer-content {
        padding: 2rem;
    }

    .disclaimer-title {
        font-size: 1.8rem;
    }

    .footer-links .list-inline-item {
        display: block;
        margin-bottom: 0.5rem;
    }
}/* Styles for legal/policy content container */
.legalFoldBox {
    padding: 3rem 1.5rem; /* Padding for top/bottom and sides */
    margin-top: 2rem; /* Margin from the top of the previous section */
    background-color: #ffffff; /* White background for readability */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 15px var(--shadow-color); /* Subtle shadow */
    line-height: 1.7; /* Improved readability for long texts */
    color: var(--text-color-dark); /* Default text color */
}

.legalFoldBox h1 {
    font-size: 2.2rem; /* Moderate size for main headings */
    margin-bottom: 1.5rem; /* Space below heading */
    color: var(--dark-green); /* Heading color */
    font-weight: 700; /* Bold font weight */
}

.legalFoldBox h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    margin-top: 2rem; /* Space above heading */
    margin-bottom: 1rem; /* Space below heading */
    color: var(--dark-green);
    font-weight: 600;
}

.legalFoldBox h3 {
    font-size: 1.5rem; /* Moderate size for sub-headings */
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--dark-green);
    font-weight: 600;
}

.legalFoldBox h4 {
    font-size: 1.3rem; /* Smaller sub-heading */
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--dark-green);
    font-weight: 500;
}

.legalFoldBox h5 {
    font-size: 1.1rem; /* Smallest heading */
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
    font-weight: 500;
}

.legalFoldBox p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1rem; /* Space below paragraphs */
    line-height: 1.7; /* Good line height for text blocks */
    color: var(--text-color-dark);
}

.legalFoldBox ul {
    list-style: disc; /* Default disc bullet points */
    margin-left: 1.5rem; /* Indent list items */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 0; /* No extra padding */
}

.legalFoldBox li {
    font-size: 1rem; /* Standard font size for list items */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Line height for list items */
    color: var(--text-color-dark);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .legalFoldBox {
        padding: 2rem 1rem; /* Reduce padding on smaller screens */
    }

    .legalFoldBox h1 {
        font-size: 1.8rem;
    }

    .legalFoldBox h2 {
        font-size: 1.5rem;
    }

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

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

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

    .legalFoldBox p,
    .legalFoldBox ul,
    .legalFoldBox li {
        font-size: 0.95rem; /* Slightly smaller text for better fit */
    }

    .legalFoldBox ul {
        margin-left: 1rem; /* Reduce list indent */
    }
}
.text-danger{
        animation: blinkSoft 1s infinite;
}

@keyframes blinkSoft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}