body {
    font-family: 'Poppins', sans-serif;
    background-color: #1A1A2E;
    color: #E0E0E0;
}

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

.has-background-darker-gray {
    background-color: #131320 !important;
}

.has-background-dark-gray {
    background-color: #2C2C4E !important;
}

.has-background-light-dark-gray {
    background-color: #3A3A5A !important;
}

.has-text-white {
    color: #E0E0E0 !important;
}

.has-text-grey-light {
    color: #B0B0B0 !important;
}

.has-text-primary-purple {
    color: #8A2BE2 !important;
}

.button.is-primary {
    background-color: #8A2BE2;
    border-color: #8A2BE2;
    color: #FFFFFF;
    text-decoration: none;
}

.button.is-primary:hover {
    background-color: #7B1EDD;
    border-color: #7B1EDD;
    color: #FFFFFF;
}

.button.is-danger {
    background-color: #FF0000;
    border-color: #FF0000;
    color: #FFFFFF;
    text-decoration: none;
}

.button.is-danger:hover {
    background-color: #CC0000;
    border-color: #CC0000;
    color: #FFFFFF;
}

.navbar {
    background-color: #1A1A2E;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar-item {
    color: #E0E0E0;
    font-weight: 600;
    text-decoration: none;
}

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

.navbar-burger {
    color: #E0E0E0;
}
.navbar-burger:hover {
      color: #E0E0E0 !important;
}

.navbar-menu {
    background-color: #1A1A2E;
}

.hero.has-background-image {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero.has-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.avatar-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.avatar-group .image {
    border: 2px solid #8A2BE2;
}

.game-card {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.game-card .card-image img {
    border-bottom: 2px solid #8A2BE2;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.game-card .card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.game-card .button {
    margin-top: auto;
}

.game-iframe-modal .modal-background {
    background-color: rgba(0, 0, 0, 0.9);
}

.game-iframe-modal .modal-content {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-iframe-modal iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.game-iframe-modal .modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #E0E0E0;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1001;
}

.game-iframe-modal .modal-close:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.benefit-card {
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.benefit-card .card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.5rem;
}

.benefit-card .title {
    margin-bottom: 0.75rem;
}

.step-item {
    align-items: flex-start;
}

.step-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.accordion-header {
    background-color: #2C2C4E;
    color: #E0E0E0;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.accordion-header .icon {
    transition: transform 0s;
}

.accordion-header.is-active .icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    background-color: #3A3A5A;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.testimonial-card {
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.testimonial-card .card-content {
    padding: 1.5rem;
}

.testimonial-card .media-left .image {
    border: 2px solid #8A2BE2;
}

.input.has-background-light-dark-gray {
    background-color: #3A3A5A;
    border-color: #3A3A5A;
    color: #E0E0E0;
}

.input.has-background-light-dark-gray::placeholder {
    color: #B0B0B0;
}

.input.has-background-light-dark-gray:focus {
    border-color: #8A2BE2;
    box-shadow: 0 0 0 0.125em rgba(138, 43, 226, 0.25);
}

#disclaimer-section {
    background-color: #8A2BE2;
    border-top: 5px solid #FFD700;
    border-bottom: 5px solid #FFD700;
    padding: 3rem 0;
}

#disclaimer-section .title, #disclaimer-section .subtitle {
    color: #FFFFFF !important;
}

#disclaimer-section .bi-exclamation-triangle-fill {
    color: #FFD700;
}

.footer {
    padding: 3rem 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
}

.footer-links a:hover {
    color: #8A2BE2;
}

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

.footer-logo-img {
    max-width: 180px;
    height: auto;
    margin: 0 10px 10px 10px;
    display: block;
    max-height: 60px;
}

.modal.game-iframe-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal.game-iframe-modal.is-active {
    display: flex;
}

.modal.game-iframe-modal .modal-content {
    width: 100%;
    height: 100%;
}

.modal.game-iframe-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal.game-iframe-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.3);
    color: #E0E0E0;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal.game-iframe-modal .modal-close:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.modal.is-active {
    display: flex;
}

.modal-background {
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    max-width: 600px;
    margin: 0 auto;
}

.is-checkradio[type="checkbox"] + label::before, .is-checkradio[type="checkbox"] + label::after {
    border-radius: 4px;
}

.is-checkradio[type="checkbox"] + label::before {
    border-color: #8A2BE2;
}

.is-checkradio[type="checkbox"]:checked + label::before {
    background-color: #8A2BE2;
    border-color: #8A2BE2;
}

.is-checkradio[type="checkbox"]:checked + label::after {
    border-color: #E0E0E0;
}

@media screen and (max-width: 768px) {
    .navbar-menu {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    .navbar-item {
        padding-left: 1.5rem;
    }
    .hero .title {
        font-size: 2.5rem;
    }
    .hero .subtitle {
        font-size: 1.2rem;
    }
    .avatar-group {
        justify-content: center;
    }
    .footer-links, .footer-logos {
        text-align: center;
        justify-content: center;
    }
    .footer-links li {
        display: inline-block;
        margin: 0 10px 10px 10px;
    }
    .footer-logo-img {
        margin: 0 5px 10px 5px;
    }
    .game-iframe-modal .modal-close {
        top: 10px;
        right: 10px;
    }
}
/*
 * New stock styles for .dataTrustFrame and its child elements.
 * These styles are designed to provide a clean, readable baseline.
 */

/* Styles for the main container wrapper */
.dataTrustFrame {
    padding-top: 6.5rem;    /* Top padding for the frame */
    padding-bottom: 2.5rem; /* Bottom padding for the frame */
    padding-left: 1.5rem;   /* Left padding for the frame */
    padding-right: 1.5rem;  /* Right padding for the frame */
    /* You can add background-color, border, max-width here if needed for the frame itself */
}

/* Heading 1 styles within .dataTrustFrame */
.dataTrustFrame h1 {
    font-size: 1.8em;       /* Moderate font size for H1 */
    margin-top: 1.5em;      /* Spacing above H1 */
    margin-bottom: 0.8em;   /* Spacing below H1 */
    font-weight: 700;       /* Bold font weight */
    line-height: 1.2;       /* Line height for readability */
    color: #a7a7a7;            /* Darker text color */
}

/* Heading 2 styles within .dataTrustFrame */
.dataTrustFrame h2 {
    font-size: 1.5em;       /* Moderate font size for H2 */
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    font-weight: 600;
    line-height: 1.3;
    color: #a7a7a7;
}

/* Heading 3 styles within .dataTrustFrame */
.dataTrustFrame h3 {
    font-size: 1.25em;      /* Moderate font size for H3 */
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: 600;
    line-height: 1.4;
    color: #a7a7a7;
}

/* Heading 4 styles within .dataTrustFrame */
.dataTrustFrame h4 {
    font-size: 1.1em;       /* Moderate font size for H4 */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: 500;
    line-height: 1.5;
    color: #a7a7a7;
}

/* Heading 5 styles within .dataTrustFrame */
.dataTrustFrame h5 {
    font-size: 1em;         /* Moderate font size for H5, similar to body text but bold */
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    font-weight: 500;
    line-height: 1.5;
    color: #a7a7a7;
}

/* Paragraph styles within .dataTrustFrame */
.dataTrustFrame p {
    font-size: 1em;         /* Base font size for paragraphs */
    line-height: 1.6;       /* Optimal line height for readability */
    margin-bottom: 1em;     /* Spacing between paragraphs */
    color: #a7a7a7;            /* Slightly lighter text color for body */
}

/* Unordered list styles within .dataTrustFrame */
.dataTrustFrame ul {
    list-style-type: disc;  /* Standard disc bullet points */
    margin-top: 1em;        /* Spacing above the list */
    margin-bottom: 1em;     /* Spacing below the list */
    padding-left: 1.5em;    /* Indentation for bullet points */
    color: #a7a7a7;
}

/* List item styles within .dataTrustFrame */
.dataTrustFrame li {
    margin-bottom: 0.5em;   /* Spacing between list items */
    line-height: 1.5;       /* Line height for list item text */
}
.hero-body {
    padding: 8rem 1.5rem;
}
.subtitle {
    margin-top: unset !important;
}
a.has-text-white:focus, a.has-text-white:hover {
    color: #a4a3a3 !important;
}
#faq-section .button {
    text-align: left;
    white-space: wrap;
    height: fit-content;
}
@media screen and (width < 1024px) {
    .hero-body .control {
        margin-left: auto;
        margin-right: auto;
    }
}