/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #F0F0F0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 700;
}

a {
    color: #E94560;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF6B81;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #E94560;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #FFFFFF;
}

.lead-text {
    font-size: 1.15rem;
    color: #D0D0D0;
}

.custom-btn-red {
    background-color: #E94560;
    border-color: #E94560;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.custom-btn-red:hover {
    background-color: #FF6B81;
    border-color: #FF6B81;
    transform: translateY(-3px);
    color: #FFFFFF;
}

.custom-btn-green {
    background-color: #28a745;
    border-color: #28a745;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.custom-btn-green:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-3px);
    color: #FFFFFF;
}

/* Header */
.header {
    background-color: #1A1A1A;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 0.75rem 0;
    z-index: 1030;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.75rem;
    color: #FFFFFF !important;
}

.navbar-brand .logo-img {
    height: 40px;
    margin-right: 10px;
}

.navbar-brand .brand-name {
    color: #FFFFFF;
}

.navbar-nav .nav-link {
    color: #F0F0F0 !important;
    font-weight: 600;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #E94560 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #E94560;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.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%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-color: #000;
    overflow: hidden;
    position: relative;
    padding-top: 70px; /* Adjust for fixed header */
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

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

.hero-section h1 {
    font-size: 4.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #E94560, #FF6B81, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Game Details Section */
.game-details-section {
    background-color: #1A1A1A;
    color: #F0F0F0;
}

.game-promo-image {
    border: 3px solid #E94560;
    transition: transform 0.3s ease;
}

.game-promo-image:hover {
    transform: scale(1.02);
}

.features-list .list-group-item {
    background-color: transparent;
    border: none;
    padding-left: 0;
    color: #F0F0F0;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list .list-group-item:last-child {
    border-bottom: none;
}

.custom-red-icon {
    color: #E94560;
    font-size: 1.25rem;
    vertical-align: middle;
}

.screenshot-gallery .gallery-item {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 2px solid rgba(233, 69, 96, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.screenshot-gallery .gallery-item:hover {
    transform: scale(1.05);
    border-color: #E94560;
}

/* Download CTA Section */
.download-cta-section {
    background-image: url('graphics/media/download-cta-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.download-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.download-cta-section .container {
    position: relative;
    z-index: 1;
}

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

.download-cta-section .lead {
    font-size: 1.3rem;
    color: #D0D0D0;
}

.developer-info {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #CCCCCC;
}

/* Featured Games Slider */
.featured-games-section {
    background-color: #121212;
    padding-bottom: 80px;
}



.game-card {
    background-color: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.game-card-img {
    width: 100%;
    height: 200px; /* Fixed height for consistent look */
    min-height: 300px;
    object-fit: cover;
    border-bottom: 2px solid #E94560;
}

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

.game-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.game-card-genre {
    font-size: 0.9rem;
    color: #E94560;
    font-weight: 600;
}

.swiper-button-next, .swiper-button-prev {
    color: #E94560 !important;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: #E94560;
    color: #FFFFFF !important;
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.swiper-pagination {
    bottom: -10px;
}

.swiper-pagination-bullet-active {
    background-color: #E94560 !important;
}

/* Reviews Section */
.reviews-section {
    background-color: #1A1A1A;
}

.review-card {
    background-color: #1A1A1A;
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 10px;
    color: #F0F0F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #E94560;
}

.review-card .card-title {
    font-size: 1.2rem;
    color: #FFFFFF;
}

.review-card .text-date {
    color: #A0A0A0;
    font-size: 0.9rem;
}

.star-rating i {
    color: #FFD700; /* Gold color for stars */
    margin-right: 2px;
}

/* Submit Game Form */
.submit-game-section {
    background-color: #121212;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.form-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.form-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.form-container {
    background-color: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(233, 69, 96, 0.4);
    backdrop-filter: blur(5px);
}

.form-label {
    color: #F0F0F0;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: #2A2A2A;
    border: 1px solid #444444;
    color: #F0F0F0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.form-control:focus {
    background-color: #3A3A3A;
    border-color: #E94560;
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
    color: #FFFFFF;
}

.form-control::placeholder {
    color: #A0A0A0;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #D0D0D0;
    padding: 3rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 1rem;
}

.logo-img-footer {
    height: 35px;
    margin-right: 8px;
}

.brand-name-footer {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-links li {
    display: inline-block;
    margin: 0 10px;
}

.footer-links a {
    color: #D0D0D0;
    transition: color 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1A1A1A;
    color: #F0F0F0;
    padding: 1rem 0;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default, shown by JS */
}

.cookie-banner .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner p {
    margin-bottom: 0;
    flex-grow: 1;
    padding-right: 1rem;
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-banner .btn-primary {
    background-color: #E94560;
    border-color: #E94560;
}

.cookie-banner .btn-primary:hover {
    background-color: #FF6B81;
    border-color: #FF6B81;
}

.cookie-banner .btn-secondary {
    background-color: #444444;
    border-color: #444444;
}

.cookie-banner .btn-secondary:hover {
    background-color: #555555;
    border-color: #555555;
}

.cookie-policy-link {
    color: #E94560;
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: #FF6B81;
}

/* Toast notifications */
.toast-container {
    z-index: 1055;
}

.toast {
    background-color: #1A1A1A;
    color: #F0F0F0;
    border: 1px solid rgba(233, 69, 96, 0.4);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

.toast-header {
    background-color: #1A1A1A;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
}

.toast-header .btn-close {
    filter: invert(1);
}

/* Animations */
@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }

    .navbar-nav .nav-link::after {
        left: 0;
        transform: translateX(0);
        width: 100%;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .download-cta-section h2 {
        font-size: 2.5rem;
    }

    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner p {
        padding-right: 0;
    }

    .cookie-banner .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .game-card-img {
        object-fit: contain;
        height: 300px;
    }

    .screenshot-gallery .gallery-item {
        height: 150px;
    }

    .download-cta-section h2 {
        font-size: 2rem;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none !important; /* Hide navigation buttons on small screens */
    }
}
@media (max-width: 640px)  {
    .game-card-img {
        height: 400px;
    }
}
/* Styles for a content block within the page */
.complianceVaultNode {
    padding-top: 40px; /* Top padding for the content block */
    padding-bottom: 40px; /* Bottom padding for the content block */
    padding-left: 20px; /* Left padding for the content block */
    padding-right: 20px; /* Right padding for the content block */
    /* You might want to add a background-color here if it's a distinct section */
    /* background-color: #1A1A1A; */
    /* Or adjust max-width and margin for centering */
    /* max-width: 960px; */
    /* margin: 0 auto; */
}

/* Heading styles for content within .complianceVaultNode */
.complianceVaultNode h1 {
    font-size: 2.2rem; /* Moderate font size for main content headings */
    font-weight: 700; /* Bold weight for emphasis */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2.5rem; /* Space above h1 */
    margin-bottom: 1.2rem; /* Space below h1 */
    color: #FFFFFF; /* White color for headings */
}

.complianceVaultNode h2 {
    font-size: 1.8rem; /* Moderate font size for sub-headings */
    font-weight: 600; /* Semi-bold weight */
    line-height: 1.3;
    margin-top: 2rem; /* Space above h2 */
    margin-bottom: 1rem; /* Space below h2 */
    color: #FFFFFF;
}

.complianceVaultNode h3 {
    font-size: 1.5rem; /* Smaller sub-heading */
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.8rem; /* Space above h3 */
    margin-bottom: 0.8rem; /* Space below h3 */
    color: #FFFFFF;
}

.complianceVaultNode h4 {
    font-size: 1.2rem; /* Even smaller sub-heading */
    font-weight: 500; /* Medium weight */
    line-height: 1.5;
    margin-top: 1.5rem; /* Space above h4 */
    margin-bottom: 0.6rem; /* Space below h4 */
    color: #F0F0F0; /* Slightly off-white for less prominence */
}

.complianceVaultNode h5 {
    font-size: 1rem; /* Smallest heading, similar to paragraph but bold */
    font-weight: 500;
    line-height: 1.6;
    margin-top: 1.2rem; /* Space above h5 */
    margin-bottom: 0.5rem; /* Space below h5 */
    color: #F0F0F0;
}

/* Paragraph styles for content within .complianceVaultNode */
.complianceVaultNode p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Good readability line height */
    margin-bottom: 1rem; /* Space below paragraphs */
    color: #D0D0D0; /* Slightly muted text color */
}

/* Unordered list styles for content within .complianceVaultNode */
.complianceVaultNode ul {
    list-style: disc; /* Default disc bullet points */
    padding-left: 25px; /* Indentation for list items */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    color: #D0D0D0;
}

/* List item styles for content within .complianceVaultNode */
.complianceVaultNode ul li {
    font-size: 1rem; /* Standard font size for list items */
    line-height: 1.6; /* Line height for readability */
    margin-bottom: 0.5rem; /* Space between list items */
    color: #D0D0D0;
}

/* Optional: Add a subtle bullet color */
.complianceVaultNode ul li::marker {
    color: #E94560; /* Highlight bullet points */
}

/* Responsive adjustments for .complianceVaultNode specific elements */
@media (max-width: 767.98px) {
    .complianceVaultNode {
        padding-left: 15px;
        padding-right: 15px;
    }

    .complianceVaultNode h1 {
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .complianceVaultNode h2 {
        font-size: 1.5rem;
        margin-top: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .complianceVaultNode h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.7rem;
    }

    .complianceVaultNode h4 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .complianceVaultNode h5,
    .complianceVaultNode p,
    .complianceVaultNode ul li {
        font-size: 0.95rem;
    }

    .swiper-container {
        padding: 0px;
    }
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.featured-swiper {
    padding: 30px 0;
}

.swiper-container {
    overflow: hidden;
}

.disabled_swiper_button {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -5px;
}

.thanks-page {
    #hero {
        min-height: fit-content;
        height: auto;
        padding: 100px;
    }
}