/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for cream backgrounds */
    background-color: #F5F5DC; /* Cream background */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #800020; /* Burgundy for headings */
}

a {
    color: #800020;
    text-decoration: none;
}

a:hover {
    color: #A00028; /* Slightly lighter burgundy on hover */
    text-decoration: underline;
}

.btn-primary {
    background-color: #800020;
    border-color: #800020;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #A00028;
    border-color: #A00028;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    color: #800020;
    border-color: #800020;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #800020;
    color: #F5F5DC;
}

.bg-cream {
    background-color: #F5F5DC;
}

.bg-light-cream {
    background-color: #EEEEEE; /* A slightly different cream for variation */
}

.bg-burgundy {
    background-color: #800020;
}

.text-cream {
    color: #F5F5DC !important;
}

.text-primary {
    color: #800020 !important;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

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

/* Header/Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/pics/irish-casino-landscape_2.jpg') no-repeat center center/cover;
    color: #F5F5DC;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.hero-section h1 {
    font-size: 2rem;
    color: #F5F5DC;
    margin-bottom: 15px;
}

.hero-section p.lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #F5F5DC;
}

/* Top Rated Casinos Grid */
.casino-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.casino-logo {
    max-height: 120px; /* Adjust as needed */
    object-fit: contain;
    padding: 15px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #eee;
}

.casino-card .card-title {
    color: #800020;
    font-weight: 600;
    margin-bottom: 10px;
}

.casino-card .rating i {
    color: #FFD700; /* Gold for stars */
    margin-right: 2px;
}

.casino-card .bonus-info {
    font-size: 0.95rem;
    color: #555;
    font-weight: 600;
}

/* Swiper for mobile */
.swiper-container {
    width: 100%;
    padding-bottom: 50px; /* Space for pagination */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 15px; /* Add some padding around cards in swiper */
}

.swiper-pagination-bullet-active {
    background-color: #800020;
}

.swiper-button-next, .swiper-button-prev {
    color: #800020;
}

/* Quick Rating List */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(128, 0, 32, 0.05); /* Light burgundy stripe */
}

.table thead th {
    background-color: #800020;
    color: #F5F5DC;
    border-bottom: 2px solid #600018;
}

.table tbody tr {
    transition: background-color 0.3s ease;
}

.table tbody tr:hover {
    background-color: rgba(128, 0, 32, 0.1) !important;
}

/* User Reviews */
.review-card {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.review-card .card-header {
    background-color: #F5F5DC;
    border-bottom: 1px solid #eee;
    padding: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #800020;
}

.review-card .card-header h6 {
    color: #800020;
    font-weight: 600;
}

.review-card .rating i {
    color: #FFD700; /* Gold for stars */
    margin-right: 2px;
}

.review-card .card-body p {
    font-style: italic;
    color: #555;
}

.review-card .card-footer {
    background-color: #F5F5DC;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
}

/* Official Editorial Rating */
.editorial-criteria li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.editorial-criteria i {
    font-size: 1.2rem;
    vertical-align: middle;
}

.progress {
    height: 25px;
    border-radius: 5px;
    background-color: #e0e0e0;
}

.progress-bar {
    background-color: #800020;
    font-weight: 600;
    color: #F5F5DC;
    font-size: 0.9rem;
    line-height: 25px;
    transition: width 1s ease-in-out;
}

/* Rating Methodology */
.methodology-card {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.methodology-card .card-title {
    font-weight: 600;
}

.methodology-card .card-title i {
    font-size: 1.3rem;
    vertical-align: middle;
}

/* Disclaimer Block */
#disclaimer-section {
    background-color: #600018; /* Darker burgundy for contrast */
    color: #F5F5DC;
    padding: 60px 0;
}

.disclaimer-box {
    background-color: rgba(128, 0, 32, 0.85); /* Semi-transparent burgundy */
    border: 2px solid #F5F5DC; /* Cream border */
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.disclaimer-title {
    color: #FFD700; /* Gold for warning title */
    font-size: 2rem;
    margin-bottom: 20px;
}

.disclaimer-title i {
    font-size: 2.2rem;
    vertical-align: middle;
    margin-right: 10px;
}

.disclaimer-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.disclaimer-icon {
    width: 30px;
    height: auto;
    vertical-align: middle;
}

/* Footer */
.footer {
    background-color: #600018; /* Darker burgundy for footer */
    color: #F5F5DC;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.footer-logo-link {
    display: inline-block;
}

.footer h5 {
    color: #F5F5DC;
    font-weight: 600;
}

.footer-links li a, .footer-contact li a {
    color: #F5F5DC;
    transition: color 0.3s ease;
    word-break: break-all;
}

.footer-links li a:hover, .footer-contact li a:hover {
    color: #FFD700; /* Gold on hover */
    text-decoration: underline;
}

.footer-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px; /* Spacing between logos */
}

.footer-img {
    max-width: 130px; /* Adjusted from 100-150px for 7 images */
    height: auto;
    object-fit: contain;
    filter: brightness(1.1); /* Slightly brighten for visibility on dark background */
    transition: transform 0.3s ease;
}

.footer-img:hover {
    transform: scale(1.05);
}

.footer-img-icon {
    max-width: 60px; /* Size for 18+ icon */
    height: auto;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(0,0,0,0.3));
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    z-index: 1050;
    background-color: #F5F5DC;
    border-radius: 10px;
    border: 1px solid #800020;
}

.cookie-banner .card-title {
    color: #800020;
    font-weight: 700;
}

.cookie-banner .card-text {
    font-size: 0.9rem;
    color: #333;
}

.cookie-banner .btn-primary {
    background-color: #800020;
    border-color: #800020;
}

.cookie-banner .btn-outline-secondary {
    color: #800020;
    border-color: #800020;
}

/* Cookie Consent Modal */
.modal-content {
    background-color: #F5F5DC;
    border-radius: 10px;
    border: 1px solid #800020;
}

.modal-header {
    background-color: #800020;
    color: #F5F5DC;
    border-bottom: 1px solid #600018;
}

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

.modal-title {
    color: #F5F5DC;
}

.modal-body {
    color: #333;
}

.form-check-label {
    color: #333;
}

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

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

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

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

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

    .casino-card {
        margin-bottom: 20px;
    }

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

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

    .disclaimer-box p {
        font-size: 0.95rem;
    }

    .footer-logos-container {
        gap: 15px;
    }

    .footer-img {
        max-width: 100px;
    }

    .footer-img-icon {
        max-width: 50px;
    }

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }
}
/* Styles for the main content wrapper */
.complianceVaultNode {
    padding-top: 40px;    /* Top padding */
    padding-left: 20px;   /* Left padding */
    padding-right: 20px;  /* Right padding */
    padding-bottom: 40px; /* Bottom padding */
    max-width: 1200px;    /* Max width for content readability */
    margin-left: auto;    /* Center the block */
    margin-right: auto;   /* Center the block */
}

/* Heading styles within .complianceVaultNode */
.complianceVaultNode h1 {
    font-size: 2.2rem;    /* Moderate size for main headings */
    margin-top: 35px;     /* Spacing above h1 */
    margin-bottom: 20px;  /* Spacing below h1 */
    line-height: 1.2;     /* Line height for readability */
}

.complianceVaultNode h2 {
    font-size: 1.8rem;    /* Slightly smaller than h1 */
    margin-top: 30px;     /* Spacing above h2 */
    margin-bottom: 18px;  /* Spacing below h2 */
    line-height: 1.3;
}

.complianceVaultNode h3 {
    font-size: 1.5rem;    /* Standard sub-heading size */
    margin-top: 25px;     /* Spacing above h3 */
    margin-bottom: 15px;  /* Spacing below h3 */
    line-height: 1.4;
}

.complianceVaultNode h4 {
    font-size: 1.25rem;   /* Smaller heading for sections */
    margin-top: 20px;     /* Spacing above h4 */
    margin-bottom: 12px;  /* Spacing below h4 */
    line-height: 1.5;
}

.complianceVaultNode h5 {
    font-size: 1.1rem;    /* Smallest heading, often used for minor titles */
    margin-top: 15px;     /* Spacing above h5 */
    margin-bottom: 10px;  /* Spacing below h5 */
    line-height: 1.5;
}

/* Paragraph styles within .complianceVaultNode */
.complianceVaultNode p {
    font-size: 1rem;      /* Standard paragraph font size */
    margin-bottom: 1em;   /* Spacing between paragraphs */
    line-height: 1.7;     /* Optimal line height for readability */
}

/* Unordered list styles within .complianceVaultNode */
.complianceVaultNode ul {
    list-style: disc;     /* Default disc bullet */
    margin-top: 15px;     /* Spacing above the list */
    margin-bottom: 15px;  /* Spacing below the list */
    padding-left: 30px;   /* Indentation for list items */
}

/* Ordered list styles within .complianceVaultNode (added for completeness) */
.complianceVaultNode ol {
    list-style: decimal;  /* Default decimal numbering */
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 30px;
}

/* List item styles within .complianceVaultNode */
.complianceVaultNode li {
    font-size: 1rem;      /* Font size for list items */
    margin-bottom: 0.5em; /* Spacing between list items */
    line-height: 1.6;     /* Line height for list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .complianceVaultNode {
        padding-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 30px;
    }

    .complianceVaultNode h1 {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .complianceVaultNode h2 {
        font-size: 1.5rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .complianceVaultNode h3 {
        font-size: 1.3rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .complianceVaultNode h4 {
        font-size: 1.1rem;
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .complianceVaultNode h5 {
        font-size: 1rem;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .complianceVaultNode p,
    .complianceVaultNode ul,
    .complianceVaultNode ol,
    .complianceVaultNode li {
        font-size: 0.95rem; /* Slightly smaller text on mobile */
    }

    .complianceVaultNode ul,
    .complianceVaultNode ol {
        padding-left: 20px; /* Adjust indentation for smaller screens */
    }
}

.grid-block{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media(max-width: 992px){
    .grid-block{
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media(max-width: 768px){
    .grid-block{
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

#editorial-rating{
    overflow: hidden;
}