@charset "UTF-8";
/* Google Fonts - Poppins */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0A1F; /* Deep dark blue for overall background */
    color: #E0E0E0; /* Light grey for general text */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A3A; /* Darker track */
}

::-webkit-scrollbar-thumb {
    background: #007bff; /* Blue thumb */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3; /* Darker blue on hover */
}

/* General Styles */
.container {
    max-width: 1200px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #FFFFFF; /* White for headings */
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #66CCFF; /* Lighter blue for section titles */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #66CCFF);
    border-radius: 2px;
}

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

a:hover {
    color: #007bff;
}

.btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 28px;
    text-decoration: none; /* Remove underline from buttons */
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff; /* Standard blue */
    border-color: #007bff;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.btn-success {
    background-color: #28a745; /* Green for success/download */
    border-color: #28a745;
    color: #FFFFFF;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Header */
.main-header {
    background-color: rgba(10, 10, 31, 0.95); /* Slightly transparent dark blue */
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-img {
    height: 40px; /* Adjust as needed */
    filter: brightness(1.2);
}

.logo-img-footer {
    height: 35px; /* Smaller for footer */
    filter: brightness(1.2);
}

.nav-link {
    color: #E0E0E0; /* Light grey for nav links */
    font-weight: 400;
    margin: 0 15px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #66CCFF;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #66CCFF;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('assets/pics/battle-bears-heroes-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
}

.hero-section h1 {
    font-size: 4.5rem;
    letter-spacing: 2px;
    margin-top: -50px; /* Adjust for visual balance */
    background: linear-gradient(45deg, #66CCFF, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 0.5s;
}

.hero-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation-delay: 1s;
}

.hero-section .btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    animation-delay: 1.5s;
}

/* Game Overview */
.game-overview {
    background-color: #1A1A3A; /* Dark blue for content blocks */
    color: #E0E0E0;
}

.game-info-card {
    background-color: #0F0F2F; /* Slightly lighter dark blue for cards */
    border: 1px solid #2A2A4A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-info-card ul li strong {
    color: #66CCFF;
}

/* Features & Highlights */
.features-highlights {
    background-color: #0A0A1F;
}

.feature-card {
    background-color: #0F0F2F;
    border: 1px solid #2A2A4A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    color: #66CCFF;
    margin-bottom: 15px;
}

/* Screenshots & Media */
.screenshots-media {
    background-color: #1A1A3A;
}

.carousel-item img {
    max-height: 600px;
    object-fit: cover;
    width: 100%;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators button {
    background-color: #66CCFF;
}

/* System Requirements */
.system-requirements {
    background-color: #0A0A1F;
}

.req-card {
    background-color: #0F0F2F;
    border: 1px solid #2A2A4A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.req-card h3 {
    color: #66CCFF;
}

.req-card ul li strong {
    color: #E0E0E0;
}

.req-card ul li i {
    color: #007bff;
}

/* Reviews & Ratings */
.reviews-ratings {
    background-color: #1A1A3A;
}

.rating-summary {
    background-color: #0F0F2F;
    border: 1px solid #2A2A4A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rating-summary .star-rating i {
    color: #FFD700; /* Gold for stars */
}

.review-card {
    background-color: #0F0F2F;
    border: 1px solid #2A2A4A;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

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

.review-card .star-rating i {
    color: #FFD700;
}

.review-card .review-text {
    font-style: italic;
    margin-top: 10px;
}

.review-card small {
    color: #B0B0B0; /* Slightly lighter than general text-muted */
}

/* Submit Game Form */
.submit-game-form {
    background-color: #0A0A1F;
}

.submit-game-form form {
    background-color: #0F0F2F;
    border: 1px solid #2A2A4A;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.submit-game-form .form-label {
    color: #E0E0E0;
    font-weight: 600;
}

.submit-game-form .form-control {
    background-color: #1A1A3A;
    border: 1px solid #2A2A4A;
    color: #E0E0E0;
}

.submit-game-form .form-control::placeholder {
    color: #888;
}

.submit-game-form .form-control:focus {
    background-color: #1A1A3A;
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    color: #E0E0E0;
}

.submit-game-form .invalid-feedback {
    color: #ff6b6b;
}

/* Download CTA */
.download-cta {
    background-image: url('assets/pics/battle-bears-heroes-cta-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.download-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 0;
}

.download-cta h2 {
    font-size: 3.5rem;
    animation-delay: 0.5s;
}

.download-cta p {
    font-size: 1.3rem;
    animation-delay: 1s;
}

.download-cta .download-btn {
    padding: 18px 50px;
    font-size: 1.5rem;
    animation-delay: 1.5s;
}

.download-cta .platform-icons i {
    color: #E0E0E0;
    transition: color 0.3s ease, transform 0.3s ease;
    animation-delay: 2s;
}

.download-cta .platform-icons i:hover {
    color: #66CCFF;
    transform: scale(1.1);
}

/* Footer */
.site-footer {
    background-color: #0F0F2F;
    color: #B0B0B0;
    border-top: 1px solid #2A2A4A;
}

.site-footer .footer-link {
    color: #B0B0B0;
    transition: color 0.3s ease;
}

.site-footer .footer-link:hover {
    color: #66CCFF;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050;
    border-top: 1px solid #2A2A4A;
    background-color: rgba(15, 15, 47, 0.95) !important; /* Ensure dark background */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner p {
    color: #E0E0E0;
}

.cookie-banner a {
    color: #66CCFF;
}

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

.cookie-banner .btn-outline-light {
    color: #E0E0E0;
    border-color: #E0E0E0;
}

.cookie-banner .btn-outline-light:hover {
    background-color: #E0E0E0;
    color: #0F0F2F;
}

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    background-color: #0F0F2F !important;
    border: 1px solid #2A2A4A;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

#cookieSettingsModal .modal-header {
    border-bottom: 1px solid #2A2A4A;
}

#cookieSettingsModal .modal-footer {
    border-top: 1px solid #2A2A4A;
}

#cookieSettingsModal .modal-title {
    color: #66CCFF;
}

#cookieSettingsModal .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

#cookieSettingsModal .form-check-label {
    color: #E0E0E0;
    font-weight: 600;
}

#cookieSettingsModal .form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

#cookieSettingsModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Animations */
/* Generic fade-in */
.animate__fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate__fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate__fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Specific slide-up for features */
.animate__slide-up-1, .animate__slide-up-2, .animate__slide-up-3,
.animate__slide-up-4, .animate__slide-up-5, .animate__slide-up-6 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Delay for sequential animations */
.animate__delay-1s { transition-delay: 0.2s; }
.animate__delay-2s { transition-delay: 0.4s; }
.animate__delay-3s { transition-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }

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

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

    .main-nav {
        display: none; /* Hide nav on small screens, could add a toggler */
    }

    .main-header .container {
        justify-content: center;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-banner .btn {
        flex: 1;
    }
}

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

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

    .hero-section .btn {
        font-size: 1rem;
        padding: 10px 25px;
    }

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

    .download-cta p {
        font-size: 1.1rem;
    }

    .download-cta .download-btn {
        font-size: 1.2rem;
        padding: 12px 30px;
    }

    .footer-links li {
        margin: 0 10px !important;
    }
}/* Styles for user-generated content within the .userClauseNet container */
.userClauseNet {
    /* Padding for the top and sides of the content block */
    padding: 60px 30px; 
    /* Max width to keep content readable on large screens, centered */
    max-width: 900px; 
    margin: 0 auto; 
    /* Default text color for this section */
    color: #E0E0E0; 
}

.userClauseNet h1 {
    /* Heading 1 styles */
    font-size: 2.2rem; /* Moderate size for main headings within content */
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 25px;
    color: #FFFFFF; /* White for headings */
    line-height: 1.2;
}

.userClauseNet h2 {
    /* Heading 2 styles */
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.3;
}

.userClauseNet h3 {
    /* Heading 3 styles */
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 18px;
    color: #FFFFFF;
    line-height: 1.4;
}

.userClauseNet h4 {
    /* Heading 4 styles */
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #FFFFFF;
    line-height: 1.5;
}

.userClauseNet h5 {
    /* Heading 5 styles */
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #FFFFFF;
    line-height: 1.5;
}

.userClauseNet p {
    /* Paragraph styles */
    font-size: 1.05rem; /* Slightly larger than default for readability */
    margin-bottom: 18px; /* Space between paragraphs */
    line-height: 1.7; /* Good line height for text blocks */
    color: #E0E0E0; /* Light grey for paragraph text */
}

.userClauseNet ul {
    /* Unordered list styles */
    list-style: disc; /* Default disc bullets */
    padding-left: 25px; /* Indent list items */
    margin-top: 15px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.userClauseNet ol {
    /* Ordered list styles */
    list-style: decimal; /* Default decimal numbers */
    padding-left: 25px; /* Indent list items */
    margin-top: 15px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.userClauseNet li {
    /* List item styles */
    font-size: 1.05rem;
    margin-bottom: 8px; /* Space between list items */
    line-height: 1.6;
    color: #E0E0E0;
}

/* Responsive adjustments for userClauseNet content */
@media (max-width: 768px) {
    .userClauseNet {
        padding: 40px 20px;
    }
    .userClauseNet h1 {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .userClauseNet h2 {
        font-size: 1.5rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    .userClauseNet h3 {
        font-size: 1.3rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }
    .userClauseNet p,
    .userClauseNet li {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .userClauseNet {
        padding: 30px 15px;
    }
    .userClauseNet h1 {
        font-size: 1.6rem;
    }
    .userClauseNet h2 {
        font-size: 1.3rem;
    }
    .userClauseNet h3 {
        font-size: 1.1rem;
    }
    .userClauseNet p,
    .userClauseNet li {
        font-size: 0.95rem;
    }
}
.logo-link {
    font-weight: 600;
    font-size: 28px;
}
.nav-list {
    list-style: none;
}
.review-text + .text-muted {
    color: #007bff !important;
}
@media screen and (width > 767px) {
#hero-section.thanks {
    min-height: 50vh !important;
}
}
main {
    overflow: hidden;
}