body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #f8f9fa;
    line-height: 1.6;
}

.bg-dark-purple {
    background-color: #4B0082;
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.bg-dark-alt {
    background-color: #2c2c2c;
}

.bg-warning-gradient {
    background: linear-gradient(90deg, #ffc107 0%, #ffcd39 100%);
}

.bg-dark-overlay {
    background-color: rgba(0, 0, 0, 0.85);
}

.text-primary {
    color: #39FF14 !important; /* Neon Green */
}

.text-info {
    color: #0dcaf0 !important;
}

.text-light-50 {
    color: rgba(248, 249, 250, 0.7) !important;
}

.btn-primary {
    background-color: #39FF14;
    border-color: #39FF14;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #2ecb10;
    border-color: #2ecb10;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(57, 255, 20, 0.3);
}

.btn-outline-secondary {
    color: #f8f9fa;
    border-color: #f8f9fa;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.navbar-brand h1 {
    font-weight: 700;
    background: linear-gradient(90deg, #39FF14, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #39FF14 !important;
}

.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Adjust for fixed header */
}

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

.hero-section .container {
    z-index: 1;
}

.hero-section h2 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

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

.carousel-item {
    padding: 80px 0;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.8));
}

.carousel-indicators button {
    background-color: #39FF14;
    opacity: 0.7;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: #0dcaf0;
}

.game-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.game-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.game-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card .game-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-card .game-button {
    width: 100%;
}

.avatar-small {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border: 2px solid #39FF14;
}

.avatar-large {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #39FF14;
}

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    color: #f8f9fa;
    background-color: #4B0082;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #39FF14;
    background-color: #2c2c2c;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

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

.accordion-body {
    background-color: #2c2c2c;
    padding: 1.25rem;
    border-top: 1px solid rgba(248, 249, 250, 0.1);
}

.modal-content {
    border-radius: 15px;
}

#gameModal .modal-body {
    background-color: rgba(0, 0, 0, 0.9);
}

#gameModal .btn-close {
    z-index: 1050;
    position: fixed;
    right: 20px;
    top: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#gameModal .btn-close:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.footer-logo-img {
    height: auto;
    max-width: 120px; /* Adjusted from 100-150px to 120px for 6 logos */
    object-fit: contain;
    filter: none; /* Ensure no grayscale */
}

.footer-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.smooth-scroll {
    transition: all 0.3s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section h2 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .navbar-collapse {
        background-color: #4B0082;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section h2 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .carousel-item {
        padding: 40px 0;
    }
    .footer-logo-img {
        max-width: 100px;
    }

}


/*
 * New stock styles for policyOrbitalShell and its direct children.
 * These styles provide basic typography, spacing, and layout for content.
 */

/* Parent container for policy content, providing overall layout and spacing */
.policyOrbitalShell {
    /* Top margin for overall separation from preceding content */
    margin-top: 3rem;
    /* Horizontal padding to create gutters on the sides, ensuring content isn't flush with edges */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    /* Max width to prevent content from stretching too wide on large screens, improving readability */
    max-width: 800px;
    /* Center the container horizontally on wider screens */
    margin-left: auto;
    margin-right: auto;
    /* Ensure padding is included in the element's total width and height */
    box-sizing: border-box;
}

/* Heading 1 styles: primary section title */
.policyOrbitalShell h1 {
    font-size: 2em; /* Relative to parent font size, providing a clear but not overly large main title */
    margin-top: 2.5rem; /* Space above the heading for clear separation */
    margin-bottom: 1rem; /* Space below the heading before the next content block */
    font-weight: 700; /* Bold font weight for prominence */
    line-height: 1.2; /* Tighter line height for headings */
}

/* Heading 2 styles: major subsection title */
.policyOrbitalShell h2 {
    font-size: 1.75em; /* Slightly smaller than h1 */
    margin-top: 2rem;
    margin-bottom: 0.9rem;
    font-weight: 600; /* Slightly less bold than h1 */
    line-height: 1.3;
}

/* Heading 3 styles: minor subsection title */
.policyOrbitalShell h3 {
    font-size: 1.5em; /* Slightly smaller than h2 */
    margin-top: 1.75rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Heading 4 styles: sub-minor section title */
.policyOrbitalShell h4 {
    font-size: 1.25em; /* Slightly smaller than h3 */
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 500; /* Moderate font weight */
    line-height: 1.5;
}

/* Heading 5 styles: smallest section title, often used for specific points */
.policyOrbitalShell h5 {
    font-size: 1.1em; /* Slightly smaller than h4, still distinct */
    margin-top: 1.25rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Paragraph styles: standard body text */
.policyOrbitalShell p {
    font-size: 1em; /* Default paragraph font size, inherits from parent if not set explicitly */
    margin-top: 0; /* No top margin by default, spacing controlled by margin-bottom */
    margin-bottom: 1em; /* Space below each paragraph for readability */
    line-height: 1.6; /* Optimal line height for comfortable reading */
}

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

/* List item styles: individual items within a list */
.policyOrbitalShell li {
    font-size: 1em; /* Default list item font size */
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.6; /* Line height for readability within list items */
}


#about{
    .card-body{
        color: #fff;
    }
}

#responsible-play{
    .card{
        color: #fff;
    }
}

.navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  filter: invert(1);
}

html, body{
    overflow-x: hidden;
}

.accordion-button::after{
    filter: invert(1);
}