/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a0f3d; /* Dark purple base */
    color: #e0e0e0; /* Light grey for standard text */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from AOS animations */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #f0f0f0; /* Slightly lighter for headings */
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

a {
    color: #7b4397; /* Dark purple link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c04848; /* Slightly lighter on hover */
}

/* Buttons */
.btn-success {
    background-color: #4CAF50; /* Green for success/action buttons */
    border-color: #4CAF50;
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #45a049;
    border-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Top Bar */
.top-bar {
    background-color: #0d0725; /* Even darker blue/purple */
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Header */
.header {
    background-color: #120a30; /* Darker purple */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .navbar-brand {
    display: flex;
    align-items: center;
    color: #f0f0f0;
    font-size: 1.8rem;
    font-weight: 700;
}

.header .logo-img {
    height: 40px; /* Adjust logo size */
    margin-right: 10px;
}

.header .site-name {
    color: #f0f0f0;
}

/* Hero Section */
.hero-section {
    background-image: url('uploads/uploads/casino-hero-bg_10.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 15, 61, 0.8), rgba(18, 10, 48, 0.8)); /* Dark purple/blue overlay */
    z-index: 1;
}

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

.hero-section h1 {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.2;
}

.hero-section p.lead {
    color: #e0e0e0;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Casino Offer Cards Section */
.casino-offers-section {
    background-color: #1e134b; /* Slightly lighter dark purple for section background */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.casino-card {
    background: linear-gradient(145deg, #2a1c5e, #1f1442); /* Gradient for card background */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards have equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

.casino-title {
    color: #f8f9fa; /* Light color for casino names */
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.casino-bonus-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffc107; /* Yellow for bonus text */
    line-height: 1.3;
}

.casino-card .rating {
    color: #ffc107; /* Yellow for stars */
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-card .rating i {
    margin: 0 2px;
}

.casino-card .rating span {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.1rem;
}

.casino-terms {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-top: auto; /* Push to bottom */
}

/* About Online Casinos Section */
.about-casinos-section {
    background-color: #120a30; /* Dark blue/purple */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-casinos-section h2 {
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.about-casinos-section h3 {
    color: #7b4397; /* Accent color for subheadings */
    border-bottom: 2px solid #7b4397;
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.about-casinos-section p {
    color: #e0e0e0;
    font-size: 1.05rem;
}

.about-casinos-section ul {
    padding-left: 0;
}

.about-casinos-section ul li {
    color: #e0e0e0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.about-casinos-section ul li i {
    color: #4CAF50; /* Green checkmark */
    font-size: 1.2rem;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #0d0725; /* Very dark background */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.disclaimer-content {
    background: linear-gradient(135deg, #3a2c6d, #2d2151); /* Distinct gradient background */
    border: 2px solid #7b4397; /* Accent border */
    color: #e0e0e0;
    position: relative;
}

.disclaimer-title {
    color: #ffc107; /* Warning yellow for title */
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.disclaimer-title i {
    color: #ffc107;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #0d0725; /* Darkest blue/purple */
    color: #a0a0a0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0f0f0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer .logo-img {
    height: 35px;
    margin-right: 8px;
}

.footer .site-name {
    color: #f0f0f0;
}

.footer .responsible-gaming-logos {
    gap: 1.5rem; /* Spacing between logos */
    margin-bottom: 2rem;
}

.footer .footer-img {
    max-width: 120px; /* Max width for footer logos */
    height: auto;
    display: block; /* Ensure images behave as blocks for centering */
    object-fit: contain; /* Maintain aspect ratio */
}

.footer .footer-img[alt="18+ Only"] {
    max-width: 60px; /* Smaller for 18+ icon */
    filter: none; /* Ensure no grayscale */
}

.footer-links {
    padding: 0;
    margin-bottom: 1.5rem;
}

.footer-links li a {
    color: #a0a0a0;
    font-size: 0.95rem;
}

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

.footer .copyright {
    font-size: 0.85rem;
    color: #707070;
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.age-verification-modal .modal-content {
    background: linear-gradient(135deg, #2a1c5e, #1f1442);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #f0f0f0;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.age-verification-modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.age-verification-modal h2 {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 2rem;
}

.age-verification-modal p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.age-verification-modal .modal-actions button {
    margin: 10px;
    min-width: 150px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #120a30; /* Dark blue/purple */
    color: #e0e0e0;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1040;
    display: none; /* Hidden by default, shown by JS */
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cookie-banner.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-banner a {
    color: #7b4397;
    text-decoration: underline;
}

.cookie-banner .cookie-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 767.98px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .cookie-actions button {
        flex-grow: 1;
    }
}
/* Styles for content within legalFoldBox */
.legalFoldBox {
    padding-top: 3rem; /* Top padding for the legal content box */
    padding-left: 1.5rem; /* Left padding for the legal content box */
    padding-right: 1.5rem; /* Right padding for the legal content box */
    padding-bottom: 3rem; /* Bottom padding for the legal content box */
    /* You might want to add a background color or border here if it's a distinct section */
    /* background-color: #1a0f3d; */ 
    /* color: #e0e0e0; */
}

.legalFoldBox h1 {
    font-size: 2rem; /* Moderate font size for main headings */
    line-height: 1.2; /* Line height for readability */
    margin-bottom: 1.5rem; /* Space below the heading */
    color: #f0f0f0; /* Light color for headings */
    font-weight: 700; /* Bold font weight */
}

.legalFoldBox h2 {
    font-size: 1.75rem; /* Slightly smaller heading */
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #f0f0f0;
    font-weight: 600;
}

.legalFoldBox h3 {
    font-size: 1.5rem; /* Even smaller heading */
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #f0f0f0;
    font-weight: 600;
}

.legalFoldBox h4 {
    font-size: 1.25rem; /* Smallest heading before paragraph text */
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: #f0f0f0;
    font-weight: 500;
}

.legalFoldBox h5 {
    font-size: 1.1rem; /* Very small heading, almost like strong paragraph text */
    line-height: 1.6;
    margin-bottom: 0.6rem;
    color: #f0f0f0;
    font-weight: 500;
}

.legalFoldBox p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Generous line height for readability */
    margin-bottom: 1rem; /* Space below paragraphs */
    color: #e0e0e0; /* Light grey for standard text */
}

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

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

.legalFoldBox 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 */
    color: #e0e0e0; /* Light grey for list item text */
}
