body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa; /* Light white background */
    color: #212529; /* Standard dark text color */
    line-height: 1.6;
}

/* General Section Styling */
.section-title {
    color: #a00000; /* Darker red for titles */
    font-weight: 700;
    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: #dc3545; /* Red accent */
    border-radius: 2px;
}

.bg-light-red {
    background-color: #fdf0f0; /* Very light red/pink for alternating sections */
}

/* Header / Hero Section */
.hero-section {
    min-height: 70vh; /* Adjust as needed */
    background-image: url('assets/uploads/Photo_Casino.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.hero-section .row{
    width: 80%;
    margin: 0 auto;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
}

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

.hero-section h1 {
    font-size: clamp(25px,5vw,35px) !important;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section p.lead {
    font-size: 1.25rem;
    color: #f0f0f0;
}

.logo-header {
    max-width: 250px;
    height: auto;
}

/* Casino Card List */
.casino-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: none; /* No animation */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
}

.casino-logo-wrapper {
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.casino-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

.casino-title {
    color: #a00000;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.casino-offer {
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 1rem;
}

.casino-features li {
    font-size: 0.95rem;
    color: #343a40;
}

.feature-icon, .license-icon {
    color: #28a745; /* Green for checkmarks */
}

.casino-license {
    font-style: italic;
    font-size: 0.9rem;
    color: #6c757d;
}

.casino-rating-action {
    text-align: center;
    min-width: 150px;
}

.casino-rating .stars i {
    font-size: 1.5rem;
    background: linear-gradient(to right, #FFD700, #FFA500); /* Gold to Orange gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin: 0 1px;
}

.casino-rating .score {
    color: #a00000;
    font-size: 3rem;
}

.btn-play {
    background-color: #dc3545;
    border-color: #dc3545;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    transition: none; /* No animation */
}

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

/* Responsive adjustments for casino cards */
@media (max-width: 767.98px) {
    .casino-card {
        flex-direction: column;
        text-align: center;
    }
    .casino-logo-wrapper {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }
    .casino-info {
        text-align: center;
    }
    .casino-rating-action {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
    .casino-features li {
        text-align: left;
    }
}

/* FAQ Section */
.faq-section .accordion-button {
    background-color: #f8f9fa;
    color: #a00000;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid #e0e0e0;
    transition: none; /* No animation */
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #dc3545;
    color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.faq-section .accordion-body {
    background-color: #ffffff;
    color: #495057;
    font-size: 0.95rem;
}

.faq-section .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Game Variety Section */
.game-icon {
    color: #dc3545;
    font-size: 1.2rem;
    min-width: 25px;
}

.game-list li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #343a40;
}

/* Form Section */
.form-container {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-label {
    font-weight: 700;
    color: #a00000;
}

.form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.btn-lg {
    background-color: #dc3545;
    border-color: #dc3545;
    font-weight: 700;
    padding: 0.8rem 2rem;
    transition: none; /* No animation */
}

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

.invalid-feedback {
    color: #dc3545;
}

/* Bonuses Section */
.bonus-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    height: 100%; /* Ensure cards are same height */
}

.bonus-title {
    color: #a00000;
    font-weight: 700;
    font-size: 1.3rem;
}

.bonus-icon {
    color: #dc3545;
    font-size: 1.5rem;
}

/* Pros and Cons Section */
.pros-block, .cons-block {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.pros-block h3 {
    color: #28a745; /* Green for Pros */
    font-weight: 700;
}

.cons-block h3 {
    color: #dc3545; /* Red for Cons */
    font-weight: 700;
}

.pros-icon {
    color: #28a745;
}

.cons-icon {
    color: #dc3545;
}

.pros-block ul li, .cons-block ul li {
    font-size: 1rem;
    color: #343a40;
}

.pros-block ul li i.bi-check-lg {
    color: #28a745;
}

.cons-block ul li i.bi-x-lg {
    color: #dc3545;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #ffe0e0; /* Light red background to stand out */
    padding: 3rem 0;
}

.disclaimer-content {
    background-color: #ffffff;
    border: 2px solid #dc3545; /* Red border */
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 1rem;
}

.disclaimer-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.disclaimer-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    text-align: left;
}

.disclaimer-content ul li::before {
    content: '\F28A'; /* Bootstrap icon for info-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0;
    color: #dc3545;
    font-size: 1.1rem;
}

/* Footer Section */
.footer-section {
    background-color: #000000; /* Black background */
    color: #ffffff;
    padding: 2rem 0;
}

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

.age-restriction {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.age-icon {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.age-restriction p {
    font-size: 0.85rem;
    color: #f0f0f0;
    margin-bottom: 0;
}

.footer-links ul {
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: inline-block;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    transition: none; /* No animation */
}

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

.responsible-gaming-logos {
    margin-top: 1.5rem;
}

.footer-org-logo {
    max-width: 120px; /* Adjusted from 100-150 to fit 4 logos better in a row */
    height: auto;
    object-fit: contain;
    margin: 0 8px;
    display: block;
}

.copyright {
    font-size: 0.8rem;
    color: #bbbbbb;
    margin-top: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    max-width: 350px;
    display: none; /* Hidden by default, shown by JS */
    font-size: 0.9rem;
}

.cookie-banner p {
    margin-bottom: 15px;
    line-height: 1.4;
}

.cookie-banner .cookie-policy-link {
    color: #dc3545;
    font-weight: bold;
}

.cookie-banner .cookie-policy-link:hover {
    text-decoration: underline;
}

.cookie-banner .btn-primary {
    background-color: #dc3545;
    border-color: #dc3545;
    transition: none; /* No animation */
}

.cookie-banner .btn-primary:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.cookie-banner .btn-outline-secondary {
    color: #fff;
    border-color: #fff;
    transition: none; /* No animation */
}

.cookie-banner .btn-outline-secondary:hover {
    background-color: #fff;
    color: #333;
}

/* Cookie Modal */
.modal-content {
    background-color: #f8f9fa;
    color: #212529;
}

.modal-header {
    border-bottom: 1px solid #e0e0e0;
}

.modal-title {
    color: #a00000;
    font-weight: 700;
}

.modal-footer {
    border-top: 1px solid #e0e0e0;
}

.modal .form-check-input:checked {
    background-color: #dc3545;
    border-color: #dc3545;
}

.modal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.modal .btn-primary {
    background-color: #dc3545;
    border-color: #dc3545;
    transition: none; /* No animation */
}

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

.modal .btn-secondary {
    transition: none; /* No animation */
}

/* Responsive adjustments */
@media (max-width: 575.98px) {
   
   
    .hero-section p.lead {
        font-size: 1rem;
    }
    .casino-rating .score {
        font-size: 2.5rem;
    }
    .btn-play {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .form-container, .disclaimer-content, .bonus-card, .pros-block, .cons-block {
        padding: 1.5rem;
    }
    .footer-org-logo {
        max-width: 100px;
    }

    .logo-header {
        max-width: 150px;
        height: 100px;
        object-fit: contain;
    }

    .hero-section .row{
        width: 100% !important;
    }
}
/* Parent container styling */
.trustPillarUnit {
    padding-top: 4rem; /* Top padding for section separation */
    padding-bottom: 4rem; /* Bottom padding for section separation */
    padding-left: 1rem; /* Left padding for content */
    padding-right: 1rem; /* Right padding for content */
    margin-left: auto; /* Center the block */
    margin-right: auto; /* Center the block */
    max-width: 1200px; /* Max width for readability */
}

/* Heading styles */
.trustPillarUnit h1 {
    font-size: 2.2rem; /* Moderate size for main heading */
    font-weight: 700; /* Bold font weight */
    color: #a00000; /* Dark red color from theme */
    margin-bottom: 1.5rem; /* Space below heading */
}

.trustPillarUnit h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    font-weight: 700;
    color: #a00000;
    margin-bottom: 1.2rem;
}

.trustPillarUnit h3 {
    font-size: 1.5rem; /* Standard heading size */
    font-weight: 700;
    color: #a00000;
    margin-bottom: 1rem;
}

.trustPillarUnit h4 {
    font-size: 1.2rem; /* Sub-heading size */
    font-weight: 600; /* Slightly less bold */
    color: #212529; /* Standard dark text color */
    margin-bottom: 0.8rem;
}

.trustPillarUnit h5 {
    font-size: 1rem; /* Smallest heading size, often for minor titles */
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.6rem;
}

/* Paragraph styles */
.trustPillarUnit p {
    font-size: 1.05rem; /* Standard paragraph text size */
    line-height: 1.7; /* Increased line height for readability */
    color: #343a40; /* Slightly lighter dark text color */
    margin-bottom: 1rem; /* Space between paragraphs */
}

/* Unordered list styles */
.trustPillarUnit ul {
    list-style: disc; /* Default disc bullet points */
    padding-left: 20px; /* Indentation for list items */
    margin-bottom: 1rem; /* Space below the list */
    color: #343a40; /* Inherit text color */
}

/* List item styles */
.trustPillarUnit li {
    font-size: 1rem; /* Standard list item text size */
    line-height: 1.6; /* Line height for readability */
    margin-bottom: 0.5rem; /* Space between list items */
}
