body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #f8f8f8;
    line-height: 1.6;

}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #ff8c00; /* Orange for headings */
    font-weight: 700;
}

a {
    color: #ff8c00;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffa500;
}

.btn-primary {
    background-color: #ff8c00;
    border-color: #ff8c00;
    color: #0a0a0a;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #ffa500;
    border-color: #ffa500;
    color: #0a0a0a;
}

.btn-secondary {
    background-color: #333;
    border-color: #333;
    color: #f8f8f8;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #555;
    border-color: #555;
    color: #f8f8f8;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 10px;
    color: #ff8c00;
}

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

/* Age Gate */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-gate-overlay.show {
    opacity: 1;
    visibility: visible;
}

.age-gate-modal {
    background-color: #1a1a1a;
    color: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #ff8c00;
}

.age-gate-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.age-gate-modal h2 {
    color: #ff8c00;
    margin-bottom: 20px;
}

.age-gate-modal p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.age-gate-support-text {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: -15px;
    margin-bottom: 30px;
}

.age-gate-buttons .age-gate-btn {
    font-size: 1.1rem;
    padding: 10px 30px;
    margin: 0 10px;
    min-width: 120px;
}

/* Header */
.header-main {
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1030;
}

.navbar-brand .logo-img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #f8f8f8 !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff8c00 !important;
}

.navbar-toggler {
    border-color: #ff8c00;
}

a.navbar-brand {
    color: #FFEB3B;
}

.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, 140, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-disclaimer {
    background-color: #222;
    padding: 10px 0;
    font-size: 0.9rem;
    color: #bbb;
}

.header-disclaimer p {
    margin-bottom: 0;
}

.header-disclaimer a {
    color: #ff8c00;
    text-decoration: underline;
}

.header-disclaimer a:hover {
    color: #ffa500;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    background-size: cover;
    background-position: center center;
    position: relative;
    margin-top: 0; /* Override body margin-top */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

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

.hero-section h1 {
    font-size: 3.5rem;
    color: #ff8c00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section .lead {
    font-size: 1.5rem;
    color: #f8f8f8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-features {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.hero-features li {
    background-color: rgba(255, 140, 0, 0.1);
    border: 1px solid #ff8c00;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    color: #f8f8f8;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.hero-features li i {
    color: #ff8c00;
}

/* About Section */
.about-section {
    background-color: #1a1a1a;
}

/* Casinos Section */
.casinos-section {
    background-color: #0a0a0a;
}

.casino-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.casino-image-link {
    display: block;
    flex-shrink: 0;
}

.casino-logo {
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.casino-details {
    flex-grow: 1;
}

.casino-title {
    color: #ff8c00;
    font-size: 2rem;
    margin-bottom: 10px;
}

.casino-bonus {
    font-size: 1.1rem;
    color: #f8f8f8;
    margin-bottom: 15px;
}

.casino-description {
    color: #ccc;
    margin-bottom: 15px;
}

.casino-advantages {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.casino-advantages li {
    color: #f8f8f8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.casino-advantages li i {
    color: #28a745;
    margin-right: 10px;
}

.casino-license-info {
    font-size: 0.9rem;
    color: #bbb;
}

.casino-license-info a {
    color: #ff8c00;
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.payment-label {
    font-weight: 600;
    color: #f8f8f8;
    margin-right: 10px;
    margin-bottom: 5px;
}

.payment-methods i {
    font-size: 1.8rem;
    color: #ff8c00;
    margin-right: 10px;
    margin-bottom: 5px;
}

.casino-btn {
    padding: 10px 25px;
    font-size: 1.1rem;
}

/* ANJ Info Section */
.anj-info-section {
    background-color: #1a1a1a;
}

.anj-img {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    background-color: #0a0a0a;
}

.responsible-gaming-img {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
}

/* Newsletter Form Section */
.newsletter-form-section {
    background-color: #1a1a1a;
}

.form-container {
    background-color: #222;
    border: 1px solid #333;
}

.form-label {
    color: #f8f8f8;
    font-weight: 600;
}

.form-control {
    background-color: #333;
    border: 1px solid #555;
    color: #f8f8f8;
}

.form-control:focus {
    background-color: #444;
    border-color: #ff8c00;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
    color: #f8f8f8;
}

.form-text {
    color: #bbb;
    font-size: 0.85rem;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.85rem;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #222;
    padding: 40px 0;
    border-top: 3px solid #ff8c00;
    border-bottom: 3px solid #ff8c00;
    color: #f8f8f8;
}

.disclaimer-content {
    background-color: #1a1a1a;
    border: 1px solid #333;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.disclaimer-title {
    color: #ff8c00;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

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

.disclaimer-subtitle {
    color: #f8f8f8;
    font-size: 1.4rem;
    margin-top: 30px;
}

.disclaimer-subtitle i {
    color: #ff8c00;
}

.disclaimer-block p {
    color: #ccc;
}

.disclaimer-block ul {
    padding-left: 0;
    list-style: none;
}

.disclaimer-block ul li {
    margin-bottom: 8px;
    color: #ccc;
}

.disclaimer-block ul li i {
    color: #ff8c00;
    margin-right: 10px;
}

.disclaimer-block a {
    color: #ff8c00;
    text-decoration: underline;
}

.disclaimer-block a:hover {
    color: #ffa500;
}

/* Footer */
.footer-main {
    background-color: #000;
    color: #f8f8f8;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

.footer-logo {
    max-width: 120px;
    height: auto;
}

.footer-text {
    color: #ccc;
    margin-bottom: 5px;
}

.footer-text a {
    color: #ff8c00;
    text-decoration: underline;
}

.footer-text a:hover {
    color: #ffa500;
}

.footer-heading {
    color: #ff8c00;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links {
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

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

.footer-links a:hover {
    color: #ff8c00;
}

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

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

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

.age-restriction-icon {
    font-size: 1.1rem;
    color: #dc3545;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    background-color: rgba(220, 53, 69, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #dc3545;
}

.age-restriction-icon i {
    margin-right: 5px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #f8f8f8;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.cookie-banner .cookie-message {
    font-size: 0.95rem;
    color: #ccc;
}

.cookie-banner .cookie-message a {
    color: #ff8c00;
    text-decoration: underline;
}

.cookie-banner .cookie-message a:hover {
    color: #ffa500;
}

.cookie-banner .cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    background-color: #1a1a1a;
    color: #f8f8f8;
    border: 1px solid #ff8c00;
}

#cookieSettingsModal .modal-header {
    border-bottom-color: #333;
}

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

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

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

.text-muted-custom {
    color: #bbb !important;
    font-size: 0.85em;
}

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

#cookieSettingsModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #000;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        text-align: center;
        padding: 0.75rem 1rem;
    }

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

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

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

    .casino-image-link {
        margin-bottom: 20px;
    }

    .casino-details {
        margin-left: 0 !important;
    }

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

    .footer-main .text-md-start, .footer-main .text-md-end {
        text-align: center !important;
    }

    .footer-partners {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    body {
        
    }

    .header-disclaimer {
        font-size: 0.8rem;
    }

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

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

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

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

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

    .cookie-banner .cookie-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .cookie-banner .cookie-buttons .btn {
        flex: 1;
        margin: 0 5px;
    }
}
/* Styles for the main container of the privacy content */
.privacyNestZone {
    padding-top: 2.5rem; /* Top padding for the content zone */
    padding-bottom: 2.5rem; /* Bottom padding for the content zone */
    padding-left: 1.5rem; /* Side padding for the content zone */
    padding-right: 1.5rem; /* Side padding for the content zone */
    /* Optional: Add a max-width for better readability on very wide screens */
    /* max-width: 960px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading 1 styles within the privacy zone */
.privacyNestZone h1 {
    font-size: 2.2rem; /* Moderately sized h1, not overly large */
    line-height: 1.2;
    margin-top: 2.8rem; /* Space above h1 */
    margin-bottom: 1.2rem; /* Space below h1 */
    font-weight: 700; /* Bold font weight */
    color: #fff; /* Dark gray color for better readability */
}

/* Heading 2 styles within the privacy zone */
.privacyNestZone h2 {
    font-size: 1.8rem; /* Moderately sized h2 */
    line-height: 1.25;
    margin-top: 2.4rem; /* Space above h2 */
    margin-bottom: 1rem; /* Space below h2 */
    font-weight: 600; /* Semi-bold font weight */
    color: #fff;
}

/* Heading 3 styles within the privacy zone */
.privacyNestZone h3 {
    font-size: 1.5rem; /* Moderately sized h3 */
    line-height: 1.3;
    margin-top: 2rem; /* Space above h3 */
    margin-bottom: 0.8rem; /* Space below h3 */
    font-weight: 600;
    color: #fff;
}

/* Heading 4 styles within the privacy zone */
.privacyNestZone h4 {
    font-size: 1.25rem; /* Moderately sized h4 */
    line-height: 1.35;
    margin-top: 1.6rem; /* Space above h4 */
    margin-bottom: 0.6rem; /* Space below h4 */
    font-weight: 500; /* Medium font weight */
    color: #fff;
}

/* Heading 5 styles within the privacy zone */
.privacyNestZone h5 {
    font-size: 1.1rem; /* Moderately sized h5, slightly larger than body text */
    line-height: 1.4;
    margin-top: 1.4rem; /* Space above h5 */
    margin-bottom: 0.4rem; /* Space below h5 */
    font-weight: 500;
    color: #fff;
}

/* Paragraph styles within the privacy zone */
.privacyNestZone p {
    font-size: 1rem; /* Standard body text size */
    line-height: 1.6; /* Good line height for readability */
    margin-top: 0; /* No top margin by default, let headings handle spacing */
    margin-bottom: 1rem; /* Space between paragraphs */
    color: #fff; /* Slightly lighter text color for paragraphs */
}

/* Unordered list styles within the privacy zone */
.privacyNestZone ul {
    list-style-type: disc; /* Default bullet points */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
    color: #fff;
}

/* List item styles within the privacy zone */
.privacyNestZone li {
    font-size: 1rem; /* Consistent with paragraph text size */
    line-height: 1.6; /* Consistent line height */
    margin-bottom: 0.5rem; /* Space between list items */
    color: #fff;
}

/* Remove bottom margin for the last element in the zone to prevent extra space */
.privacyNestZone p:last-child,
.privacyNestZone ul:last-child,
.privacyNestZone li:last-child {
    margin-bottom: 0;
}
