/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Light background for general sections */
    color: #343a40; /* Standard text color */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1a202c; /* Darker heading color */
}

a {
    color: #FF8C00;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e67e00; /* Slightly darker orange on hover */
}

.text-dark-blue {
    color: #1a202c;
}

.bg-dark-blue {
    background-color: #1a202c;
}

.bg-light-orange {
    background-color: #fffaf0; /* Very light orange/cream */
}

.bg-dark-orange {
    background-color: #FF8C00;
}
@media (max-width:575px) {
    .blog-apat-menu{
        flex-direction: column;
    }
}
.btn-primary {
    background-color: #FF8C00;
    border-color: #FF8C00;
    color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

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

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Header */
header {
    background-color: #1a202c !important; /* Dark blue for header */
    z-index: 1030; /* Ensure header is above other content */
}

.logo-img {
    height: 40px;
    width: auto;
}

.navbar-brand .fw-bold {
    color: #FF8C00; /* Orange for brand name */
}

.nav-link {
    color: #f8f9fa !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF8C00 !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 80px; /* Offset for fixed header */
}

.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: 1;
}

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

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

/* Casino Card Styles */
.casino-card {
    border: none;
    border-radius: 15px;
    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.1) !important;
}

.casino-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    margin: 20px auto 10px auto;
    display: block;
    padding: 10px;
}

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

.star-rating .bi-star-fill, .star-rating .bi-star-half, .star-rating .bi-star {
    color: #FFD700; /* Gold color for stars */
}

.features-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
}

.features-list .bi {
    font-size: 1.1rem;
}

/* Editor's Pick */
#editors-pick .card {
    border-radius: 20px;
}

#editors-pick .btn-light {
    color: #FF8C00;
    background-color: #fff;
    border-color: #fff;
}

#editors-pick .btn-light:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: #e67e00;
}

/* User Reviews */
.review-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08) !important;
}

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

.review-text {
  
 
}



.read-more-btn {
    color: #FF8C00;
    font-weight: 600;
    border: none;
    background: none;
    text-decoration: none;
    cursor: pointer;
}

.read-more-btn:hover {
    color: #e67e00;
    text-decoration: underline;
}

/* Methodology Modal */
#methodologyModal .modal-content {
    border-radius: 20px;
    padding: 20px;
}

#methodologyModal .modal-header {
    border-bottom: none;
}

#methodologyModal .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%); /* Make Bootstrap close icon white */
}

#methodologyModal .modal-body ul li {
    display: flex;
    align-items: flex-start;
}

#methodologyModal .modal-body ul li i {
    font-size: 1.5rem;
    margin-top: 2px;
}

/* Related Articles */
.article-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.article-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.article-card .card-body {
    padding: 20px;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #1a202c; /* Dark background for disclaimer */
    color: #f8f9fa;
    padding: 60px 0;
}

.disclaimer-content {
    background-color: rgba(255, 140, 0, 0.15); /* Orange tint with transparency */
    border: 2px solid #FF8C00; /* Orange border */
    border-radius: 15px;
    padding: 30px;
}

.disclaimer-content .bi-exclamation-triangle-fill {
    color: #FFD700; /* Warning icon color */
}

/* Footer */
footer {
    background-color: #1a202c !important; /* Dark blue for footer */
}

footer .list-unstyled li a {
    color: rgba(255, 255, 255, 0.6) !important;
}

footer .list-unstyled li a:hover {
    color: #FF8C00 !important;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FF8C00 !important;
}

.footer-partners {
    padding: 30px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Spacing between logos */
}

.footer-partner-logo {
    max-width: 140px; /* Max width for logos */
    height: auto;
    object-fit: contain;
    display: block; /* Ensure block-level for margin auto if needed */
}

.footer-18plus-logo {
    max-width: 80px; /* Smaller for 18+ icon */
    height: auto;
    filter: none; /* Ensure no grayscale */
}

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

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a202c;
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    max-width: 90%;
    width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-banner-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-banner-content .cookie-link {
    color: #FF8C00;
    text-decoration: underline;
}

.cookie-banner-content .cookie-link:hover {
    color: #e67e00;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.cookie-buttons .btn {
    flex-grow: 1;
    max-width: 150px;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding-top: 100px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .casino-logo {
        max-height: 90px;
    }
    .cookie-banner {
        bottom: 10px;
        max-width: 95%;
        padding: 15px 20px;
    }
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .cookie-buttons .btn {
        max-width: 100%;
    }
    .footer-partners {
        gap: 15px;
    }
    .footer-partner-logo {
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        text-align: center;
    }
    .hero-section .btn {
        width: 100%;
    }
    .casino-card .card-body {
        padding: 15px;
    }
    .review-card .card-body {
        padding: 15px;
    }
    .article-card .card-body {
        padding: 15px;
    }
    .disclaimer-content {
        padding: 20px;
    }
    .footer-partners {
        gap: 10px;
    }
    .footer-partner-logo {
        max-width: 100px;
    }
    .footer-18plus-logo {
        max-width: 60px;
    }
}
/* Styles for the content wrapper */
.termsCaveBox {
    padding: 40px 25px; /* Padding top/bottom and left/right */
    margin: 60px auto; /* Vertical margin and horizontal auto for centering */
    max-width: 800px; /* Max width for readability */
    background-color: #ffffff; /* White background for the content box */
    border-radius: 15px; /* Slightly rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    color: #343a40; /* Default text color within the box */
}

/* Heading styles within .termsCaveBox */
.termsCaveBox h1 {
    font-size: 2rem; /* Approximately 32px */
    margin-top: 1.8em; /* Space above the heading */
    margin-bottom: 0.8em; /* Space below the heading */
    color: #1a202c; /* Dark blue heading color */
    font-weight: 700; /* Bold font weight */
}

.termsCaveBox h2 {
    font-size: 1.75rem; /* Approximately 28px */
    margin-top: 1.6em;
    margin-bottom: 0.7em;
    color: #1a202c;
    font-weight: 700;
}

.termsCaveBox h3 {
    font-size: 1.5rem; /* Approximately 24px */
    margin-top: 1.4em;
    margin-bottom: 0.6em;
    color: #1a202c;
    font-weight: 600; /* Slightly less bold */
}

.termsCaveBox h4 {
    font-size: 1.25rem; /* Approximately 20px */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    color: #1a202c;
    font-weight: 600;
}

.termsCaveBox h5 {
    font-size: 1.1rem; /* Approximately 17.6px */
    margin-top: 1em;
    margin-bottom: 0.4em;
    color: #1a202c;
    font-weight: 500; /* Medium font weight */
}

/* Paragraph styles within .termsCaveBox */
.termsCaveBox p {
    font-size: 1rem; /* Base font size, approximately 16px */
    margin-bottom: 1em; /* Space below paragraph */
    line-height: 1.7; /* Increased line height for readability */
    color: #343a40; /* Standard text color */
}

/* Unordered list styles within .termsCaveBox */
.termsCaveBox ul {
    list-style: disc; /* Standard disc bullet points */
    padding-left: 25px; /* Indentation for list items */
    margin-bottom: 1em; /* Space below the list */
    color: #343a40; /* Standard text color */
}

/* List item styles within .termsCaveBox */
.termsCaveBox li {
    font-size: 1rem; /* Match paragraph font size */
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.6; /* Line height for list items */
    color: #343a40; /* Standard text color */
}
