body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.site-logo {
    height: 40px;
    width: auto;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00f0ff;
    text-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff, 0 0 15px #00f0ff;
}

.navbar {
    background-color: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 2px solid #00f0ff;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.navbar-nav .nav-link {
    color: #e0e0e0 !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #00f0ff !important;
    text-shadow: 0 0 8px #00f0ff, 0 0 15px #00f0ff;
}

.offcanvas-header {
    border-bottom: 1px solid #00f0ff;
}

.offcanvas-title {
    color: #00f0ff;
    text-shadow: 0 0 5px #00f0ff;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; 
}

.background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.background-slideshow .slide.active {
    opacity: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 5rem; 
    padding-bottom: 5rem;
}

.animated-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff;
}

.animated-headline .word {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    display: inline-block;
}

.hero-section .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #b0e0e6;
}

.scroll-down-arrow {
    color: #00f0ff;
    animation: bounce 2s infinite;
    text-decoration: none;
    transition: opacity 0.5s ease;
    bottom: 2rem;
    padding-top: 1rem; 
}

.scroll-down-arrow:hover {
    color: #00c0d0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.neon-text {
    color: #00f0ff;
    text-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff, 0 0 15px #00f0ff;
    font-weight: 700;
    margin-bottom: 2rem;
}

.neon-text-small {
    color: #00f0ff;
    text-shadow: 0 0 3px #00f0ff, 0 0 7px #00f0ff;
    font-weight: 600;
}

.rounded-pixel-border {
    border: 2px solid;
    border-image-slice: 1;
    border-image-width: 2px;
    border-image-repeat: stretch;
    border-image-source: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='6' height='6'><rect x='0' y='0' width='2' height='2' fill='%2300f0ff'/><rect x='4' y='0' width='2' height='2' fill='%2300f0ff'/><rect x='0' y='4' width='2' height='2' fill='%2300f0ff'/><rect x='4' y='4' width='2' height='2' fill='%2300f0ff'/></svg>");
    padding: 10px;
    background-color: #2a2a4a;
}

.glow-effect {
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3), 0 0 20px rgba(0, 240, 255, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6), 0 0 30px rgba(0, 240, 255, 0.4);
    transform: translateY(-3px);
}

.btn-primary {
    background-color: #00f0ff;
    border-color: #00f0ff;
    color: #1a1a2e;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-primary:hover {
    background-color: #00c0d0;
    border-color: #00c0d0;
    box-shadow: 0 0 15px #00f0ff;
    color: #1a1a2e;
}

.neon-button {
    border: 2px solid #00f0ff;
    box-shadow: 0 0 8px #00f0ff;
    background: linear-gradient(45deg, #00f0ff, #8a2be2);
    color: #fff;
    text-shadow: 0 0 5px #fff;
    transition: all 0.3s ease;
}

.neon-button:hover {
    background: linear-gradient(45deg, #8a2be2, #00f0ff);
    box-shadow: 0 0 15px #00f0ff, 0 0 25px #8a2be2;
    transform: scale(1.05);
}

.content-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) {
.game-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 575px) {
.game-grid {
 grid-template-columns: 1fr;
}
}


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

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

.avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #00f0ff;
    box-shadow: 0 0 8px #00f0ff;
}

.table-dark {
    --bs-table-bg: #1a1a2e;
    --bs-table-striped-bg: #2a2a4a;
    --bs-table-striped-color: #e0e0e0;
    --bs-table-active-bg: #3a3a5a;
    --bs-table-active-color: #e0e0e0;
    --bs-table-hover-bg: #3a3a5a;
    --bs-table-hover-color: #e0e0e0;
    color: #e0e0e0;
    border-color: #00f0ff;
}

.table-bordered {
    border-color: #00f0ff;
}

.table-bordered > :not(caption) > * > * {
    border-color: #00f0ff;
}

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
}

.table th, .table td {
    vertical-align: middle;
    padding: 1rem;
}

.table i.fa-star, .table i.fa-star-half-alt {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.gallery-item {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.fact-card {
    background-color: #2a2a4a;
}

.accordion-item {
    background-color: #2a2a4a;
    border: 1px solid #00f0ff;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: #3a3a5a !important;
    color: #00f0ff !important;
    font-weight: 600;
    border: none;
    text-shadow: 0 0 5px #00f0ff;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #4a4a6a !important;
    color: #00f0ff !important;
    box-shadow: inset 0 -1px 0 rgba(0, 240, 255, 0.5);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 240, 255, 0.25);
}

.accordion-body {
    background-color: #2a2a4a;
    color: #e0e0e0;
    border-top: 1px solid #00f0ff;
}

.contact-form-card {
    background-color: #2a2a4a;
}

.form-control {
    background-color: #1a1a2e;
    border: 1px solid #00f0ff;
    color: #e0e0e0;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background-color: #1a1a2e;
    color: #e0e0e0;
    border-color: #8a2be2;
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

.form-label {
    color: #00f0ff;
    font-weight: 600;
}

footer {
    border-top: 2px solid #00f0ff;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    background-color: #1a1a2e !important;
}

footer a {
    color: #00f0ff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer a:hover {
    color: #8a2be2;
    text-shadow: 0 0 8px #8a2be2;
}

.word-break-all {
    word-break: break-all;
}

@media (max-width: 1199px) {
    .navbar-nav {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-toggler {
        display: block;
    }
    .navbar-collapse {
        display: none;
    }
    .offcanvas-body {
        padding-bottom: 2rem;
    }
}

@media (min-width: 1200px) {
    .navbar-toggler {
        display: none;
    }
    .navbar-collapse {
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .site-name {
        font-size: 1.25rem;
    }
    .animated-headline {
        font-size: 1.25rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.1rem;
    }
    .game-grid {
        grid-template-columns: 1fr;
    }
    .row-cols-md-2 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-md-3 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-lg-4 > * {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .scroll-down-arrow {
        bottom: 1rem;
    }
    .hero-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .content-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-name {
        font-size: 1.8rem;
    }
    .animated-headline {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    .row-cols-lg-4 > * {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 1024px) {
    .site-name {
        font-size: 2.2rem;
    }
    .animated-headline {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.5rem;
    }
}
/* Parent container for content, providing overall spacing */
.complianceVaultNode {
    padding: 1.5rem; /* Top, right, bottom, left padding for the content area */
    /* You might want to add a background-color or border here if needed for visual separation */
}

/* Heading 1 styles */
.complianceVaultNode h1 {
    font-size: 1.8em; /* Slightly larger than body text, but not excessively large */
    font-weight: bold;
    line-height: 1.2; /* Improved readability for titles */
    margin-top: 1.5rem; /* Spacing above the heading */
    margin-bottom: 0.75rem; /* Spacing below the heading */
}

/* Heading 2 styles */
.complianceVaultNode h2 {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Heading 3 styles */
.complianceVaultNode h3 {
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.4;
    margin-top: 1.25rem;
    margin-bottom: 0.6rem;
}

/* Heading 4 styles */
.complianceVaultNode h4 {
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Heading 5 styles */
.complianceVaultNode h5 {
    font-size: 1em; /* Same as base text, but bold for emphasis */
    font-weight: bold;
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Paragraph styles */
.complianceVaultNode p {
    font-size: 1em; /* Inherits base font size, typically 16px */
    line-height: 1.6; /* Improved readability for long text blocks */
    margin-top: 0; /* No top margin for paragraphs directly following other content */
    margin-bottom: 1rem; /* Spacing between paragraphs */
}

/* Unordered list styles */
.complianceVaultNode ul {
    list-style-type: disc; /* Default bullet style */
    padding-left: 1.5rem; /* Indentation for bullet points */
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* List item styles */
.complianceVaultNode li {
    line-height: 1.5;
    margin-bottom: 0.5rem; /* Spacing between individual list items */
}

/* Optional: Remove bottom margin for the last element within the container for cleaner spacing */
.complianceVaultNode p:last-child,
.complianceVaultNode ul:last-child,
.complianceVaultNode ol:last-child {
    margin-bottom: 0;
}
.accordion-button::after {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.form-control::placeholder {
    color: #dbd8d8;
}

.offcanvas {
   height: 100vh !important;
   max-height: 100vh !important;
}
