body {
    font-family: 'Poppins', sans-serif;
    background-color: #1A1A1A;
    color: #D3D3D3;
    scroll-behavior: smooth;
    margin-top: 70px; 
}

.site-title {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.text-light-grey {
    color: #D3D3D3;
}

.text-violet-link {
    color: #c190ed;
}

.text-violet-link:hover {
    color: #6A0DAD;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8A2BE2; 
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.section-dark {
    background-color: #1A1A1A;
    color: #D3D3D3;
}

.section-light {
    background-color: #2C2C2C;
    color: #D3D3D3;
}

/* Buttons */
.btn-primary-violet {
    background-color: #8A2BE2;
    border-color: #8A2BE2;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary-violet:hover {
    background-color: #6A0DAD;
    border-color: #6A0DAD;
    color: #FFFFFF;
}

.btn-secondary-grey {
    background-color: #444444;
    border-color: #444444;
    color: #D3D3D3;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary-grey:hover {
    background-color: #555555;
    border-color: #555555;
    color: #FFFFFF;
}

.btn-outline-violet {
    border-color: #8A2BE2;
    color: #8A2BE2;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-violet:hover {
    background-color: #8A2BE2;
    color: #FFFFFF;
}

/* Header */
#mainHeader {
    background-color: #1A1A1A;
    border-bottom: 1px solid #444444;
    z-index: 1030;
}

.navbar-brand .site-title {
    color: #FFFFFF;
}

.navbar-nav .nav-link {
    color: #D3D3D3;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #8A2BE2;
}

.navbar-toggler {
    border-color: #8A2BE2;
}

.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%28138, 43, 226, 1%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-image: url(static/uploads/hero-background_19.webp); 
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 70px; 
    padding-bottom: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.hero-section h1 {
    color: #FFFFFF;
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    color: #D3D3D3;
    font-size: 1.25rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-cta-btn {
    padding: 15px 35px;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Games Section */
.game-card {
    background-color: #2C2C2C;
    border: 1px solid #444444;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #444444;
}

.game-card .card-body {
    padding: 20px;
    color: #D3D3D3;
}

.game-card .card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #8A2BE2;
    margin-bottom: 5px;
}

.game-card .card-subtitle {
    font-size: 1rem;
    color: #D3D3D3;
    margin-bottom: 15px;
}

.game-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.game-card .card-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.game-card .card-text ul li {
    margin-bottom: 5px;
}

.game-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.play-game-btn {
    font-weight: 600;
}

/* About Our Platform Section */
.about-section img {
    max-height: 400px;
    object-fit: cover;
}

/* Our Advantages Section */
.advantage-card {
    background-color: #1A1A1A;
    border: 1px solid #444444;
    border-radius: 10px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(138, 43, 226, 0.2);
}

.advantage-card .icon-large {
    font-size: 3rem;
    color: #8A2BE2;
}

.advantage-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.advantage-card .card-text {
    color: #D3D3D3;
}

/* How It Works Section */
.step-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background-color: #8A2BE2;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.step-item h3 {
    color: #8A2BE2;
    font-weight: 600;
    font-size: 1.75rem;
}

.step-item p {
    color: #D3D3D3;
}

/* FAQ Section */
.accordion-item {
    background-color: #1A1A1A;
    border: 1px solid #444444;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    background-color: #2C2C2C;
}

.accordion-button {
    background-color: #2C2C2C;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 15px 20px;
    border: none;
    text-align: left;
    transition: background-color 0.3s ease;
}

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

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background-color: #1A1A1A;
    color: #D3D3D3;
    padding: 20px;
    border-top: 1px solid #444444;
}

/* What Our Players Say Section (Reviews) */
.review-card {
    background-color: #2C2C2C;
    border: 1px solid #444444;
    border-radius: 10px;
    height: 100%;
    color: #D3D3D3;
}

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

.review-card h4 {
    color: #FFFFFF;
    font-weight: 600;
}

.text-muted-custom {
    color: #999999;
}

/* Contact Form Section */
.contact-form-container {
    background-color: #1A1A1A;
    border: 1px solid #444444;
}

.contact-form-container .form-label {
    color: #D3D3D3;
    font-weight: 600;
}

.contact-form-container .form-control {
    background-color: #2C2C2C;
    border: 1px solid #444444;
    color: #FFFFFF;
}

.contact-form-container .form-control::placeholder {
    color: #999999;
}

.contact-form-container .form-control:focus {
    background-color: #3A3A3A;
    border-color: #8A2BE2;
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
    color: #FFFFFF;
}

.contact-form-container .invalid-feedback {
    color: #ff6b6b;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #1A1A1A;
    padding-top: 50px;
    padding-bottom: 50px;
}

.disclaimer-content {
    background-color: #2C2C2C;
    border: 2px solid #6A0DAD;
    color: #D3D3D3;
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.4);
}

.disclaimer-title {
    color: #8A2BE2;
    font-weight: 700;
    font-size: 1.8rem;
}

.disclaimer-title i {
    color: #FFD700;
}

.support-info p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer-dark {
    background-color: #1A1A1A;
    color: #D3D3D3;
    border-top: 1px solid #444444;
}

.footer-brand .site-title {
    color: #FFFFFF;
}

.footer-dark h5 {
    color: #FFFFFF;
    font-weight: 600;
}

.footer-dark ul li a {
    color: #D3D3D3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dark ul li a:hover {
    color: #8A2BE2;
}

.footer-partners {
    border-bottom: 1px solid #444444;
    padding-bottom: 25px;
    margin-bottom: 25px !important;
}

.footer-partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.footer-partner-logo {
    max-width: 145px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Age Verification Modal */
.age-verification-modal,
.cookie-consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

.age-verification-modal.show,
.cookie-consent-modal.show {
    visibility: visible;
    opacity: 1;
}

.modal-content-age,
.modal-content-cookie {
    background-color: #2C2C2C;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    color: #D3D3D3;
    border: 1px solid #444444;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.modal-logo {
    width: 80px;
    margin-bottom: 20px;
}

.modal-content-age h2,
.modal-content-cookie h3 {
    color: #8A2BE2;
    margin-bottom: 15px;
}

.modal-content-age p,
.modal-content-cookie p {
    font-size: 1rem;
    line-height: 1.6;
}

.cookie-categories {
    background-color: #1A1A1A;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #444444;
    margin-top: 20px;
    text-align: left;
}

.form-check-label {
    color: #D3D3D3;
}

.form-check-input:checked {
    background-color: #8A2BE2;
    border-color: #8A2BE2;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

/* Game Modal */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1040;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

.game-modal.show {
    visibility: visible;
    opacity: 1;
}

.game-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.game-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #8A2BE2;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1041;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
    transition: background-color 0.3s ease;
}

.game-modal-close:hover {
    background-color: #6A0DAD;
}

.game-modal iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #1A1A1A;
        border-top: 1px solid #444444;
        padding: 15px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        text-align: center;
    }

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

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

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

    .step-item {
        padding-left: 0;
    }

    .step-number {
        position: static;
        margin-bottom: 10px;
    }

    .footer-partners .col-12 {
        flex-direction: column;
        gap: 15px;
    }

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

@media (max-width: 767.98px) {
    body {
        margin-top: 60px;
    }

    #mainHeader {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero-section {
        min-height: 80vh;
        padding-top: 60px;
    }

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

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

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

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

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

    .game-card img {
        height: 180px;
    }

    .advantage-card .icon-large {
        font-size: 2.5rem;
    }

    .advantage-card .card-title {
        font-size: 1.3rem;
    }

    .step-item h3 {
        font-size: 1.5rem;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

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

    .footer-partners .col-12 {
        gap: 10px;
    }

    .footer-partner-logo {
        max-width: 80px;
    }
}
/*
 * New stock styles for common HTML elements within .rightsCloudWrap.
 * Font sizes are kept moderate for headings as requested.
 */

.rightsCloudWrap {
    /* Padding for the main container: top and sides */
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    /* Optional: You might want to add max-width and margin: auto; for better content readability on very large screens,
       but it's not explicitly requested here. */
}

/* Paragraph styles */
.rightsCloudWrap p {
    font-size: 1rem; /* Base font size, typically 16px */
    line-height: 1.6; /* For good readability */
    margin-top: 0;
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Heading styles (h1-h5) - Moderate sizes as requested */
.rightsCloudWrap h1 {
    font-size: 1.7rem; /* Approximately 27.2px (if base 16px) */
    line-height: 1.2;
    margin-top: 1.5em; /* Space above heading */
    margin-bottom: 0.8em; /* Space below heading */
    font-weight: 700; /* Bold */
}

.rightsCloudWrap h2 {
    font-size: 1.5rem; /* Approximately 24px */
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    font-weight: 700;
}

.rightsCloudWrap h3 {
    font-size: 1.3rem; /* Approximately 20.8px */
    line-height: 1.4;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: 700;
}

.rightsCloudWrap h4 {
    font-size: 1.15rem; /* Approximately 18.4px */
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.rightsCloudWrap h5 {
    font-size: 1.05rem; /* Approximately 16.8px */
    line-height: 1.5;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    font-weight: 700;
}

/* Unordered list styles */
.rightsCloudWrap ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 25px; /* Indentation for bullet points */
}

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