body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
}

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

.has-background-dark {
    background-color: #1a1a1a !important;
}

.has-background-black {
    background-color: #000000 !important;
}

.has-background-warning-dark {
    background-color: #332b00 !important; /* Darker yellow/orange for warning */
}

.button.is-primary {
    background-color: #A7FF83;
    color: #000000;
    border-color: #A7FF83;
    font-weight: 600;
    text-decoration: none !important;
}

.button.is-primary:hover {
    background-color: #8ee06a;
    border-color: #8ee06a;
    color: #000000;
}

.button.is-light {
    background-color: #4a4a4a;
    color: #FFFFFF;
    border-color: #4a4a4a;
    text-decoration: none !important;
}

.button.is-light:hover {
    background-color: #5a5a5a;
    border-color: #5a5a5a;
    color: #FFFFFF;
}

/* Header */
.top-header {
    font-size: 0.8rem;
    padding: 0.5rem 0;
    background-color: #0a0a0a !important;
}

/* Navbar */
.navbar {
    background-color: #0a0a0a;
    border-bottom: 1px solid #222;
}

.navbar-item img {
    max-height: 2.5rem;
    width: 100%;
    object-fit: contain;
}

.site-title {
    color: #A7FF83 !important;
}

.navbar-item {
    color: #FFFFFF;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar-item:hover {
    color: #A7FF83;
    background-color: transparent;
}

.navbar-burger {
    color: #A7FF83;
}

/* Hero Section */
.hero-background {
    background-image: url('visuals/uploads/hero-background_187.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #A7FF83 !important;
}

.hero-subtitle {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.hero-feature-box {
    background-color: rgba(26, 26, 26, 0.8);
    border: 1px solid #A7FF83;
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-feature-box p {
    margin-bottom: 0.5rem;
}

.section-title {
    color: #A7FF83 !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Block 1: Coljuegos */
.coljuegos-logo {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Block 2: Platform Cards */
.platform-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 100%; /* Full width within parent container */
}

.platform-card .media-left {
    margin-right: 1.5rem;
}

.platform-card .platform-logo {
    border-radius: 8px;
    object-fit: contain;
    width: 200px;
    height: 200px;
    background-color: #000; /* Ensure visibility on dark backgrounds */
    padding: 5px;
}

.platform-card .rating .icon {
    vertical-align: middle;
}

.platform-card ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.platform-card ul li {
    margin-bottom: 0.3rem;
}

.platform-card .payment-systems img.payment-logo {
    max-height: 30px;
    margin-right: 10px;
    filter: brightness(0) invert(1) grayscale(100%) brightness(1.5); /* Make logos visible on dark background, slight green tint */
}

.platform-card .payment-systems img.payment-logo:hover {
    filter: none; /* Restore original colors on hover */
}

.platform-button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 5px;
}

/* Block 3: About igromania.it.com */
.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Block 4: FAQ */
.faq-panel {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #A7FF83;
}

.faq-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    color: #FFFFFF;
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.faq-heading:hover {
    background-color: #333;
    color: #A7FF83;
}

.faq-heading .icon {
    color: #A7FF83;
    transition: transform 0.3s;
}

.faq-heading.is-active .icon {
    transform: rotate(45deg);
}

.faq-content {
    background-color: #1a1a1a;
    padding: 1.25rem;
    border-top: 1px solid #333;
}

.faq-content.is-hidden {
    display: none;
}

/* Block 5: Testimonials */
.review-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
}

.review-card .media-left img {
    border: 2px solid #A7FF83;
}

.review-card .rating .icon {
    color: #A7FF83;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 0;
    background-color: #332b00; /* Darker yellow/orange */
    border-top: 5px solid #A7FF83; /* Lime green border top */
    border-bottom: 5px solid #A7FF83; /* Lime green border bottom */
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.disclaimer-box {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    border: 2px solid #A7FF83;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.disclaimer-box .title {
    color: #A7FF83 !important; /* Lime green title */
    font-weight: 700;
}

.disclaimer-divider {
    background-color: #A7FF83;
    height: 1px;
    margin: 1.5rem 0;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem 2rem;
    background-color: #0a0a0a;
    border-top: 1px solid #222;
}

.footer-logo-link img {
    height: 50px;
    width: 100%;
    object-fit: contain;
}

.footer-logo-link:hover img {
    filter: none; /* Restore color on hover */
}

.site-title-footer {
    color: #A7FF83 !important;
}

.footer-link {
    color: #FFFFFF;
    margin: 0 0.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #A7FF83;
}

.footer-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between logos */
    margin-top: 2rem;
}

.footer-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* Uniform height for all logos */
}

.footer-logo-item img.footer-img {
    max-width: 120px; /* Limit width */
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) grayscale(100%) brightness(1.5); /* Make logos visible on dark background, slight green tint */
}

.footer-logo-item img.footer-img:hover {
    filter: none; /* Restore original colors on hover */
}

.footer-logo-item img.footer-img-18plus {
    max-width: 50px; /* Smaller for 18+ icon */
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: none; /* 18+ icon should retain its color */
}

/* Age Verification Modal */
.age-modal-content .box {
    background-color: #1a1a1a;
    border: 2px solid #A7FF83;
    padding: 3rem;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.age-input {
    border-color: #A7FF83;
    background-color: #000000;
    color: #FFFFFF;
}

.age-input::placeholder {
    color: #888;
}
.age-modal-content .box{
    z-index: 1000;
}
/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0a0a0a;
    border-top: 1px solid #A7FF83;
    padding: 1rem 0;
    z-index: 10;
}

.cookie-box {
    background-color: #1a1a1a !important;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cookie-box p {
    margin-bottom: 1rem;
}

.cookie-box .buttons {
    width: 100%;
    justify-content: flex-end;
}

/* General overrides for Bulma */
.title, .subtitle {
    color: #FFFFFF;
}

.content ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.content ol {
    list-style: decimal;
    margin-left: 1.5rem;
}
.navbar-menu {
    background-color: #000 !important;
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .title.is-1 {
        font-size: 25px;
    }
    .title.is-2 {
        font-size: 22px;
    }
    #ageVerificationModal .new-ne{
        flex-direction: column !important;
    }
   #ageVerificationModal .control2 {
    margin-top: 10px;
    }
  .button.is-primary {
    font-weight: 300;
    font-size: 15px;
  }
    .navbar-menu {
        background-color: #0a0a0a;
        padding: 1rem 0;
    }
    .navbar-item {
        padding-left: 1.5rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .hero-feature-box {
        margin-bottom: 1rem;
    }
    .coljuegos-logo {
        max-width: 100%;
        margin-top: 2rem;
    }
    .platform-card .media {
        flex-direction: column;
        text-align: center;
    }
    .platform-card .media-left {
        margin: 0 auto 1rem auto;
    }
    .platform-card .content .buttons {
        justify-content: center;
    }
    .disclaimer-box {
        padding: 1.5rem;
    }
    .disclaimer-box .title {
        font-size: 2rem;
    }
    .footer-logos-container {
        gap: 10px;
    }
    .footer-logo-item img.footer-img {
        max-width: 80px;
    }
    .cookie-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cookie-box .buttons {
        justify-content: center;
        margin-top: 1rem;
    }
}/* Parent container styling */
.policyScopeWrap {
    padding-top: 30px; /* Top padding for the main content area */
    padding-left: 20px; /* Left padding for the main content area */
    padding-right: 20px; /* Right padding for the main content area */
    padding-bottom: 30px; /* Bottom padding for the main content area */
    /* Consider adding max-width and margin: 0 auto; for centering on large screens,
       but not explicitly requested, so omitting for now. */
}

/* Heading styles */
.policyScopeWrap h1 {
    font-size: 2.2rem; /* Moderate H1 font size */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2.5rem; /* Space above H1 */
    margin-bottom: 1.5rem; /* Space below H1 */
    font-weight: bold; /* Ensure H1 is bold */
}

.policyScopeWrap h2 {
    font-size: 1.8rem; /* Moderate H2 font size */
    line-height: 1.3; /* Line height for H2 */
    margin-top: 2rem; /* Space above H2 */
    margin-bottom: 1.2rem; /* Space below H2 */
    font-weight: bold; /* Ensure H2 is bold */
}

.policyScopeWrap h3 {
    font-size: 1.5rem; /* Moderate H3 font size */
    line-height: 1.4; /* Line height for H3 */
    margin-top: 1.8rem; /* Space above H3 */
    margin-bottom: 1rem; /* Space below H3 */
    font-weight: bold; /* Ensure H3 is bold */
}

.policyScopeWrap h4 {
    font-size: 1.2rem; /* Moderate H4 font size */
    line-height: 1.5; /* Line height for H4 */
    margin-top: 1.5rem; /* Space above H4 */
    margin-bottom: 0.8rem; /* Space below H4 */
    font-weight: bold; /* Ensure H4 is bold */
}

.policyScopeWrap h5 {
    font-size: 1.1rem; /* Moderate H5 font size */
    line-height: 1.5; /* Line height for H5 */
    margin-top: 1.2rem; /* Space above H5 */
    margin-bottom: 0.6rem; /* Space below H5 */
    font-weight: bold; /* Ensure H5 is bold */
}

/* Paragraph styles */
.policyScopeWrap p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.7; /* Good readability line height */
    margin-bottom: 1.5rem; /* Space between paragraphs */
}

/* Unordered list styles */
.policyScopeWrap ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1.5rem; /* Space above the list */
    margin-bottom: 1.5rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for bullets */
}

/* List item styles */
.policyScopeWrap li {
    font-size: 1rem; /* Inherit or explicitly set for consistency */
    line-height: 1.7; /* Match paragraph line height */
    margin-bottom: 0.5rem; /* Space between list items */
}

/* Remove bottom margin from the last element to prevent extra space at the bottom */
.policyScopeWrap p:last-child,
.policyScopeWrap ul:last-child,
.policyScopeWrap ol:last-child { /* Added ol for completeness, though not explicitly requested */
    margin-bottom: 0;
}
