:root {
    --primary-purple: #6a0dad;
    --secondary-pink: #ff69b4;
    --dark-background: #1a0033;
    --light-text: #f8f9fa;
    --muted-text: #adb5bd;
    --card-background: #ffffff;
    --gradient-primary: linear-gradient(45deg, var(--primary-purple), var(--secondary-pink));
    --gradient-secondary: linear-gradient(45deg, #ff69b4, #ff2d8a);
    --gradient-dark: linear-gradient(45deg, #2c004d, #0d001a);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-background);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll due to animations */
}

h1, h2, h3, h4, h5, h6 {
    color: var(--light-text);
    font-weight: 600;
}

p {
    color: var(--muted-text);
}

a {
    color: var(--secondary-pink);
    text-decoration: none;
}

a:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

/* Custom Buttons */
.btn-primary-gradient {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary-gradient:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary-gradient {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-secondary-gradient:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.animate-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.animate-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out, top 0.4s ease-in-out, left 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.animate-btn:hover::before {
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
}

.section-title {
    font-size: 2.8rem;
    color: var(--light-text);
    position: relative;
    padding-bottom: 15px;
}

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

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

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

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

.hero-illustration-img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Featured Items Section */
.featured-items-section {
    background-color: var(--dark-background);
}

.featured-card {
    background-color: var(--card-background);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark-background);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.featured-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--primary-purple);
    border-radius: 50%;
    padding: 1.5rem;
}

/* Rating List Section */
.rating-list-section {
    background-color: var(--dark-background);
}

.casino-card {
    background-color: var(--card-background);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark-background);
}

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

.casino-logo-small {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    padding: 10px;
}

.casino-card .card-title {
    color: var(--primary-purple);
}

.casino-card .card-text {
    color: var(--muted-text);
}

/* Comparison Table Section */
.comparison-table-section {
    background-color: var(--dark-background);
}
@media (max-width:991px) {
    .comparison-table-section {
   display: none;
}
}
.table-responsive {
    border-radius: 15px;
    overflow: hidden;
}

.table {
    --bs-table-bg: var(--card-background);
    --bs-table-color: var(--dark-background);
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background: var(--gradient-dark);
    color: var(--light-text);
    border: none;
    padding: 1.2rem 1rem;
    font-weight: 700;
}

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

.table tbody tr:nth-of-type(odd) {
    background-color: #f0f0f0;
}

.table tbody tr:hover {
    background-color: #e9ecef;
}

.table tbody td, .table tbody th {
    border-top: 1px solid #dee2e6;
    padding: 1rem;
}

/* Rating Criteria Section */
.rating-criteria-section {
    background-color: var(--dark-background);
}

.criteria-card {
    background-color: var(--card-background);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark-background);
}

.criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.criteria-icon {
    font-size: 2.5rem;
    color: var(--secondary-pink);
    margin-bottom: 1rem;
}

.criteria-card h4 {
    color: var(--primary-purple);
}

.criteria-progress-bar {
    background: var(--gradient-primary);
    transition: width 1s ease-out;
}

/* Bonus List Section */
.bonus-list-section {
    background-color: var(--dark-background);
}

.bonus-card {
    background-color: var(--card-background);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark-background);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.bonus-card h4 {
    color: var(--primary-purple);
}

.bonus-tag {
    padding: 0.4em 0.8em;
    border-radius: 50px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
}

.bonus-tag:hover {
    transform: scale(1.05);
}

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

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

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

/* Disclaimer Section */
.disclaimer-section {
    background-color: #330066; /* Darker purple to stand out */
    color: var(--light-text);
    padding: 3rem 0;
    border-top: 5px solid var(--secondary-pink);
    border-bottom: 5px solid var(--secondary-pink);
}

.disclaimer-content {
    background-color: rgba(0, 0, 0, 0.3); /* Slightly transparent dark background */
    border: 1px solid var(--primary-purple);
    padding: 2rem;
    border-radius: 10px;
}

.disclaimer-title {
    color: var(--secondary-pink);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.disclaimer-title i {
    color: var(--secondary-pink);
}

/* Footer */
.site-footer {
    background: var(--gradient-dark);
    color: var(--muted-text);
    font-size: 0.9rem;
}

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

.footer-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(1.2);
}

.footer-link {
    color: var(--muted-text);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-pink);
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer-partner-logo {
    max-width: 130px; /* Adjusted to be between 100-150px */
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
    filter: none; /* Ensure no grayscale or other filters */
}

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

.footer-18plus-logo {
    max-width: 80px; /* Slightly smaller for 18+ icon */
    filter: brightness(1.2) sepia(1) saturate(10) hue-rotate(330deg); /* Red tint for 18+ */
}

/* Cookie Consent Modal Styles */
.cookie-modal-content {
    background-color: var(--card-background);
    color: var(--dark-background);
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content .modal-header, .cookie-modal-content .modal-footer {
    border-color: #eee;
}

.cookie-modal-content .modal-title {
    color: var(--primary-purple);
    font-weight: 700;
}

.cookie-modal-content .form-check-label {
    color: var(--dark-background);
    font-weight: 600;
}

.cookie-modal-content .form-check-label i {
    color: var(--secondary-pink);
}

.cookie-modal-content .text-muted {
    color: var(--muted-text) !important;
}

.cookie-modal-content .cookie-policy-link {
    color: var(--primary-purple);
    font-weight: 600;
}

.cookie-modal-content .cookie-policy-link:hover {
    color: var(--secondary-pink);
}

.cookie-modal-content .btn-primary {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.cookie-modal-content .btn-primary:hover {
    background-color: var(--secondary-pink);
    border-color: var(--secondary-pink);
}

.cookie-modal-content .btn-outline-secondary {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cookie-modal-content .btn-outline-secondary:hover {
    color: var(--secondary-pink);
    border-color: var(--secondary-pink);
}

.cookie-modal-content .btn-link {
    color: var(--primary-purple);
    transition: color 0.3s ease;
}

.cookie-modal-content .btn-link:hover {
    color: var(--secondary-pink);
}

.cookie-modal-content .btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.cookie-modal-content .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
    }

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

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

    .hero-illustration-img {
        max-width: 100%;
        margin-top: 2rem;
    }

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

    .footer-logo {
        max-width: 150px;
    }

    .footer-logos {
        gap: 1rem;
    }

    .footer-partner-logo {
        max-width: 100px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}
/* Container for general content */
.dataTrustFrame {
    padding: 3rem 1.5rem; /* Top/bottom and side padding */
    /* If this frame needs a distinct background, uncomment below */
    /* background-color: var(--card-background); */ 
    /* color: var(--dark-background); */ /* Adjust text color if background changes */
}

/* Heading 1 styles within dataTrustFrame */
.dataTrustFrame h1 {
    font-size: 2.2rem; /* Moderate font size for main content headings */
    margin-bottom: 1.5rem; /* Space below heading */
    color: var(--light-text); /* Consistent heading color */
    line-height: 1.2; /* Line height for readability */
}

/* Heading 2 styles within dataTrustFrame */
.dataTrustFrame h2 {
    font-size: 1.8rem; /* Slightly smaller than H1 */
    margin-bottom: 1.25rem; /* Space below heading */
    color: var(--light-text); /* Consistent heading color */
    line-height: 1.3;
}

/* Heading 3 styles within dataTrustFrame */
.dataTrustFrame h3 {
    font-size: 1.5rem; /* Standard H3 size */
    margin-bottom: 1rem; /* Space below heading */
    color: var(--light-text); /* Consistent heading color */
    line-height: 1.4;
}

/* Heading 4 styles within dataTrustFrame */
.dataTrustFrame h4 {
    font-size: 1.3rem; /* Standard H4 size */
    margin-bottom: 0.75rem; /* Space below heading */
    color: var(--light-text); /* Consistent heading color */
    line-height: 1.5;
}

/* Heading 5 styles within dataTrustFrame */
.dataTrustFrame h5 {
    font-size: 1.1rem; /* Standard H5 size */
    margin-bottom: 0.5rem; /* Space below heading */
    color: var(--light-text); /* Consistent heading color */
    line-height: 1.6;
}

/* Paragraph styles within dataTrustFrame */
.dataTrustFrame p {
    font-size: 1rem; /* Base font size for paragraphs */
    margin-bottom: 1rem; /* Space below paragraph */
    color: var(--muted-text); /* Muted text color for body copy */
    line-height: 1.7; /* Increased line height for better readability */
}

/* Unordered list styles within dataTrustFrame */
.dataTrustFrame ul {
    list-style: disc; /* Default disc bullet points */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-bottom: 1rem; /* Space below the list */
    color: var(--muted-text); /* Consistent text color */
}

/* List item styles within dataTrustFrame */
.dataTrustFrame li {
    font-size: 1rem; /* Consistent font size for list items */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Line height for readability */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .dataTrustFrame {
        padding: 2rem 1rem; /* Reduce padding on smaller screens */
    }

    .dataTrustFrame h1 {
        font-size: 1.8rem; /* Adjust H1 for mobile */
    }

    .dataTrustFrame h2 {
        font-size: 1.5rem; /* Adjust H2 for mobile */
    }

    .dataTrustFrame h3 {
        font-size: 1.3rem; /* Adjust H3 for mobile */
    }

    .dataTrustFrame h4 {
        font-size: 1.1rem; /* Adjust H4 for mobile */
    }

    .dataTrustFrame h5 {
        font-size: 1rem; /* Adjust H5 for mobile */
    }

    .dataTrustFrame p,
    .dataTrustFrame ul,
    .dataTrustFrame li {
        font-size: 0.95rem; /* Slightly smaller text for mobile readability */
    }
}
.card-body{
    text-align: center;
}
.text-warning{
    justify-content: center;
}
