/* General Body and Typography */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a0d2e; /* Dark background */
    color: #ffffff; /* Default text color */
}

/* Custom Colors */
.bg-dark-purple {
    background-color: #2c174d !important;
}

.bg-dark-gradient {
    background: linear-gradient(180deg, #1a0d2e 0%, #2c174d 100%) !important;
}

.bg-dark-alt {
    background-color: #1a0d2e !important;
}

.text-light-grey {
    color: #cccccc !important;
}

.text-gold {
    color: #ffcc00 !important;
}

.btn-success {
    background-color: #4CAF50 !important;
    border-color: #4CAF50 !important;
    color: #ffffff !important;
    text-decoration: none; /* Remove underline */
}

.btn-success:hover {
    background-color: #45a049 !important;
    border-color: #45a049 !important;
}

.btn-outline-light {
    border-color: #cccccc !important;
    color: #cccccc !important;
    text-decoration: none; /* Remove underline */
}

.btn-outline-light:hover {
    background-color: #cccccc !important;
    color: #2c174d !important;
}

.text-warning {
    color: #ffcc00 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.btn-danger {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    text-decoration: none; /* Remove underline */
}

.btn-danger:hover {
    background-color: #c82333 !important;
    border-color: #bd2130 !important;
}

/* Top Header Strip */
.top-strip {
    font-size: 0.85rem;
}

/* Header */
.navbar-brand .logo {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px; /* Large height for impact */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

/* Casino Cards Section */
.casino-card {
    background-color: #2c174d;
    border: 1px solid #4d2d7c;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: none; /* No animation */
}

.casino-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.casino-logo-wrapper {
    flex-shrink: 0;
    width: 100px; /* Fixed width for logos */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: #1a0d2e;
    padding: 10px;
}

.casino-logo {
    max-width: 80px;
    max-height: 80px;
    height: auto;
    width: auto;
}

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

.casino-name {
    color: #ffcc00;
    font-weight: 600;
    font-size: 1.5rem;
}

.rating-stars{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
}

.container-fluid{
    justify-content: center !important;
}

.rating-stars i {
    color: #ffcc00;
    font-size: 1.1rem;
}

.our-score .score-value {
    font-weight: 700;
}

.get-bonus-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

.casino-terms {
    font-size: 0.75rem;
    color: #999999;
}

/* Article Section */
.emoji {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

/* Main Disclaimer Block */
#main-disclaimer {
    background-color: #3d2466; /* A distinct background color */
    border-color: #ffcc00 !important;
    border-width: 2px !important;
    border-style: solid;
    padding: 3rem 0;
    color: #ffffff;
}

#main-disclaimer h3 {
    color: #dc3545; /* Red warning color */
    font-size: 1.75rem;
}

#main-disclaimer p {
    color: #e0e0e0;
}

/* Footer */
footer .navbar-brand .logo {
    height: 35px;
}

footer .list-unstyled a {
    font-size: 0.95rem;
}

.responsible-gaming-logos .footer-logo {
    height: auto;
    max-width: 120px; /* Limit width for uniformity */
    width: auto;
    margin: 0 5px;
    display: block; /* Ensures proper centering with flexbox */
}

/* Age Verification Modal */
#ageVerificationModal .modal-content {
    background-color: #2c174d;
    border: none;
    border-radius: 0.75rem;
}

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

/* Cookie Banner */
.cookie-banner {
    z-index: 1050; /* Above other content but below modals */
    border-top: 1px solid #4d2d7c;
    border-radius: 0.5rem 0.5rem 0 0;
}

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

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    background-color: #2c174d;
    border: none;
    border-radius: 0.75rem;
}

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

#cookieSettingsModal .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

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

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

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

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

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

    .casino-logo-wrapper {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }

    .casino-details {
        text-align: center !important;
    }

    .casino-action {
        text-align: center !important;
        width: 100%;
    }

    .casino-card .d-flex.align-items-center {
        justify-content: center !important;
    }

    footer .list-unstyled {
        flex-direction: column;
        align-items: center;
    }

    .cookie-banner .container {
        flex-direction: column;
    }

    .cookie-banner .d-flex.gap-2 {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner .btn {
        flex-grow: 1;
    }
}
/* Styles for content box and its typography */
.termsCaveBox {
    padding: 2.5rem 2rem; /* Top/bottom and left/right padding for the box */
    background-color: #2c174d; /* Slightly different background for content distinction */
    border-radius: 0.75rem; /* Rounded corners for the content box */
    margin-top: 2rem; /* Space above the content box */
    margin-bottom: 2rem; /* Space below the content box */
}

.termsCaveBox h1 {
    font-size: 2rem; /* Moderate font size for main heading */
    margin-top: 2rem; /* Top margin for separation */
    margin-bottom: 1.5rem; /* Bottom margin for separation */
    color: #ffcc00; /* Gold color for headings */
    line-height: 1.3; /* Improved readability */
}

.termsCaveBox h2 {
    font-size: 1.75rem; /* Moderate font size for sub-heading */
    margin-top: 1.75rem; /* Top margin for separation */
    margin-bottom: 1.25rem; /* Bottom margin for separation */
    color: #ffcc00; /* Gold color for headings */
    line-height: 1.3; /* Improved readability */
}

.termsCaveBox h3 {
    font-size: 1.5rem; /* Moderate font size for sub-sub-heading */
    margin-top: 1.5rem; /* Top margin for separation */
    margin-bottom: 1rem; /* Bottom margin for separation */
    color: #ffcc00; /* Gold color for headings */
    line-height: 1.4; /* Improved readability */
}

.termsCaveBox h4 {
    font-size: 1.25rem; /* Moderate font size for smaller heading */
    margin-top: 1.25rem; /* Top margin for separation */
    margin-bottom: 0.75rem; /* Bottom margin for separation */
    color: #ffcc00; /* Gold color for headings */
    line-height: 1.4; /* Improved readability */
}

.termsCaveBox h5 {
    font-size: 1.1rem; /* Moderate font size for least prominent heading */
    margin-top: 1rem; /* Top margin for separation */
    margin-bottom: 0.5rem; /* Bottom margin for separation */
    color: #ffcc00; /* Gold color for headings */
    line-height: 1.5; /* Improved readability */
}

.termsCaveBox p {
    font-size: 1rem; /* Standard font size for body text */
    line-height: 1.6; /* Line height for better readability */
    margin-bottom: 1rem; /* Space between paragraphs */
    color: #e0e0e0; /* Slightly off-white for body text */
}

.termsCaveBox ul {
    list-style-type: disc; /* Default disc bullet style */
    margin-top: 1rem; /* Top margin for list */
    margin-bottom: 1rem; /* Bottom margin for list */
    padding-left: 1.5rem; /* Indentation for bullet points */
    color: #e0e0e0; /* Color for list items */
}

.termsCaveBox li {
    font-size: 1rem; /* Standard font size for list items */
    line-height: 1.6; /* Line height for better readability */
    margin-bottom: 0.5rem; /* Space between list items */
    color: #e0e0e0; /* Color for list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .termsCaveBox {
        padding: 1.5rem 1rem; /* Adjust padding for smaller screens */
    }

    .termsCaveBox h1 {
        font-size: 1.75rem; /* Smaller heading for mobile */
    }

    .termsCaveBox h2 {
        font-size: 1.5rem; /* Smaller heading for mobile */
    }

    .termsCaveBox h3 {
        font-size: 1.25rem; /* Smaller heading for mobile */
    }
}
