/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333333; /* Dark gray for general text */
    background-color: #f8f9fa; /* Light background */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #6A0DAD; /* Primary purple for headings */
}

a {
    color: #8A2BE2; /* Link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6A0DAD; /* Darker purple on hover */
}

.text-purple {
    color: #6A0DAD !important;
}

.bg-light-purple {
    background-color: #F3E5F5; /* Very light purple for sections */
}

.border-light-purple {
    border-color: #E0BBE4 !important;
}

/* Custom Buttons */
.btn-primary {
    background-color: #8A2BE2; /* Primary purple button */
    border-color: #8A2BE2;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6A0DAD;
    border-color: #6A0DAD;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    border-color: #8A2BE2;
    color: #8A2BE2;
}

.btn-outline-primary:hover {
    background-color: #8A2BE2;
    color: #fff;
}

.btn-success {
    background-color: #28a745; /* Green for PLAY NOW */
    border-color: #28a745;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Age Verification Pop-up */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}

.age-verification-overlay.show {
    visibility: visible;
    opacity: 1;
}

.age-verification-modal {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
}

.age-verification-modal p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #333;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333333;
    color: #fff;
    padding: 10px 0;
    z-index: 1050; /* Above regular content, below age verification */
    display: none; /* Hidden by default, controlled by JS */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: slideDown 0.5s ease-out forwards;
}

.cookie-banner #customizeCookiesBtn {
   background-color: lightgrey;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: #fff;
}

.cookie-banner a {
    color: #E0BBE4; /* Light purple for link in banner */
}

.cookie-banner .btn-primary, .cookie-banner .btn-outline-primary {
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 5px;
}

/* Keyframe for slide down animation */
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Cookie Settings Modal (Bootstrap handles most styling) */
#cookieSettingsModal .modal-content {
    border-radius: 10px;
}

#cookieSettingsModal .modal-header {
    background-color: #8A2BE2;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

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

#cookieSettingsModal .form-check-label {
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Space for fixed navbar */
}

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

.hero-section .navbar-brand .logo {
    height: 40px;
    width: auto;
}

.hero-section .navbar-brand .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.hero-section h1 {
    color: #8527c8;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section .lead {
    font-size: 1.3rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.play-casino-btn {
    margin-top: 20px;
}

/* Section Titles */
.section-title {
    color: #6A0DAD;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

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

/* Casino Cards */
.casino-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.casino-logo-link {
    display: block;
    margin-bottom: 20px;
}

.casino-logo {
    width: 150px;
    height: 84px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
}

.casino-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #6A0DAD;
}

.casino-bonus {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8A2BE2;
    margin-bottom: 15px;
}

.casino-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.casino-rating .stars i {
    color: #FFD700; /* Gold for stars */
    font-size: 1.2rem;
}

.casino-rating .stars i.text-muted {
    color: #cccccc; /* Grey for unrated stars */
}

.rating-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.btn-play-now {
    width: 100%;
    max-width: 200px;
    margin-top: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* How To Use Section */
.how-to-use-section .card {
    border: none;
    border-radius: 15px;
}

.how-to-use-section h3 {
    color: #6A0DAD;
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.how-to-use-section p {
    color: #555;
    margin-bottom: 20px;
}

.how-to-use-section .purple-text {
    color: #8A2BE2;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #FFF3CD; /* Light yellow background for warning */
    color: #856404; /* Dark yellow text */
    border-top: 5px solid #FFC107; /* Orange-yellow top border */
    border-bottom: 5px solid #FFC107;
}

.disclaimer-content {
    background-color: #fff;
    border: 1px solid #FFC107;
    padding: 30px !important;
}

.disclaimer-title {
    color: #856404;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.disclaimer-title i {
    font-size: 2.5rem;
    color: #FFC107;
    margin-right: 15px;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

/* Footer */
.footer {
    background-color: #1a1a2e !important; /* Dark blue/purple */
    color: #E0BBE4; /* Light purple text */
}

.footer .navbar-brand .logo {
    height: 35px;
    width: auto;
}

.footer .navbar-brand .site-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E0BBE4;
}

.footer h5 {
    color: #E0BBE4; /* Light purple for footer headings */
    font-weight: 600;
}

.footer ul li a {
    color: #ccc; /* Lighter grey for footer links */
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #fff;
}

.footer-partners {
    gap: 20px; /* Space between logos */
}

.footer-img {
    width: 220px;
    height: 60px;
    display: block;
    object-fit: contain;
}

.footer-img-small {
    object-fit: cover;
}

.footer-img-icon {
    max-width: 40px; /* Smaller for 18+ icon */
    height: auto;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

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

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

    .casino-card {
        padding: 20px;
    }

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

    .casino-bonus {
        font-size: 1.2rem;
    }

    .btn-play-now {
        max-width: 180px;
        padding: 10px 25px;
    }

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

    .disclaimer-title i {
        font-size: 2rem;
    }

    .footer-partners {
        justify-content: center;
    }

    
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 500px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .cookie-banner p {
        margin-bottom: 0 !important;
    }
    .cookie-banner .d-flex.gap-2 {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn {
        flex: 1;
    }
    .age-verification-modal p {
        font-size: 1rem;
    }
    .age-verification-modal .btn {
        width: 100%;
    }
    .age-verification-modal .d-flex {
        flex-direction: column;
        gap: 10px !important;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .how-to-use-section h3 {
        font-size: 1.4rem;
    }
    .disclaimer-title {
        font-size: 1.3rem;
    }
    .disclaimer-title i {
        font-size: 1.8rem;
    }
   
    .footer-img-icon {
        max-width: 30px;
    }
}
/* Policy and Legal Content Wrapper */
.policyScopeWrap {
    padding-top: 60px; /* Top padding for the content area */
    padding-bottom: 60px; /* Bottom padding for the content area */
    padding-left: 20px; /* Left padding for the content area */
    padding-right: 20px; /* Right padding for the content area */
    max-width: 960px; /* Maximum width for better readability */
    margin-left: auto; /* Center the content wrapper */
    margin-right: auto; /* Center the content wrapper */
    color: #333333; /* General text color for this section */
    font-size: 1rem; /* Base font size for the wrapper */
    line-height: 1.7; /* Default line height for text */
}

.policyScopeWrap h1 {
    font-size: 2.2rem; /* Moderate size for main section title */
    font-weight: 700; /* Bold weight for emphasis */
    color: #6A0DAD; /* Primary purple color for headings */
    margin-top: 40px; /* Top margin for spacing */
    margin-bottom: 25px; /* Bottom margin for spacing */
    line-height: 1.2; /* Tighter line height for headings */
}

.policyScopeWrap h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    font-weight: 600; /* Semi-bold weight */
    color: #6A0DAD; /* Primary purple color for headings */
    margin-top: 35px; /* Top margin for spacing */
    margin-bottom: 20px; /* Bottom margin for spacing */
    line-height: 1.3; /* Line height for headings */
}

.policyScopeWrap h3 {
    font-size: 1.5rem; /* Further reduced size */
    font-weight: 600; /* Semi-bold weight */
    color: #6A0DAD; /* Primary purple color for headings */
    margin-top: 30px; /* Top margin for spacing */
    margin-bottom: 18px; /* Bottom margin for spacing */
    line-height: 1.4; /* Line height for headings */
}

.policyScopeWrap h4 {
    font-size: 1.3rem; /* Smaller heading size */
    font-weight: 500; /* Medium weight */
    color: #6A0DAD; /* Primary purple color for headings */
    margin-top: 25px; /* Top margin for spacing */
    margin-bottom: 15px; /* Bottom margin for spacing */
    line-height: 1.4; /* Line height for headings */
}

.policyScopeWrap h5 {
    font-size: 1.1rem; /* Smallest heading size */
    font-weight: 500; /* Medium weight */
    color: #6A0DAD; /* Primary purple color for headings */
    margin-top: 20px; /* Top margin for spacing */
    margin-bottom: 12px; /* Bottom margin for spacing */
    line-height: 1.5; /* Line height for headings */
}

.policyScopeWrap p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1.2em; /* Spacing between paragraphs */
    line-height: 1.8; /* Generous line height for readability */
    color: #333333; /* Dark gray for paragraph text */
}

.policyScopeWrap ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 15px; /* Top margin for lists */
    margin-bottom: 20px; /* Bottom margin for lists */
    padding-left: 25px; /* Indentation for bullet points */
    color: #333333; /* Dark gray for list text */
}

.policyScopeWrap ol {
    list-style-type: decimal; /* Default numbered list */
    margin-top: 15px; /* Top margin for lists */
    margin-bottom: 20px; /* Bottom margin for lists */
    padding-left: 25px; /* Indentation for numbers */
    color: #333333; /* Dark gray for list text */
}

.policyScopeWrap li {
    font-size: 1rem; /* Font size for list items */
    margin-bottom: 8px; /* Spacing between list items */
    line-height: 1.7; /* Line height for list items */
    color: #333333; /* Dark gray for list item text */
}

/* Responsive adjustments for policyScopeWrap */
@media (max-width: 768px) {
    .policyScopeWrap {
        padding-top: 40px; /* Reduced top padding on smaller screens */
        padding-bottom: 40px; /* Reduced bottom padding on smaller screens */
        padding-left: 15px; /* Reduced side padding on smaller screens */
        padding-right: 15px; /* Reduced side padding on smaller screens */
    }

    .policyScopeWrap h1 {
        font-size: 1.8rem; /* Adjust h1 for smaller screens */
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .policyScopeWrap h2 {
        font-size: 1.5rem; /* Adjust h2 for smaller screens */
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .policyScopeWrap h3 {
        font-size: 1.3rem; /* Adjust h3 for smaller screens */
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .policyScopeWrap h4 {
        font-size: 1.2rem; /* Adjust h4 for smaller screens */
        margin-top: 18px;
        margin-bottom: 10px;
    }

    .policyScopeWrap h5 {
        font-size: 1rem; /* Adjust h5 for smaller screens */
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .policyScopeWrap p,
    .policyScopeWrap li {
        font-size: 0.95rem; /* Slightly smaller text for readability on small screens */
        line-height: 1.6;
    }

    .policyScopeWrap ul,
    .policyScopeWrap ol {
        padding-left: 20px; /* Adjust list indentation */
    }
}
