/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a0a0a; /* Very dark red/brown */
    color: #f0f0f0; /* Light gray for general text */
    line-height: 1.6;
}

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

.text-gold {
    color: #FFD700 !important; /* Gold accent color */
}

.btn-gold {
    background-color: #FFD700;
    color: #1a0a0a;
    border: 1px solid #FFD700;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-gold:hover {
    background-color: #DAA520; /* Darker gold on hover */
    color: #1a0a0a;
    border-color: #DAA520;
}

.bg-dark-red {
    background-color: #8B0000; /* Dark Red */
}

.bg-dark-red-light {
    background-color: #A52A2A; /* Slightly lighter dark red */
}

.bg-dark-red-alt {
    background-color: #6a0000; /* Even darker red for contrast */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 10px;
}

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

/* Header */
.logo-header {
    max-height: 60px;
    width: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Top Betting Sites Showcase */
.site-card {
    border: 1px solid #FFD700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.site-logo-link {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 80px; /* Fixed height for logos */
    width: 100%;
    margin-bottom: 1rem;
}

.site-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.site-card .rating i {
    font-size: 1.2rem;
}

.site-card .bonus-info {
    font-weight: 600;
    font-size: 1.1rem;
}

.site-card ul li {
    margin-bottom: 0.5rem;
}

/* How We Rate Section */
.how-we-rate-section .p-4 {
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.how-we-rate-section .h5 {
    font-weight: 600;
}

/* FAQ Section */
.faq-item {
    border-left: 5px solid #FFD700;
    padding-left: 1.5rem !important;
}

/* Newsletter Form Section */
.newsletter-form {
    border: 1px solid #FFD700;
}

.newsletter-form .form-label {
    font-weight: 600;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #f0f0f0;
}

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

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

/* Disclaimer Block */
.disclaimer-block {
    background-color: #2c0f0f; /* Distinct background */
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.disclaimer-content {
    background-color: #1a0a0a; /* Darker background for content */
    border: 2px solid #dc3545; /* Red border for warning */
    color: #f0f0f0;
}

.disclaimer-title {
    color: #dc3545; /* Red title */
    font-weight: 700;
}

.disclaimer-content p strong {
    color: #FFD700; /* Gold for emphasis */
}

.disclaimer-content ul li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer-logo-link {
    text-decoration: none;
    display: inline-block;
}

.footer-logo-link span{
    color: #fff;
    font-size: 1.5rem;

}

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

.footer .hover-gold:hover {
    color: #FFD700 !important;
}

.footer .border-gold {
    border-color: rgba(255, 215, 0, 0.5) !important;
}

.responsible-gambling-logos {
    gap: 1.5rem; /* Spacing between logos */
}

.footer-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px; /* Fixed height for consistent alignment */
}

.footer-img {
    max-width: 120px; /* Max width for logos */
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1); /* Slight adjustment for visibility on dark background */
}

.footer-img-18-plus {
    max-width: 60px; /* Smaller for 18+ icon */
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Very dark, almost black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1060; /* Higher than Bootstrap modals */
    color: #f0f0f0;
    text-align: center;
}

.text-muted{
    color: unset !important;
}

.modal-content-age {
    background-color: #1a0a0a; /* Dark red background */
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    border: 2px solid #FFD700;
}

.age-verification-modal h2 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.age-verification-modal p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.age-verification-modal .modal-logo {
    max-height: 80px;
    margin-bottom: 1.5rem;
}

.btn-primary-age {
    background-color: #FFD700;
    color: #1a0a0a;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary-age:hover {
    background-color: #DAA520;
    color: #1a0a0a;
}

.btn-secondary-age {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-secondary-age:hover {
    background-color: #c82333;
    color: #fff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333; /* Dark background for the banner */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1050; /* Below age verification, above content */
    display: none; /* Hidden by default, shown by JS */
    border-bottom: 1px solid #FFD700;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-banner .btn-sm {
    font-size: 0.85rem;
    padding: 5px 12px;
}

.cookie-banner .btn-light {
    background-color: #FFD700;
    color: #1a0a0a;
    border-color: #FFD700;
}

.cookie-banner .btn-light:hover {
    background-color: #DAA520;
    border-color: #DAA520;
}

.cookie-banner .btn-outline-light {
    color: #FFD700;
    border-color: #FFD700;
}

.cookie-banner .btn-outline-light:hover {
    background-color: #FFD700;
    color: #1a0a0a;
}

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    background-color: #1a0a0a;
    color: #f0f0f0;
    border: 1px solid #FFD700;
}

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

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

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

#cookieSettingsModal .form-check-label {
    color: #f0f0f0;
    font-weight: 600;
}

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

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

#cookieSettingsModal .modal-footer {
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

#cookieSettingsModal .btn-primary {
    background-color: #FFD700;
    color: #1a0a0a;
    border-color: #FFD700;
}

#cookieSettingsModal .btn-primary:hover {
    background-color: #DAA520;
    border-color: #DAA520;
}

#cookieSettingsModal .btn-secondary {
    background-color: #A52A2A;
    color: #f0f0f0;
    border-color: #A52A2A;
}

#cookieSettingsModal .btn-secondary:hover {
    background-color: #8B0000;
    border-color: #8B0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    .hero-section p {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .site-card {
        padding: 1.5rem !important;
    }
    .site-logo-link {
        height: 70px;
    }
    .site-logo {
        max-width: 120px;
        max-height: 60px;
    }
    .footer-img {
        max-width: 100px;
        max-height: 40px;
    }
    .footer-img-18-plus {
        max-width: 50px;
        max-height: 40px;
    }
    .cookie-banner .container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .cookie-banner p {
        margin-bottom: 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .modal-content-age {
        padding: 2rem;
    }
    .age-verification-modal h2 {
        font-size: 1.8rem;
    }
    .age-verification-modal p {
        font-size: 1rem;
    }
    .btn-primary-age, .btn-secondary-age {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .disclaimer-content {
        padding: 1.5rem !important;
    }
}/* Terms and Conditions Content Box Styles */
.termsCaveBox {
    /* Background for the terms box, slightly different from body for contrast */
    background-color: #2c0f0f; /* Darker red/brown for the content area */
    /* Padding for the top, bottom, and sides of the box */
    padding: 3rem 1.5rem;
    /* Margin for spacing above and below the box */
    margin-top: 3rem;
    margin-bottom: 3rem;
    /* Optional: Border for visual separation */
    border: 1px solid rgba(255, 215, 0, 0.3); /* Subtle gold border */
    border-radius: 8px; /* Slightly rounded corners */
}

.termsCaveBox h1 {
    /* Main heading for the terms section */
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD700; /* Gold for primary headings */
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.termsCaveBox h2 {
    /* Secondary heading */
    font-size: 1.8rem;
    font-weight: 600;
    color: #f0f0f0; /* Light gray for general headings */
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.termsCaveBox h3 {
    /* Tertiary heading */
    font-size: 1.5rem;
    font-weight: 600;
    color: #f0f0f0;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.termsCaveBox h4 {
    /* Fourth level heading */
    font-size: 1.3rem;
    font-weight: 500;
    color: #f0f0f0;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.termsCaveBox h5 {
    /* Fifth level heading */
    font-size: 1.1rem;
    font-weight: 500;
    color: #f0f0f0;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.termsCaveBox p {
    /* Paragraph text styles */
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(240, 240, 240, 0.9); /* Slightly transparent light gray for readability */
    margin-bottom: 1rem;
}

.termsCaveBox ul {
    /* Unordered list styles */
    list-style-type: disc; /* Default disc bullets */
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem; /* Indentation for list items */
    color: rgba(240, 240, 240, 0.9);
}

.termsCaveBox ol {
    /* Ordered list styles */
    list-style-type: decimal; /* Default decimal numbering */
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem; /* Indentation for list items */
    color: rgba(240, 240, 240, 0.9);
}

.termsCaveBox li {
    /* List item styles */
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(240, 240, 240, 0.9);
    margin-bottom: 0.5rem; /* Spacing between list items */
}

/* Responsive adjustments for termsCaveBox */
@media (max-width: 768px) {
    .termsCaveBox {
        padding: 2rem 1rem; /* Adjust padding for smaller screens */
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .termsCaveBox h1 {
        font-size: 1.8rem;
    }
    .termsCaveBox h2 {
        font-size: 1.5rem;
    }
    .termsCaveBox h3 {
        font-size: 1.3rem;
    }
    .termsCaveBox h4 {
        font-size: 1.1rem;
    }
    .termsCaveBox h5 {
        font-size: 1rem;
    }
    .termsCaveBox p,
    .termsCaveBox ul,
    .termsCaveBox ol,
    .termsCaveBox li {
        font-size: 0.95rem;
    }
}
