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

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

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

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

.site-name {
    color: #ffd700;
}

.navbar {
    background-color: #1a0a2e;
    border-bottom: 1px solid #331a4d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
}

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

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

.navbar-burger {
    color: #ffd700;
}

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

@media screen and (max-width: 1023px) {
    .navbar-menu {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    .site-name {
        font-size: 1.5rem !important;
    }
}

.hero.is-primary {
    background-color: #1a0a2e;
}

.hero .title,
.hero .subtitle {
    color: #fff;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.hero-features li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: #e0e0e0;
}

.hero-features li .fas {
    color: #ffd700;
}

.game-card {
    background-color: #2e1a4d;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffd700;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card .title {
    color: #ffd700;
}

.game-card .subtitle {
    color: #e0e0e0;
}

.play-now-button {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #1a0a2e;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.play-now-button:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    color: #1a0a2e;
}

.section {
    padding: 3rem 1.5rem;
}

.has-background-light {
    background-color: #f5f5f5;
    color: #363636;
}

.has-background-dark {
    background-color: #1a0a2e;
    color: #e0e0e0;
}

.has-background-primary-light {
    background-color: #2e1a4d;
    color: #e0e0e0;
}

.has-background-primary-dark {
    background-color: #331a4d;
    color: #e0e0e0;
}

.has-text-dark-grey {
    color: #4a4a4a;
}

.shadow-image {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 300px;
}

.about-features {
    list-style: none;
    padding-left: 0;
}

.about-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.about-features li .fas {
    min-width: 24px;
}

.play-game-button {
    margin-top: 2rem;
    text-decoration: none;
}

.game-details {
    margin-top: 2rem;
    background-color: #2e1a4d;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid #ffd700;
}

.game-features-list {
    list-style: none;
    padding-left: 0;
}

.game-features-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.game-features-list li .fas {
    min-width: 24px;
}

.why-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border-bottom: 4px solid #ffd700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.why-card .title {
    color: #ffd700;
}

.why-card .subtitle {
    color: #666;
}

.testimonial-card {
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #ffd700;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.is-rounded-avatar {
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffd700;
}

.is-rounded-avatar img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.testimonial-card small {
    color: #aaa;
}

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-left: 5px solid #2e1a4d;
}

.accordion-item:hover {
    background-color: #f0f0f0;
}

.accordion-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    color: #363636;
}

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

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

.accordion-content {
    display: none;
    background-color: #fdfdfd;
    border-top: 1px solid #eee;
    color: #4a4a4a;
}

.accordion-item.is-active .accordion-content {
    display: block;
}

.contact-section {
    background-color: #2e1a4d;
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-section .dark-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.contact-section .box {
    background-color: rgba(46, 26, 77, 0.9) !important;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #ffd700;
}

.contact-section .label {
    color: #ffd700;
}

.contact-section .input,
.contact-section .textarea {
    background-color: #331a4d;
    border-color: #4d2e77;
    color: #e0e0e0;
}

.contact-section .input::placeholder,
.contact-section .textarea::placeholder {
    color: #a0a0a0;
}

.contact-section .input:focus,
.contact-section .textarea:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 0.125em rgba(255, 215, 0, 0.25);
}

.disclaimer-section {
    background-color: #1a0a2e;
    border-top: 5px solid #ffd700;
    border-bottom: 5px solid #ffd700;
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
}

.disclaimer-box {
    background-color: #331a4d;
    border: 2px solid #ffd700;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.disclaimer-box .title {
    color: #ffd700;
}

.disclaimer-box .icon {
    color: #ffd700;
}

.footer {
    background-color: #0d0517;
    color: #e0e0e0;
    padding: 3rem 1.5rem;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-link .site-name {
    color: #ffd700;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-org-logos .footer-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) saturate(1.2);
    max-height: 100px;
}

.footer-org-logos .footer-logo.no-link {
    cursor: default;
}

.sticky-play-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none; /* Hidden by default, shown via JS */
}

.sticky-play-button .button {
    border-radius: 50px;
    padding-left: 25px;
    padding-right: 25px;
    height: 60px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Modal Styles */
.modal.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

#age-verification-modal .modal-content .box {
    border: 2px solid #ffd700;
    border-radius: 10px;
    max-width: 500px;
    margin: auto;
}

#age-verification-modal .buttons .button {
    min-width: 120px;
}

#game-modal .modal-content.is-game-modal {
    width: 90vw;
    height: 90vh;
    max-width: 1200px;
    max-height: 800px;
    padding: 0;
    overflow: hidden;
}

#game-modal .modal-content.is-game-modal .box {
    height: 100%;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

#game-iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.modal-close {
    background-color: #ffd700;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: #e6c200;
}

/* Cookie Consent Modal Styles */
#cookie-consent-modal .modal-content .box {
    border: 2px solid #ffd700;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
}

#cookie-consent-modal .field {
    margin-bottom: 1rem;
}

.switch[type="checkbox"] + label {
    padding-left: 3.5rem;
    padding-top: 0.2rem;
}

.switch[type="checkbox"] + label::before {
    background: #4d2e77;
    border: 2px solid #663399;
}

.switch[type="checkbox"] + label::after {
    background: #e0e0e0;
}

.switch[type="checkbox"]:checked + label::before {
    background: #ffd700;
}

.switch[type="checkbox"]:checked + label::after {
    background: #1a0a2e;
}

.switch[type="checkbox"]:disabled + label {
    opacity: 0.6;
    cursor: not-allowed;
}

@media screen and (max-width: 768px) {
    .hero-body .title {
        font-size: 2rem;
    }
    .hero-body .subtitle {
        font-size: 1.2rem;
    }
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    .game-card {
        width: 90%;
        margin: 0 auto;
    }
    .shadow-image {
        height: 200px;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-org-logos {
        flex-direction: column;
    }
    .footer-org-logos .footer-logo {
        max-width: 100px;
    }
    #game-modal .modal-content.is-game-modal {
        width: 95vw;
        height: 85vh;
    }
    .title.is-2 {
    font-size: 1.5rem;
}
}.policyOrbitalShell {
    /* Basic container styling for the policy content */
    padding-top: 40px; /* Top padding for the content */
    padding-left: 20px; /* Left padding for the content */
    padding-right: 20px; /* Right padding for the content */
    max-width: 800px; /* Limits content width for better readability on large screens */
    margin: 0 auto; /* Centers the container horizontally */
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif; /* A stack of common sans-serif fonts */
    font-size: 16px; /* Base font size for the policy text */
    line-height: 1.6; /* Improved readability for long texts */
    color: #efeeee; /* Dark grey for better contrast and less harsh than pure black */
}

.policyOrbitalShell h1 {
    /* Styles for main headings (H1) */
    font-size: 2.2em; /* Not too large, relative to base font size (e.g., 35px if base is 16px) */
    margin-top: 1.5em; /* Top margin for spacing above the heading */
    margin-bottom: 0.8em; /* Bottom margin for spacing below the heading */
    line-height: 1.2; /* Tighter line height for headings */
    font-weight: 700; /* Bold font weight */
    color: #efeeee; /* Slightly darker color for headings */
}

.policyOrbitalShell h2 {
    /* Styles for secondary headings (H2) */
    font-size: 1.8em; /* Relative font size (e.g., 29px if base is 16px) */
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.3;
    font-weight: 600; /* Medium-bold font weight */
    color: #efeeee;
}

.policyOrbitalShell h3 {
    /* Styles for tertiary headings (H3) */
    font-size: 1.5em; /* Relative font size (e.g., 24px if base is 16px) */
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    line-height: 1.4;
    font-weight: 600;
    color: #efeeee;
}

.policyOrbitalShell h4 {
    /* Styles for quaternary headings (H4) */
    font-size: 1.2em; /* Relative font size (e.g., 19px if base is 16px) */
    margin-top: 1em;
    margin-bottom: 0.5em;
    line-height: 1.5;
    font-weight: 500; /* Normal-bold font weight */
    color: #efeeee;
}

.policyOrbitalShell h5 {
    /* Styles for quinary headings (H5) */
    font-size: 1em; /* Same as base font size, but bold (e.g., 16px if base is 16px) */
    margin-top: 0.8em;
    margin-bottom: 0.4em;
    line-height: 1.5;
    font-weight: 500;
    color: #efeeee;
}

.policyOrbitalShell p {
    /* Styles for paragraphs */
    margin-bottom: 1em; /* Spacing between paragraphs */
    line-height: inherit; /* Inherits line-height from parent (.policyOrbitalShell) */
}

.policyOrbitalShell ul {
    /* Styles for unordered lists */
    margin-top: 1em; /* Top margin for the list */
    margin-bottom: 1em; /* Bottom margin for the list */
    padding-left: 25px; /* Indentation for list items to make space for bullets */
    list-style-type: disc; /* Default bullet style */
}

.policyOrbitalShell li {
    /* Styles for list items */
    margin-bottom: 0.5em; /* Spacing between individual list items */
    line-height: inherit; /* Inherits line-height from parent (.policyOrbitalShell) */
}
@media screen and (min-width: 769px), print {
    .hero-body {
        padding: 10rem 3rem;
    }
}
.hero-body .card-content p {
    color: #e9e8e8 !important;
}
#contact .container {
    z-index: 1;
}
.footer-logo-link img {
    height: 50px;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
strong {
    color: #efeeee;
}
iframe {
    height: 100vh;
    width: 100%;
}
.hero {
    padding: 100px 0;
}
.button.is-primary {
    text-wrap-mode: wrap;
    height: unset;
}