/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a1a; /* Dark background */
    color: #e0e0e0; /* Default text color */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll due to animations */
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-weight: 600;
}

p {
    color: #b0b0b0;
}

a {
    color: #8a2be2; /* Purple accent for links */
    text-decoration: none;
}

a:hover {
    color: #9933ff;
    text-decoration: underline;
}

.text-purple-accent {
    color: #8a2be2 !important;
}

.text-purple-accent-link {
    color: #8a2be2 !important;
    text-decoration: none;
}

.text-purple-accent-link:hover {
    color: #9933ff !important;
    text-decoration: underline;
}

.btn-primary-custom {
    background-color: #8a2be2;
    border-color: #8a2be2;
    color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

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

.btn-secondary-custom {
    background-color: #333366;
    border-color: #333366;
    color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: #444488;
    border-color: #444488;
    transform: translateY(-2px);
}

.btn-outline-primary-custom {
    color: #8a2be2;
    border-color: #8a2be2;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-primary-custom:hover,
.btn-outline-primary-custom:focus,
.btn-outline-primary-custom.active {
    background-color: #8a2be2;
    color: #fff;
    border-color: #8a2be2;
}

.bg-success-custom {
    background-color: #28a745 !important;
}

.bg-info-custom {
    background-color: #17a2b8 !important;
}

.bg-primary-custom {
    background-color: #007bff !important;
}

.bg-warning-custom {
    background-color: #ffc107 !important;
}

.bg-dark-purple-custom {
    background-color: #4b0082 !important;
}

.text-warning-custom {
    color: #ffc107 !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3) !important;
}

/* Header */
.header-main {
    background-color: rgba(10, 10, 26, 0.95); /* Slightly transparent dark */
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    z-index: 1030;
}

.navbar-brand .logo-img {
    height: 40px; /* Adjust as needed */
    width: auto;
}

.navbar-brand .brand-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand {
    white-space: pre-wrap !important;
}

.navbar-toggler {
    border-color: rgba(138, 43, 226, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28138, 43, 226, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    color: #e0e0e0;
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff;
    background-color: rgba(138, 43, 226, 0.1);
    border-radius: 5px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/content/dark-geometric-pattern_2.jpg') repeat; /* Example pattern */
    background-size: cover;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Offset for fixed header */
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

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

.hero-section .img-fluid {
    max-height: 450px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(138, 43, 226, 0.5);
}

/* Rating Grid */
.rating-grid-section {
    background-color: #1a1a33; /* Slightly lighter dark for contrast */
    padding-top: 80px;
    padding-bottom: 80px;
}

.rating-card {
    background-color: #2a2a4a; /* Darker card background */
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    color: #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.rating-card .card-title {
    color: #ffffff;
    font-size: 1.75rem;
}

.rating-card .casino-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(1.1);
}

.rating-stars i {
    color: #ffd700; /* Gold for stars */
    font-size: 1.2rem;
    margin-right: 2px;
}

.badge-lg {
    font-size: 0.9em;
    padding: 0.5em 0.8em;
    border-radius: 0.5rem;
}

/* Comparison Table */
.comparison-table-section {
    background-color: #0a0a1a;
    padding-top: 80px;
    padding-bottom: 80px;
}

.comparison-table {
    background-color: #2a2a4a; /* Darker table background */
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: rgba(138, 43, 226, 0.1);
    color: #e0e0e0;
}

.comparison-table th {
    background-color: #4b0082; /* Dark purple for headers */
    color: #ffffff;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background-color: #3a3a5a; /* Hover effect for rows */
}

/* Filter buttons for table */
.filter-buttons .btn-group .btn-check + .btn-outline-primary-custom {
    background-color: transparent;
    color: #8a2be2;
    border-color: #8a2be2;
    transition: all 0.3s ease;
}

.filter-buttons .btn-group .btn-check:checked + .btn-outline-primary-custom {
    background-color: #8a2be2;
    color: #fff;
    border-color: #8a2be2;
}

.filter-buttons .btn-group .btn-outline-primary-custom:hover {
    background-color: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
}

/* User Reviews */
.user-reviews-section {
    background-color: #1a1a33;
    padding-top: 80px;
    padding-bottom: 80px;
}

.review-card {
    background-color: #2a2a4a;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    color: #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-card .card-title {
    font-size: 1.4rem;
}

.review-card .rating-stars i {
    color: #ffd700;
    font-size: 1.1rem;
}

.review-card .badge {
    font-size: 0.8em;
    padding: 0.4em 0.7em;
    border-radius: 0.4rem;
}

/* Bonus List */
.bonus-list-section {
    background-color: #0a0a1a;
    padding-top: 80px;
    padding-bottom: 80px;
}

.bonus-card {
    background-color: #2a2a4a;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    color: #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.bonus-card .card-title {
    font-size: 1.5rem;
}

.bonus-card h3 {
    font-size: 2rem;
    font-weight: 700;
}

.bonus-card ul li i {
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section {
    background-color: #1a1a33;
    padding-top: 80px;
    padding-bottom: 80px;
}

.form-card {
    background-color: #2a2a4a;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
}

.form-control {
    background-color: #3a3a5a;
    border: 1px solid #4b0082;
    color: #e0e0e0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.form-control::placeholder {
    color: #a0a0a0;
}

.form-control:focus {
    background-color: #4a4a6a;
    border-color: #8a2be2;
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
    color: #ffffff;
}

.form-label {
    font-weight: 600;
    color: #ffffff;
}

.invalid-feedback {
    color: #ff6b6b;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #0a0a1a;
    padding-top: 50px;
    padding-bottom: 50px;
}

.disclaimer-content {
    background-color: #331a40; /* A distinct, darker purple background */
    border: 2px solid #8a2be2; /* A strong purple border */
    position: relative;
    overflow: hidden;
}

.disclaimer-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0) 70%);
    z-index: 0;
}

.disclaimer-content > * {
    position: relative;
    z-index: 1;
}

.disclaimer-icon {
    font-size: 3rem;
    color: #ffc107; /* Warning yellow */
    margin-bottom: 15px;
}

.disclaimer-content h3 {
    color: #ffc107;
    font-weight: 700;
}

.disclaimer-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Footer */
.footer-main {
    background-color: #0d0d26; /* Slightly different dark for footer */
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer-main .brand-text-footer {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.footer-main h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.footer-main .list-unstyled li {
    margin-bottom: 0.5rem;
}

.footer-main .footer-link {
    color: #b0b0b0;
    transition: color 0.3s ease;
    word-break: break-all;
}

.footer-main .footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-main .bi {
    font-size: 1.1rem;
}

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

.footer-logo-item img {
    width: 100%;
    max-width: 120px; /* Limit width */
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.age-restriction-icon {
    max-width: 60px !important; /* Smaller for 18+ icon */
    filter: brightness(1.2) hue-rotate(-20deg) saturate(1.5); /* Make it stand out, maybe reddish tint */
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background-color: #2a2a4a; /* Dark card background */
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    z-index: 1050;
    display: none; /* Hidden by default, shown by JS */
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

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

.cookie-banner .card-title {
    color: #ffffff;
}

.cookie-banner .form-check-label {
    color: #e0e0e0;
}

.cookie-banner .form-check-input:checked {
    background-color: #8a2be2;
    border-color: #8a2be2;
}

.cookie-banner .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

/* Cookie Consent Modal */
.modal-cookie-content {
    background-color: #2a2a4a;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    color: #e0e0e0;
}

.modal-header {
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.modal-footer {
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%); /* Makes the close button white */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

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

    .hero-section .img-fluid {
        max-height: 300px;
        margin-top: 30px;
    }

    .text-md-start {
        text-align: center !important;
    }

    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }

    .footer-main .text-center.text-md-start {
        text-align: center !important;
    }

    .footer-main .col-md-4, .footer-main .col-md-3, .footer-main .col-md-2 {
        text-align: center;
    }

    .footer-main .navbar-brand {
        justify-content: center;
    }

    .footer-main .list-unstyled {
        padding-left: 0;
    }

    .cookie-banner {
        width: calc(100% - 40px);
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
}
/* Styles for specific content blocks */
.dataClauseFrame {
    /* Padding for the content frame */
    padding: 60px 20px;
    /* Max width to keep content readable on large screens */
    max-width: 1200px;
    /* Center the frame */
    margin-left: auto;
    margin-right: auto;
    /* Optional: background for the frame if it needs to stand out */
    /* background-color: #1a1a33; */
    /* border-radius: 15px; */
    /* border: 1px solid rgba(138, 43, 226, 0.2); */
}

.dataClauseFrame h1 {
    /* Font size for main headings within the frame */
    font-size: 2.2rem;
    /* Margin below the heading */
    margin-bottom: 1rem;
    /* Color for headings, consistent with general styles */
    color: #ffffff;
    /* Line height for readability */
    line-height: 1.2;
}

.dataClauseFrame h2 {
    /* Font size for sub-headings */
    font-size: 1.8rem;
    /* Margin below the heading */
    margin-bottom: 0.9rem;
    /* Color for headings */
    color: #ffffff;
    /* Line height for readability */
    line-height: 1.3;
}

.dataClauseFrame h3 {
    /* Font size for smaller sub-headings */
    font-size: 1.5rem;
    /* Margin below the heading */
    margin-bottom: 0.8rem;
    /* Color for headings */
    color: #ffffff;
    /* Line height for readability */
    line-height: 1.4;
}

.dataClauseFrame h4 {
    /* Font size for even smaller headings */
    font-size: 1.25rem;
    /* Margin below the heading */
    margin-bottom: 0.7rem;
    /* Color for headings */
    color: #ffffff;
    /* Line height for readability */
    line-height: 1.5;
}

.dataClauseFrame h5 {
    /* Font size for the smallest headings */
    font-size: 1.1rem;
    /* Margin below the heading */
    margin-bottom: 0.6rem;
    /* Color for headings */
    color: #ffffff;
    /* Line height for readability */
    line-height: 1.6;
}

.dataClauseFrame p {
    /* Font size for paragraphs */
    font-size: 1rem;
    /* Margin below the paragraph */
    margin-bottom: 1em;
    /* Line height for readability */
    line-height: 1.6;
    /* Color for paragraphs, consistent with general styles */
    color: #b0b0b0;
}

.dataClauseFrame ul {
    /* Margin below the unordered list */
    margin-bottom: 1em;
    /* Default padding for list items */
    padding-left: 25px;
    /* Default list style type */
    list-style-type: disc;
    /* Color for list text, consistent with paragraphs */
    color: #b0b0b0;
}

.dataClauseFrame ol {
    /* Margin below the ordered list */
    margin-bottom: 1em;
    /* Default padding for list items */
    padding-left: 25px;
    /* Default list style type */
    list-style-type: decimal;
    /* Color for list text, consistent with paragraphs */
    color: #b0b0b0;
}

.dataClauseFrame li {
    /* Margin below each list item */
    margin-bottom: 0.5em;
    /* Line height for readability within list items */
    line-height: 1.6;
    /* Color for list item text, consistent with paragraphs */
    color: #b0b0b0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .dataClauseFrame {
        /* Adjust padding for mobile devices */
        padding: 40px 15px;
    }

    .dataClauseFrame h1 {
        font-size: 1.8rem;
    }

    .dataClauseFrame h2 {
        font-size: 1.5rem;
    }

    .dataClauseFrame h3 {
        font-size: 1.3rem;
    }

    .dataClauseFrame h4 {
        font-size: 1.1rem;
    }

    .dataClauseFrame h5 {
        font-size: 1rem;
    }

    .dataClauseFrame p,
    .dataClauseFrame ul,
    .dataClauseFrame ol,
    .dataClauseFrame li {
        font-size: 0.95rem;
    }
}
