/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 18px !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #f0f0f0;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.container {
    max-width: 1200px;
}

/* Custom Colors & Backgrounds */
.bg-dark-custom {
    background-color: #16213e;
}

.bg-dark-secondary {
    background-color: #0f3460;
}

.bg-dark-tertiary {
    background-color: #0a2342;
}

.text-warning {
    color: #f7b731 !important; /* Gold/Yellow accent */
}

.text-primary {
    color: #007bff !important; /* Blue accent */
}

.text-success {
    color: #28a745 !important; /* Green for success */
}

.text-info {
    color: #17a2b8 !important; /* Light blue for info */
}

.text-light-custom {
    color: #e0e0e0 !important;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

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

.btn-outline-light-custom {
    border-color: #e0e0e0;
    color: #e0e0e0;
}

.btn-outline-light-custom:hover {
    background-color: #e0e0e0;
    color: #1a1a2e;
}

.btn-lg-custom {
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

.form-control-custom {
    background-color: #0a2342;
    border: 1px solid #0f3460;
    color: #e0e0e0;
}

.form-control-custom::placeholder {
    color: #999;
}

.form-control-custom:focus {
    background-color: #0a2342;
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    color: #e0e0e0;
}

.border-bottom-custom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.border-top-custom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

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

/* Hero Section */
.hero-section {
    background: url('img/uploads/machine_black_777_online_win_concept_on_slot_wheel_casino_3d_realistic_roulette_big_and_background.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Adjust for fixed cookie banner */
}

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

.hero-section .site-logo {
    max-width: 250px;
    height: auto;
}

.hero-section .max-width-text {
    max-width: 800px;
}

.hero-section .info-box {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Rating Grid (Casino Cards) */
.rating-grid {
    background-color: #1a1a2e;
}

.casino-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.casino-card:hover {
    transform: translateY(-5px);
}

.casino-card .casino-logo {
    max-width: 120px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    padding: 5px;
}

.casino-card .card-body {
    padding: 20px 25px;
}

.casino-card .card-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.casino-card .star-rating i {
    color: #f7b731;
    font-size: 1.2rem;
}

.casino-card .badge {
    font-size: 0.95rem;
    padding: 0.5em 0.8em;
    border-radius: 5px;
}

.casino-card .features-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.casino-card .features-list i {
    font-size: 1.1rem;
}

/* User Reviews */
.user-reviews {
    background-color: #16213e;
}

.review-card {
    border-radius: 10px;
}

.review-card .avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #007bff;
}

.review-card .star-rating i {
    color: #f7b731;
}

.review-card .reply-block {
    border-left: 4px solid #007bff;
}

/* Rating Criteria */
.rating-criteria {
    background-color: #1a1a2e;
}

.criteria-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.criteria-list i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Related Articles/Guides */
.related-articles {
    background-color: #16213e;
}

.article-card {
    border-radius: 10px;
}

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

/* Contact Form */
.contact-form {
    background-color: #1a1a2e;
}

/* Information Block */
.info-block {
    background-color: #0f3460;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.info-list i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #2c0000; /* Dark red/maroon for warning */
    padding: 30px 0;
    border-top: 3px solid #dc3545; /* Red border */
    border-bottom: 3px solid #dc3545;
    color: #f8d7da; /* Light red text */
}

.disclaimer-content {
    background-color: #3f0000; /* Slightly lighter red for content background */
    border: 1px solid #dc3545;
}

.disclaimer-content h3 {
    color: #f7b731; /* Warning yellow for heading */
}

.disclaimer-content p {
    color: #f8d7da;
}

.disclaimer-content a {
    color: #f8d7da;
}

.disclaimer-content a:hover {
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #0a192f;
    padding-top: 40px;
    padding-bottom: 40px;
}

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

.footer-logos {
    margin-top: 20px;
}

.footer-logo-img {
    max-width: 140px; /* Adjust based on number of images */
    height: auto;
    object-fit: contain;
    filter: none; /* Ensure no grayscale */
    transition: none; /* No hover effects */
}

.footer-icon-18plus {
    max-width: 60px;
    height: auto;
    object-fit: contain;
    filter: none; /* Ensure no grayscale */
    transition: none; /* No hover effects */
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050; /* Above modals */
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: fixed;
}

@media (max-width: 767.98px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .cookie-banner p {
        margin-bottom: 0;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: space-between !important;
    }
}

/* Modal specific styles */
.modal-content {
    border: none;
    border-radius: 10px;
}

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

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Styles for content within .rightsCloudWrap */
.rightsCloudWrap {
    padding: 40px 20px; /* Top/bottom and left/right padding */
    max-width: 900px; /* Max width for content readability */
    margin: 0 auto; /* Center the content block */
    color: #e0e0e0; /* Default text color for this section */
}

.rightsCloudWrap h1 {
    font-size: 2.2rem; /* Moderate size for main headings */
    margin-bottom: 1.5rem; /* Space below heading */
    color: #f0f0f0; /* Heading color */
}

.rightsCloudWrap h2 {
    font-size: 1.8rem; /* Size for sub-headings */
    margin-bottom: 1.2rem; /* Space below heading */
    color: #f0f0f0; /* Heading color */
}

.rightsCloudWrap h3 {
    font-size: 1.5rem; /* Size for section titles */
    margin-bottom: 1rem; /* Space below heading */
    color: #f0f0f0; /* Heading color */
}

.rightsCloudWrap h4 {
    font-size: 1.3rem; /* Size for smaller titles */
    margin-bottom: 0.8rem; /* Space below heading */
    color: #f0f0f0; /* Heading color */
}

.rightsCloudWrap h5 {
    font-size: 1.1rem; /* Size for very small titles or sub-sub-headings */
    margin-bottom: 0.6rem; /* Space below heading */
    color: #f0f0f0; /* Heading color */
}

.rightsCloudWrap p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Line height for readability */
    margin-bottom: 1rem; /* Space between paragraphs */
}

.rightsCloudWrap ul {
    list-style: disc; /* Default disc style for unordered lists */
    padding-left: 25px; /* Indent for list items */
    margin-bottom: 1rem; /* Space below the list */
}

.rightsCloudWrap ol {
    list-style: decimal; /* Default decimal style for ordered lists */
    padding-left: 25px; /* Indent for list items */
    margin-bottom: 1rem; /* Space below the list */
}

.rightsCloudWrap li {
    font-size: 1rem; /* Font size for list items */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Space between list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .rightsCloudWrap {
        padding: 30px 15px; /* Reduce padding on smaller screens */
    }

    .rightsCloudWrap h1 {
        font-size: 2rem;
    }

    .rightsCloudWrap h2 {
        font-size: 1.6rem;
    }

    .rightsCloudWrap h3 {
        font-size: 1.3rem;
    }

    .rightsCloudWrap h4 {
        font-size: 1.1rem;
    }

    .rightsCloudWrap h5 {
        font-size: 1rem;
    }
}


.card-body-flex{
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
}

.card-btn{
    padding: 0 20px 20px 20px;
}

.user-reviews small, .cookie-banner p, .rating-criteria p, .rating-criteria li, .info-block li, .footer p, .footer li a, .footer li span{
    color: #fff !important;
}

.foot-cl{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}