:root {
    --primary-purple: hsl(270, 80%, 35%); /* Deep, rich purple */
    --secondary-blue: hsl(210, 70%, 50%); /* Vibrant blue */
    --accent-white: hsl(0, 0%, 100%); /* Pure white */
    --text-color: hsl(240, 5%, 25%); /* Dark grey for readability */
    --light-purple-bg: hsl(270, 20%, 95%); /* Very light purple */
    --light-blue-bg: hsl(210, 20%, 95%); /* Very light blue */
    --gradient-start: var(--primary-purple);
    --gradient-end: var(--secondary-blue);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--accent-white);
}

/* General Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-purple), var(--secondary-blue));
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-bg-light {
    background-color: var(--accent-white);
}

.section-bg-purple-light {
    background-color: var(--primary-purple);
    color: var(--accent-white);
}

.section-bg-purple-light .section-title {
    color: var(--accent-white);
}

.section-bg-blue-light {
    background-color: var(--secondary-blue);
    color: var(--accent-white);
}

.section-bg-blue-light .section-title {
    color: var(--accent-white);
}

/* Header & Hero Section */
.main-header {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 0;
}

.navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

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

.navbar-brand .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-white);
}

.navbar-nav .nav-link {
    color: var(--accent-white) !important;
    font-weight: 600;
    transition: color 0.1s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-blue) !important;
}

.hero-section {
    flex-grow: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

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

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

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Custom Buttons */
.custom-btn-gradient {
    background: linear-gradient(to right, var(--primary-purple), var(--secondary-blue));
    border: none;
    color: var(--accent-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.custom-btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--accent-white);
}

.custom-btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease;
}

.custom-btn-outline:hover {
    background-color: var(--secondary-blue);
    color: var(--accent-white);
    border-color: var(--secondary-blue);
}

/* Casino Cards */
.casino-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    background-color: var(--accent-white);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px){

    .card-body{
        .d-flex.align-items-center{
            flex-direction: column;
        }
    }

    .rating{
        text-align: center;
    }
}

.casino-card .casino-logo {
    max-width: 150px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.casino-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.casino-card .rating i {
    color: gold;
    font-size: 1.2rem;
}

.casino-card .card-text {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* About Socialbigvip Advantages */
.advantage-card {
    background-color: var(--accent-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.advantage-card i {
    color: var(--secondary-blue);
}

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

.section-bg-purple-light .advantage-card {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
}

.section-bg-purple-light .advantage-card h4 {
    color: var(--primary-purple);
}

/* Our Methodology */
.methodology-list .list-group-item {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.1);
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 15px;
}

.methodology-list .list-group-item:last-child {
    margin-bottom: 0;
}

.methodology-list .list-group-item i {
    font-size: 1.8rem;
    color: var(--primary-purple);
}

.methodology-list .list-group-item h5 {
    color: var(--primary-purple);
    font-weight: 600;
}

.methodology-list .list-group-item p {
    color: var(--text-color);
}

/* Our Advantages (second block) */
.advantage-item {
    background-color: var(--accent-white);
    border: none;
    transition: transform 0.1s ease, box-shadow 0.1s ease;

    p{
        color: black;
    }
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-item i {
    color: var(--primary-purple);
}

.advantage-item h4 {
    color: var(--secondary-blue);
}

/* Reviews */
.review-card {
    border: none;
    border-radius: 15px;
    background-color: var(--accent-white);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-card .avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid var(--primary-purple);
}

.review-card h5 {
    color: var(--primary-purple);
    font-weight: 600;
}

.review-card p {
    color: var(--text-color);
}

/* FAQ Section */
.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0.5rem;
}

.accordion-header .accordion-button {
    background-color: var(--primary-purple);
    color: var(--accent-white);
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.1s ease, color 0.1s ease;
}

.accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--secondary-blue);
    color: var(--accent-white);
    box-shadow: none;
}

.accordion-header .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    filter: brightness(2);
}

.accordion-body {
    color: var(--text-color);
    background-color: var(--accent-white);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* Contact Form */
.contact-form {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
}

.contact-form .form-label {
    color: var(--primary-purple) !important;
    font-weight: 600;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid var(--primary-purple);
    padding: 10px 15px;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 0.25rem rgba(var(--secondary-blue-rgb), 0.25);
}

.contact-form .invalid-feedback {
    color: #dc3545;
}

/* Footer */
.footer {
    background-color: var(--primary-purple);
    color: var(--accent-white);
}

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

.footer .footer-brand .site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-white);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
}

.footer-nav li a,
.footer-contact li a {
    color: rgba(255, 255, 255);
    text-decoration: none;
    transition: color 0.1s ease;
}

.footer-nav li a:hover,
.footer-contact li a:hover {
    color: var(--accent-white);
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact li i {
    color: var(--secondary-blue);
}

.age-restriction .badge {
    background-color: #dc3545 !important;
    font-size: 1.1rem;
    padding: 0.5em 0.8em;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-badges .badge {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: var(--accent-white);
    font-weight: normal;
}

.trust-badges .badge i {
    color: var(--secondary-blue);
}

.footer-logos {
    gap: 2rem;
}

.footer-partner-logo {
    max-width: 120px; /* Adjusted based on 100-150px range for 2 images */
    height: auto;
    display: block;
    transition: transform 0.1s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: 90%;
    z-index: 1050;
    background-color: var(--accent-white);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none; /* Hidden by default, shown by JS */
}

.cookie-banner .card-title {
    color: var(--primary-purple);
    font-weight: 600;
}

.cookie-banner .card-text {
    font-size: 0.9rem;
    color: var(--text-color);
}

.cookie-banner .btn-primary {
    background: linear-gradient(to right, var(--primary-purple), var(--secondary-blue));
    border: none;
}

.cookie-banner .btn-outline-secondary {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
}

.cookie-banner .btn-outline-secondary:hover {
    background-color: var(--secondary-blue);
    color: var(--accent-white);
}

/* Cookie Modal */
.modal-content {
    border-radius: 15px;
    background-color: var(--accent-white);
}

.modal-header {
    border-bottom: 1px solid var(--light-purple-bg);
}

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

.modal-body .form-check-label {
    font-weight: 600;
    color: var(--text-color);
}

.modal-body small {
    color: var(--text-color);
}

.modal-footer {
    border-top: 1px solid var(--light-purple-bg);
}

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

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

    .navbar-brand .site-name {
        font-size: 1.5rem;
    }

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

    .footer-heading {
        margin-top: 1.5rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .trust-badges {
        margin-top: 1rem;
    }

    .footer-logos {
        justify-content: center;
        margin-top: 2rem;
    }

    .cookie-banner {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
}
/* Wrapper for general content */
.regShieldWrap {
    padding-top: 3rem; /* Top padding for the content wrapper */
    padding-bottom: 3rem; /* Bottom padding for the content wrapper */
    padding-left: 1.5rem; /* Left padding for the content wrapper */
    padding-right: 1.5rem; /* Right padding for the content wrapper */
    /* You might want to add a max-width and margin: auto here for central alignment */
    /* max-width: 1200px; */
    /* margin: 0 auto; */
}

/* Heading styles within .regShieldWrap */
.regShieldWrap h1 {
    font-size: 2.2rem; /* Moderate size for main content headings */
    font-weight: 700; /* Bold font weight */
    color: var(--primary-purple); /* Primary purple color */
    margin-top: 2.5rem; /* Top margin for spacing */
    margin-bottom: 1.5rem; /* Bottom margin for spacing */
    line-height: 1.2; /* Line height for readability */
}

.regShieldWrap h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    font-weight: 600; /* Semi-bold font weight */
    color: var(--primary-purple); /* Primary purple color */
    margin-top: 2rem; /* Top margin for spacing */
    margin-bottom: 1.2rem; /* Bottom margin for spacing */
    line-height: 1.3; /* Line height for readability */
}

.regShieldWrap h3 {
    font-size: 1.5rem; /* Standard heading size */
    font-weight: 600; /* Semi-bold font weight */
    color: var(--primary-purple); /* Primary purple color */
    margin-top: 1.8rem; /* Top margin for spacing */
    margin-bottom: 1rem; /* Bottom margin for spacing */
    line-height: 1.4; /* Line height for readability */
}

.regShieldWrap h4 {
    font-size: 1.2rem; /* Smaller heading size */
    font-weight: 500; /* Medium font weight */
   color: var(--primary-purple); /* Primary purple color */
    margin-top: 1.5rem; /* Top margin for spacing */
    margin-bottom: 0.8rem; /* Bottom margin for spacing */
    line-height: 1.5; /* Line height for readability */
}

.regShieldWrap h5 {
    font-size: 1.1rem; /* Smallest heading size */
    font-weight: 500; /* Medium font weight */
   color: var(--primary-purple); /* Primary purple color */
    margin-top: 1.2rem; /* Top margin for spacing */
    margin-bottom: 0.6rem; /* Bottom margin for spacing */
    line-height: 1.5; /* Line height for readability */
}

/* Paragraph styles within .regShieldWrap */
.regShieldWrap p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Generous line height for readability */
    color: var(--text-color); /* Dark grey text color */
    margin-bottom: 1rem; /* Bottom margin for spacing between paragraphs */
}

/* Unordered list styles within .regShieldWrap */
.regShieldWrap ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 1rem; /* Top margin for list */
    margin-bottom: 1rem; /* Bottom margin for list */
    padding-left: 1.5rem; /* Indentation for bullet points */
}

/* List item styles within .regShieldWrap */
.regShieldWrap li {
    font-size: 1rem; /* Font size for list items */
    line-height: 1.6; /* Line height for readability */
    color: var(--text-color); /* Dark grey text color */
    margin-bottom: 0.5rem; /* Spacing between list items */
}

/* Remove bottom margin for the last paragraph or list item in a sequence */
.regShieldWrap p:last-child,
.regShieldWrap ul:last-child,
.regShieldWrap ol:last-child,
.regShieldWrap li:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px){
    .hero-section{
        padding: 100px 0;
    }
}