body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A1931;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}
html{
  overflow-x: hidden;   
}
h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 600;
}

p {
    color: #CCCCCC;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.btn-primary {
    background-color: #1E90FF;
    border-color: #1E90FF;
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #007bff;
    border-color: #007bff;
    transform: translateY(-2px);
}
.block-btn-df{
    justify-content: center;
    display: flex;flex-wrap: wrap;
    gap: 10px;
}
.btn-outline-light {
    color: #FFFFFF;
    border-color: #FFFFFF;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #FFFFFF;
    color: #0A1931;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #1E90FF;
    border-radius: 2px;
}

/* Age Verification Modal */
#ageVerificationModal .modal-content {
    background-color: #0A1931;
    border: 1px solid #1E90FF;
    border-radius: 10px;
}

#ageVerificationModal .modal-header {
    border-bottom: none;
}

#ageVerificationModal .modal-title {
    color: #FFFFFF;
}

#ageVerificationModal .age-confirm-btn {
    background-color: #1E90FF;
    border-color: #1E90FF;
}

#ageVerificationModal .age-confirm-btn:hover {
    background-color: #007bff;
    border-color: #007bff;
}

#ageVerificationModal .age-decline-btn {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

#ageVerificationModal .age-decline-btn:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #FFFFFF;
}

/* Cookie Banner */
.cookie-banner {
    background-color: #06101D;
    color: #FFFFFF;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1050;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner .btn-sm {
    padding: 0.3rem 0.8rem;
    font-size: 0.875rem;
}

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    background-color: #0A1931;
    border: 1px solid #1E90FF;
    border-radius: 10px;
}

#cookieSettingsModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#cookieSettingsModal .modal-title {
    color: #FFFFFF;
}

#cookieSettingsModal .btn-close-white {
    filter: invert(1);
}

#cookieSettingsModal .form-check-input:checked {
    background-color: #1E90FF;
    border-color: #1E90FF;
}

#cookieSettingsModal .form-check-label {
    color: #FFFFFF;
}

/* Top Age Disclaimer Bar */
.age-disclaimer-bar {
    background-color: red;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.age-disclaimer-bar p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* Header */
.main-header {
    background-color: #0A1931;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1040;
}

.main-header .logo {
    height: 40px;
    width: auto;
}

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

.header-cta-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    animation: zoom-in-bg 3s ease-out forwards;
}

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

.hero-section .hero-content {
    z-index: 2;
}

.hero-section .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section .hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .hero-cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    border-radius: 50px;
}

@keyframes zoom-in-bg {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

/* About Section */
.about-section {
    background-color: #0A1931;
}

.feature-item {
    background-color: #1A2B4C;
    border: 1px solid #1E90FF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

.feature-icon {
    font-size: 3rem;
    color: #1E90FF;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.95rem;
    color: #CCCCCC;
}

/* Gaming Platforms Section (Offers) */
.gaming-platforms-section {
    background-color: #06101D;
}

.offer-card {
    background-color: #1A2B4C;
    border: 1px solid #1E90FF;
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}
.fa-cc-visa {
    color: #3492c9; 
}

.fa-cc-paypal {
    color: #5e95fa; 
}

.fa-cc-mastercard {
    color: #eb001b; 
}

.fa-wallet {
    color: #4caf50; 
}
.offer-image-wrapper {
    flex-shrink: 0;
    width: 100%;
    max-width: 300px;
    height: 200px;
    overflow: hidden;
}

.offer-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.offer-image:hover {
    transform: scale(1.05);
}

.offer-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1E90FF;
}

.offer-description {
    font-size: 1rem;
    color: #CCCCCC;
}

.offer-license {
    font-size: 0.95rem;
    color: #FFFFFF;
}

.offer-license .license-number {
    color: #28a745;
    font-weight: 600;
}

.offer-license .license-link {
    color: #1E90FF;
    margin-left: 5px;
}

.offer-bonus {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
}

.payment-methods i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.offer-cta-btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
}

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

.review-card {
    background-color: #1A2B4C;
    border: 1px solid #1E90FF;
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

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

.review-author {
    color: #1E90FF;
    font-weight: 600;
}

.review-date {
    color: #CCCCCC;
    font-size: 0.85rem;
}

.review-text {
    color: #CCCCCC;
    font-size: 0.95rem;
}

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

.accordion-item {
    background-color: #1A2B4C;
    border: 1px solid #1E90FF;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    background-color: #1A2B4C;
    color: #FFFFFF;
    font-weight: 600;
    padding: 1rem 1.25rem;
    border-bottom: none;
    transition: background-color 0.3s ease;
}
@media (max-width:575px) {
    .accordion-button {
        font-size: 14px;}
}
.accordion-button:not(.collapsed) {
    background-color: #1E90FF;
    color: #FFFFFF;
    box-shadow: none;
}

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

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

.accordion-body {
    background-color: #0A1931;
    color: #CCCCCC;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ANJ Importance Section */
.anj-importance-section {
    background-color: #0A1931;
}

.anj-content {
    background-color: #1A2B4C;
    border: 1px solid #1E90FF;
    color: #CCCCCC;
}

.anj-content p {
    color: #CCCCCC;
    margin-bottom: 1rem;
}

.anj-link {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: #1E90FF;
    border-color: #1E90FF;
}

.anj-link:hover {
    background-color: #1E90FF;
    color: #FFFFFF;
}

/* Important Disclaimer Section */
.disclaimer-section {
    background-color: #06101D;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.disclaimer-box {
    background-color: #1A2B4C;
    border: 2px solid #dc3545;
    color: #CCCCCC;
    position: relative;
    overflow: hidden;
}

.disclaimer-title {
    color: #dc3545;
    font-weight: 700;
    font-size: 2rem;
}

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

.disclaimer-subtitle {
    color: #1E90FF;
    font-weight: 600;
    font-size: 1.3rem;
}

.disclaimer-box ul {
    padding-left: 20px;
}

.disclaimer-box li {
    margin-bottom: 5px;
}

/* Footer */
.footer-section {
    background-color: #0A1931;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section .logo {
    height: 35px;
    width: auto;
}

.footer-section .site-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p, .footer-section li {
    color: #CCCCCC;
    font-size: 0.9rem;
}

.footer-heading {
    color: #1E90FF;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-section a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1E90FF;
}

.trust-badges p {
    margin-bottom: 8px;
    color: #FFFFFF;
}

.trust-badges i {
    color: #1E90FF;
}

.footer-badge-icon {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-top: -5px;
}

.footer-partners {
    margin-top: 30px;
}

.footer-partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    max-width: 120px; /* Adjusted max-width for more logos */
    margin: 10px;
    transition: transform 0.3s ease;
}

.footer-partner-logo:hover {
    transform: translateY(-3px);
}

.footer-partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        height: 60vh;
    }

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

    .hero-section .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-section .hero-cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

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

    .main-header .site-title {
        font-size: 1.5rem;
    }

    .main-header .logo {
        height: 30px;
    }

    .header-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

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

    .offer-image-wrapper {
        max-width: 100%;
        height: 180px;
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }

    .offer-content {
        align-items: center;
    }

    .payment-methods {
        justify-content: center;
    }

    .offer-cta-btn {
        width: 100%;
    }

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

    .disclaimer-subtitle {
        font-size: 1.1rem;
    }

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

    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
}
/*
 * Stock styles for .lawMatrixNode content
 * These styles provide basic typography and spacing
 * for common HTML elements within the .lawMatrixNode container.
 * Font sizes are moderate, avoiding overly large headings.
 */

.lawMatrixNode {
    /*
     * Container padding for internal spacing.
     * Provides breathing room around the content from its edges.
     */
         color: white; /* Dark grey color for prominence */

    padding: 24px 32px;
}

/* Heading 1 styles */
.lawMatrixNode h1 {
    font-size: 28px; /* Moderate size for main headings */
    font-weight: 700; /* Bold text */
    line-height: 1.2; /* Tighter line spacing for headings */
    margin-top: 2em; /* Space above the heading, relative to its font size */
    margin-bottom: 0.8em; /* Space below the heading */
    color: white; /* Dark grey color for prominence */
}

/* Heading 2 styles */
.lawMatrixNode h2 {
    font-size: 24px; /* Slightly smaller than h1 */
    font-weight: 700;
    line-height: 1.25;
    margin-top: 1.8em;
    margin-bottom: 0.7em;
    color: white; /* Dark grey color for prominence */
}

/* Heading 3 styles */
.lawMatrixNode h3 {
    font-size: 20px; /* Further reduced size */
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
     color: white; /* Dark grey color for prominence */

}

/* Heading 4 styles */
.lawMatrixNode h4 {
    font-size: 18px; /* Closer to body text size, but still distinct */
    font-weight: 600; /* Slightly less bold */
    line-height: 1.35;
    margin-top: 1.4em;
    margin-bottom: 0.5em;
      color: white; /* Dark grey color for prominence */

}

/* Heading 5 styles */
.lawMatrixNode h5 {
    font-size: 16px; /* Often the same as body text, but bold */
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.2em;
    margin-bottom: 0.4em;
    color: white; /* Dark grey color for prominence */

}

/* Paragraph styles */
.lawMatrixNode p {
    font-size: 16px; /* Standard base font size for body text */
    line-height: 1.6; /* Generous line spacing for readability */
    margin-bottom: 1em; /* Space between paragraphs */
    color: white; /* Dark grey color for prominence */
 /* Slightly lighter than headings for body text */
}

/* Unordered list styles */
.lawMatrixNode ul {
    list-style-type: disc; /* Default bullet points */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 28px; /* Indent for bullet points to be visible */
     color: white; /* Dark grey color for prominence */

}

/* List item styles */
.lawMatrixNode li {
    margin-bottom: 0.5em; /* Space between individual list items */
    line-height: 1.5; /* Line spacing for list item text */
      color: white; /* Dark grey color for prominence */

}
