/* General Styles */
* {
    font-family: 'Poppins', sans-serif;
    color: #F8F9FA; /* Default text color for overall readability */
}

body {
    background-color: #1A0D33; /* Dark purple background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a {
    text-decoration: none;
    color: #FFC107; /* Gold for links */
}

a:hover {
    color: #FFD700; /* Lighter gold on hover */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #ffffffb3; /* White for headings */
}

/* Buttons */
.btn-primary {
    background-color: #6A0DAD; /* Deep Purple */
    border-color: #6A0DAD;
    color: #FFFFFF;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #4B0082; /* Darker Purple */
    border-color: #4B0082;
    color: #FFFFFF;
}

.btn-warning {
    background-color: #FFC107; /* Gold */
    border-color: #FFC107;
    color: #343A40; /* Dark text on gold */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-warning:hover {
    background-color: #FFD700; /* Lighter Gold */
    border-color: #FFD700;
    color: #343A40;
}

.btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
}


/* Navbar */
.navbar {
    background-color: rgba(26, 13, 51, 0.95); /* Semi-transparent dark purple */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand .logo-img {
    height: 80px; /* Adjust logo size */
    width: auto;
}

.navbar-brand .site-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFC107; /* Gold for site title */
}

.navbar-nav .nav-link {
    color: #F8F9FA !important; /* White for nav links */
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #FFC107 !important; /* Gold on hover/active */
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px!important; /* Space for fixed navbar */
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

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

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #E0E0E0;
}

.hero-section .stats-row {
    color: #FFC107;
}

.hero-section .stats-row i {
    color: #FFC107; /* Teal accent for icons */
}

.hero-cta {
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, #1A0D33, #2A1A4D); /* Gradient background */
}

.about-card {
    background-color: rgba(42, 26, 77, 0.8); /* Slightly lighter purple for cards */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.about-card .card-title {
    color: #FFC107; /* Gold for card titles */
}

.about-card .card-text {
    color: #E0E0E0;
}

/* Games Section */
.games-section {
    background-color: #1A0D33;
    position: relative;
}

.game-card {
    background-color: rgba(42, 26, 77, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width:575px) {
    .game-card {
    padding: 15px;
    }
}
.game-card img {
    height: 400px;
    object-fit: cover;
    width: 80%;
    border: 3px solid #FFC107;
    object-position: top;
}

.game-title {
    color: #FFC107;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.game-rating i {
    color: #FFD700; /* Gold stars */
    font-size: 1.2rem;
}

.game-description {
    color: #E0E0E0;
    margin-bottom: 1.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none; /* Remove default Bootstrap icons */
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* Make navigation buttons smaller */
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 3rem; /* Larger icons */
    color: #FFC107; /* Gold for navigation arrows */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Game Modal */
.game-modal-content {
    background-color: #1A0D33; /* Dark background for modal */
    border: 1px solid #FFC107;
    border-radius: 15px;
}

.game-modal-content .modal-header {
    border-bottom: none;
}

.game-modal-content .modal-title {
    color: #FFC107;
}

.game-modal-content .btn-close {
    filter: invert(1); /* Make close button white */
}

.game-modal-content iframe {
    border: none;
    border-radius: 10px;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(to top, #1A0D33, #2A1A4D);
}

.step-card {
    background-color: rgba(42, 26, 77, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-card i {
    color: #FFC107; /* Gold for icons */
}

.step-card h3 {
    color: #FFC107;
}

.step-card p {
    color: #E0E0E0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #1A0D33;
}

.testimonial-card {
    background-color: rgba(42, 26, 77, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-card .avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid #FFC107;
}

.testimonial-card h5 {
    color: #FFC107;
}

.testimonial-card .text-muted {
    color: #B0B0B0 !important; /* Lighter grey for small text */
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: rgba(255, 193, 7, 0.3); /* Transparent gold for background quote icon */
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 0;
}

.testimonial-card .card-text {
    color: #E0E0E0;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #6A0DAD, #4B0082); /* Purple gradient */
    padding: 80px 0;
}

.cta-btn {
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
}

/* Newsletter Form Section */
.newsletter-section {
    background-color: #2A1A4D; /* Darker purple for the form section */
}

.newsletter-form {
    background-color: rgba(26, 13, 51, 0.9); /* Even darker, semi-transparent background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.newsletter-form .form-label {
    color: #FFC107; /* Gold for labels */
    font-weight: 600;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #F8F9FA;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #FFC107;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.newsletter-form .form-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

.newsletter-form .form-check-label {
    color: #E0E0E0;
}

.newsletter-form .form-check-input:checked {
    background-color: #FFC107;
    border-color: #FFC107;
}

.newsletter-form .invalid-feedback {
    color: #dc3545; /* Red for error messages */
}

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

.faq-item {
    background-color: rgba(42, 26, 77, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden; /* Ensure border-radius applies */
}

.faq-item .accordion-button {
    background-color: rgba(42, 26, 77, 0.8);
    color: #FFC107; /* Gold for question text */
    font-weight: 600;
    padding: 15px 20px;
    border: none;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    color: #FFD700; /* Lighter gold when open */
    background-color: rgba(42, 26, 77, 0.9);
}

.faq-item .accordion-button::after {
    filter: invert(1) brightness(2); /* Make arrow visible and bright */
}

.faq-item .accordion-body {
    background-color: rgba(26, 13, 51, 0.95); /* Darker background for answer */
    color: #E0E0E0;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, #1A0D33, #2A1A4D);
}

.contact-info {
    background-color: rgba(42, 26, 77, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-list li {
    color: #E0E0E0;
    font-size: 1.1rem;
}

.contact-list li i {
    color: #FFC107; /* Gold for icons */
}

.contact-list li a {
    color: #FFC107;
}

.contact-list li a:hover {
    color: #FFD700;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #1A0D33; /* Dark background for separation */
    padding: 50px 0;
}

.disclaimer-content {
    background-color: #2A1A4D; /* A distinct, slightly lighter purple */
    border: 2px solid #dc3545; /* Red border for warning */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.4); /* Red glow */
    color: #E0E0E0; /* Light text */
}

.disclaimer-content h3 {
    color: #dc3545; /* Red for the disclaimer title */
    font-weight: bold;
}

.disclaimer-content p {
    color: #F8F9FA; /* White for text */
    margin-bottom: 1rem;
}

.disclaimer-content a {
    color: #dc3545; /* Red for links within disclaimer */
    font-weight: bold;
}

.disclaimer-content a:hover {
    color: #ff4d4d; /* Lighter red on hover */
}

/* Footer */
.footer {
    background-color: #0F081C; /* Even darker purple for footer */
    color: #F8F9FA;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-brand .logo-img-footer {
    height: 80px; /* Adjust logo size */
    width: auto;
}

.footer-brand .site-title-footer {
    font-weight: 700;
    font-size: 1.3rem;
    color: #FFC107;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #FFC107 !important;
}

.social-icons li a {
    font-size: 1.5rem;
    color: #FFC107;
    transition: color 0.3s ease;
}

.social-icons li a:hover {
    color: #FFD700;
}

.responsible-gaming-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between logos */
}

.footer-logo {
    max-width: 120px; /* Limit width as per requirement */
    height: auto;
    object-fit: contain;
}

.footer-logo-18plus {
    max-width: 60px; /* Smaller for 18+ icon */
    height: auto;
    object-fit: contain;
    vertical-align: middle;
}

/* Age Verification Modal */
.age-verification-content {
    background-color: #2A1A4D; /* Darker purple */
    border: 1px solid #FFC107;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.age-verification-content .modal-title {
    color: #FFC107;
    font-weight: bold;
}

.age-verification-content .modal-body p {
    color: #E0E0E0;
}

/* Cookie Banner */
.cookie-banner {
    background-color: rgba(0, 0, 0, 0.9);
    color: #F8F9FA;
    padding: 15px 0;
    z-index: 1050; /* Above other content, below modals */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none; /* Hidden by default, shown by JS */
}

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

.cookie-banner a {
    color: #FFC107;
    font-weight: 600;
}

.cookie-banner .btn {
    white-space: nowrap; /* Prevent buttons from wrapping text */
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(26, 13, 51, 0.98);
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        text-align: center;
        margin: 5px 0;
    }

    .hero-section {
        padding-top: 80px!important;
    }

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

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

    .hero-section .stats-row p {
        font-size: 1.1rem;
    }

    .footer-brand, .footer-links, .social-icons {
        justify-content: center !important;
    }

    .responsible-gaming-logos {
        gap: 15px;
    }

    .footer-logo {
        max-width: 100px;
    }
}

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

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

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

    .hero-cta {
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
}/* Styles for the .rightsFieldUnit container and its content */
.rightsFieldUnit {
    /* Padding for the content section, providing space from edges */
    padding: 60px 30px;
    /* Default text color for content within this unit */
    color: #F8F9FA; 
    /* Optional: Background color if this unit is a distinct section.
       Adjust or remove if it inherits from a parent section. */
    background-color: #1A0D33; 
}

/* Headings within .rightsFieldUnit - designed to be moderate in size */
.rightsFieldUnit h1 {
    font-size: 2.2rem; /* Moderate font size for H1 */
    margin-bottom: 1.5rem; /* Space below the heading */
    color: #F8F9FA; /* White color for headings */
}

.rightsFieldUnit h2 {
    font-size: 2.8rem; /* Moderate font size for H2 */
    margin-bottom: 1.2rem;
    color: #F8F9FA;
    margin-top: 80px;
}

.rightsFieldUnit h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    margin-bottom: 1rem;
    color: #F8F9FA;
}

.rightsFieldUnit h4 {
    font-size: 1.2rem; /* Moderate font size for H4 */
    margin-bottom: 0.8rem;
    color: #F8F9FA;
}

.rightsFieldUnit h5 {
    font-size: 1rem; /* Moderate font size for H5 */
    margin-bottom: 0.7rem;
    color: #F8F9FA;
}

/* Paragraphs within .rightsFieldUnit */
.rightsFieldUnit p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Improved readability for paragraphs */
    margin-bottom: 1rem; /* Spacing between paragraphs */
    color: #E0E0E0; /* Slightly lighter text for readability on dark background */
}

/* Unordered lists within .rightsFieldUnit */
.rightsFieldUnit ul {
    list-style-type: disc; /* Default disc bullets */
    margin-bottom: 1rem; /* Spacing after the list */
    padding-left: 25px; /* Indentation for list items, standard for bullets */
}

/* List items within .rightsFieldUnit */
.rightsFieldUnit li {
    font-size: 1rem; /* Standard font size for list items */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
    color: #E0E0E0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .rightsFieldUnit {
        padding: 40px 15px; /* Adjust padding for mobile devices */
    }

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

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

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

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

    .rightsFieldUnit h5 {
        font-size: 0.95rem;
    }

    .rightsFieldUnit p,
    .rightsFieldUnit ul,
    .rightsFieldUnit li {
        font-size: 0.95rem; /* Slightly smaller text on mobile for better fit */
    }
}
.thumb-cards{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
justify-content: center;
}
.block-cards{
    width: 100%;
 
}
@media (min-width:991px) {
    .block-cards{
   width: calc(50% - 30px);

}
}