/* General styles */
* {
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Default weight */
    font-style: normal;
    color: #F0F0F0; /* Default light text color */
}

body {
    background-color: #1A1A2E;
    line-height: 1.6;
    margin-top: 100px; /* To account for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #F0F0F0;
    /* Optional: Custom gradient for headings */
    /* background: linear-gradient(90deg, #FFD700, #E94560); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

a {
    color: #FFD700; /* Custom link color */
    text-decoration: none;
}

a:hover {
    color: #E94560; /* Custom link hover color */
    text-decoration: underline;
}

.bg-dark {
    background-color: #1A1A2E !important;
}

.bg-dark-alt {
    background-color: #2C2C4A !important;
}

.text-primary {
    color: #FFD700 !important;
}

.custom-btn-gold {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #1A1A2E !important;
    font-weight: 600;
    transition: none; /* No animation */
}

.custom-btn-gold:hover {
    background-color: #E94560;
    border-color: #E94560;
    color: #F0F0F0 !important;
}

.btn-outline-light {
    border-color: #F0F0F0;
    color: #F0F0F0;
    transition: none; /* No animation */
}

.btn-outline-light:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    border-color: #FFD700;
}

/* Header styles */
header {
    z-index: 1030;
}

.header-disclaimer {
    background-color: #E94560 !important;
    color: #F0F0F0 !important;
    margin-bottom: 15px!important;
}

.header-disclaimer a {
    color: #F0F0F0 !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -100px; /* Compensate for fixed header */
    padding-top: 100px; /* Push content down */
}

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

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

/* Offer Cards */
.offer-card {
    background-color: #2C2C4A;
    border-radius: 0.5rem;
}

.offer-card .offer-logo {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    padding: 15px;
}

/* User Reviews */
.review-card {
    background-color: #2C2C4A;
    border-radius: 0.5rem;
}

.review-card .badge {
    font-size: 0.75em;
}

/* Rating Criteria */
.criterion-item {
    background-color: #2C2C4A;
    border-radius: 0.5rem;
}

.progress {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background-color: #3CB371 !important; /* Success green */
}

/* Articles Block */
.article-card {
    background-color: #2C2C4A;
    border-radius: 0.5rem;
}

/* Contact Form */
.form-control {
    background-color: #2C2C4A !important;
    border-color: #4A4A6A !important;
    color: #F0F0F0 !important;
}

.form-control::placeholder {
    color: rgba(240, 240, 240, 0.5) !important;
}

.form-control:focus {
    border-color: #FFD700 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25) !important;
    background-color: #2C2C4A !important;
    color: #F0F0F0 !important;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #1A1A2E;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.disclaimer-block .bg-dark-warning-overlay {
    background-color: rgba(233, 69, 96, 0.2) !important; /* Reddish overlay */
    border-color: #E94560 !important;
}

.disclaimer-block p {
    color: #F0F0F0;
}

.disclaimer-block .text-warning {
    color: #E94560 !important;
}

/* Footer */
footer {
    background-color: #1A1A2E !important;
}

footer .social-icons a {
    font-size: 1.5rem;
    color: #F0F0F0;
    transition: none; /* No animation */
}
@media (max-width:767px) {
    .block-menu-apadt{
        flex-direction: column;
        justify-content: center;
    }
}
footer .social-icons a:hover {
    color: #FFD700;
}
@media (max-width:575px) {
    .nav-adapt{
display: none;
    }
}
.footer-logos {
    gap: 1.5rem; /* Space between logos */
}

.footer-logos img {
    max-width: 130px; /* Max width for logos */
    height: 90px!important;
    object-fit: contain;
}

/* Age Verification PopUp */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1040; /* Above everything else */
    display: none; /* Hidden by default */
}

.age-verification-content {
    background-color: #1A1A2E;
    border: 2px solid #E94560;
    max-width: 450px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    z-index: 1035;
    border-radius: 0.5rem;
    display: none; /* Hidden by default */
    background-color: #2C2C4A !important;
    border: 1px solid #4A4A6A;
}

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

.cookie-banner .card-text {
    color: #F0F0F0;
}

/* Cookie Modal */
.modal-content {
    background-color: #1A1A2E;
    border: 1px solid #4A4A6A;
}

.modal-title {
    color: #F0F0F0;
}

.btn-close-white {
    filter: invert(1);
}

.form-check-label {
    color: #F0F0F0;
}

.form-check-input:checked {
    background-color: #FFD700;
    border-color: #FFD700;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
        min-height: 400px;
    }
    .hero-section h1 {
                margin-top: 60px;
        font-size: 1.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .header-disclaimer {
        font-size: 0.75rem;
    }
    .footer-logos {
        gap: 1rem;
    }
    .footer-logos img {
        max-width: 100px;
    }
    .cookie-banner {
        width: 90%;
        left: 5%;
        right: 5%;
        bottom: 15px;
    }
    .gold-btn-apadr{
        padding-bottom: 60px;
    }
}
/* Styles for the main content block */
.infoGuardBlock {
    padding-top: 3rem;    /* Top padding for the block */
    padding-bottom: 3rem; /* Bottom padding for the block */
    padding-left: 1.5rem; /* Left padding for the block */
    padding-right: 1.5rem;/* Right padding for the block */
    max-width: 1200px;    /* Optional: Max width for content readability */
    margin-left: auto;    /* Center the block horizontally */
    margin-right: auto;   /* Center the block horizontally */
}

/* Heading 1 styles within infoGuardBlock */
.infoGuardBlock h1 {
    font-size: 2.2rem;     /* Moderate font size for H1 */
    margin-top: 2rem;      /* Top margin for H1 */
    margin-bottom: 1.5rem; /* Bottom margin for H1 */
    line-height: 1.2;      /* Line height for better readability */
}

/* Heading 2 styles within infoGuardBlock */
.infoGuardBlock h2 {
    font-size: 1.8rem;     /* Moderate font size for H2 */
    margin-top: 1.8rem;    /* Top margin for H2 */
    margin-bottom: 1.2rem; /* Bottom margin for H2 */
    line-height: 1.3;      /* Line height for better readability */
}

/* Heading 3 styles within infoGuardBlock */
.infoGuardBlock h3 {
    font-size: 1.5rem;     /* Moderate font size for H3 */
    margin-top: 1.5rem;    /* Top margin for H3 */
    margin-bottom: 1rem;   /* Bottom margin for H3 */
    line-height: 1.4;      /* Line height for better readability */
}

/* Heading 4 styles within infoGuardBlock */
.infoGuardBlock h4 {
    font-size: 1.3rem;     /* Moderate font size for H4 */
    margin-top: 1.2rem;    /* Top margin for H4 */
    margin-bottom: 0.8rem; /* Bottom margin for H4 */
    line-height: 1.5;      /* Line height for better readability */
}

/* Heading 5 styles within infoGuardBlock */
.infoGuardBlock h5 {
    font-size: 1.1rem;     /* Moderate font size for H5 */
    margin-top: 1rem;      /* Top margin for H5 */
    margin-bottom: 0.7rem; /* Bottom margin for H5 */
    line-height: 1.5;      /* Line height for better readability */
}

/* Paragraph styles within infoGuardBlock */
.infoGuardBlock p {
    font-size: 1rem;       /* Base font size for paragraphs */
    line-height: 1.7;      /* Generous line height for readability */
    margin-bottom: 1rem;   /* Bottom margin for paragraphs */
}

/* Unordered list styles within infoGuardBlock */
.infoGuardBlock ul {
    margin-top: 1rem;      /* Top margin for lists */
    margin-bottom: 1rem;   /* Bottom margin for lists */
    padding-left: 1.5rem;  /* Indent list items */
    list-style-type: disc; /* Default disc style for list items */
}

/* List item styles within infoGuardBlock */
.infoGuardBlock 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 */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .infoGuardBlock {
        padding-left: 1rem;  /* Reduce side padding on smaller screens */
        padding-right: 1rem; /* Reduce side padding on smaller screens */
    }

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

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

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

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

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

    .infoGuardBlock p,
    .infoGuardBlock li {
        font-size: 0.95rem; /* Slightly smaller text for paragraphs and list items on mobile */
    }
}
    #ageVerificationModal {
      position: fixed;
      top:0; left:0;
      width:100%; height:100%;
      background: rgba(0,0,0,0.85);
      z-index:9999;
      display: none;
      justify-content: center;
      align-items: center;
    }
    .age-verification-content {
      background: #222;
      color: #fff;
      padding: 2rem;
      border-radius: 10px;
      text-align: center;
    }