:root {
    --neon-red: #ff003c;
    --neon-blue: #00f3ff;
    --neon-green: #0aff0a;
    --bg-dark: #050505;
    --card-bg: #111;
    --text-main: #fff;
    --font-heading: 'Orbitron', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-mono);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    transition: background 0.3s;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid #222;
}

.logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-links a.nav-highlight {
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 5px 15px;
    border-radius: 4px;
    background: rgba(10, 255, 10, 0.1);
}

.nav-links a.nav-highlight:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px var(--neon-green);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: absolute;
    bottom: 8%;
    /* Raised slightly */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    padding: 30px 20px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
}

.hero-badge {
    color: var(--neon-blue);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.4;
    /* Condensed line spacing */
    margin-bottom: 5px;
    text-transform: uppercase;
    display: inline-block;
    text-shadow: 0 0 15px var(--neon-blue);
}

.glitch-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0px var(--neon-red), -2px -2px 0px var(--neon-blue);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--neon-red);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-shadow: 0 0 8px rgba(255, 0, 60, 0.4);
    text-transform: uppercase;
}

.hero-scroll-btn {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #000;
    /* Black text */
    background: var(--neon-red);
    /* Solid Red BG */
    border: none;
    padding: 10px 25px;
    /* Similar solid padding */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

.hero-scroll-btn:hover {
    background: var(--neon-red);
    color: #000;
    box-shadow: 0 0 20px var(--neon-red);
    transform: translateY(-2px);
}

@keyframes glitch-anim {
    0% {
        text-shadow: 2px 2px 0px var(--neon-red), -2px -2px 0px var(--neon-blue);
        transform: skew(0deg);
    }

    2% {
        text-shadow: -2px -2px 0px var(--neon-red), 2px 2px 0px var(--neon-blue);
        transform: skew(-2deg);
    }

    4% {
        text-shadow: 2px -2px 0px var(--neon-red), -2px 2px 0px var(--neon-blue);
        transform: skew(2deg);
    }

    6% {
        text-shadow: 2px 2px 0px var(--neon-red), -2px -2px 0px var(--neon-blue);
        transform: skew(0deg);
    }

    100% {
        text-shadow: 2px 2px 0px var(--neon-red), -2px -2px 0px var(--neon-blue);
    }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Mission Section - List Layout (Restored & Military Style) */
.mission-section {
    background: #080808;
    border-top: 1px solid #222;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-image-container {
    position: relative;
    border-radius: 4px;
    border: 1px solid #333;
    overflow: hidden;
}

.mission-image {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%) grayscale(20%) contrast(110%);
}

.mission-text-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-subtitle {
    font-family: 'Share Tech Mono', monospace;
    color: var(--neon-blue);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.mission-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mission-feature-icon-col {
    flex-shrink: 0;
    width: 24px;
    padding-top: 3px;
    display: flex;
    justify-content: center;
}

.mission-feature-text-col {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mission-feature h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.mission-feature p {
    font-family: 'Share Tech Mono', monospace;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
}

.text-hazard {
    color: var(--neon-red);
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 0, 60, 0.4);
}

.feature-icon-img {
    width: 24px;
    height: auto;
}

.mission-closing {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.mission-closing .highlight {
    color: var(--neon-red);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Mobile: Compact Single Page View with Background */
@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    /* Hide the standard image container as we use background now */
    .mission-image-container {
        display: none;
    }

    .mission-section {
        padding: 40px 0;
        min-height: 100vh;
        /* Full screen height */
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    /* Background Image using Pseudo-element for transparency */
    .mission-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('public/assets/images/mask_background.jpg');
        background-size: cover;
        /* Fill the entire area to avoid gaps */
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.2;
        /* Visible but subtle */
        z-index: 0;
        pointer-events: none;
    }

    .mission-section .container {
        position: relative;
        z-index: 1;
    }

    /* Hide Icons */
    .mission-feature-icon-col {
        display: none;
    }

    /* Ultra Compact Typography & Centering */
    .mission-text-content {
        text-align: center;
        padding: 0 10px;
    }

    .mission-title {
        font-size: 1.8rem;
        margin-bottom: 5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    .mission-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
        /* Reduced from 25px */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    .mission-features {
        gap: 10px;
        /* Reduced from 20px */
        margin-bottom: 10px;
        /* Reduced margin after features */
    }

    .mission-feature {
        gap: 0;
        text-align: center;
        flex-direction: column;
        align-items: center;
        margin-bottom: 5px;
    }

    .mission-feature h3 {
        font-size: 1.1rem;
        margin-bottom: 2px;
        /* Tighter title */
        color: var(--neon-green);
        width: 100%;
    }

    .mission-feature p {
        font-size: 0.9rem;
        line-height: 1.3;
        /* Tighter line height */
        color: #ddd;
        max-width: 95%;
        /* Wider text block to save vertical lines */
        margin: 0 auto;
    }

    .mission-closing {
        margin-top: 5px;
        /* Significant reduction */
        padding-top: 5px;
        border-top: none;
        /* Remove border to save space/clutter */
    }

    .mission-closing .highlight {
        font-size: 0.95rem;
        display: block;
        margin-top: 5px;
    }
}

/* Col 1: Brand */
.brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #777;
    max-width: 300px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon img {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-icon:hover img {
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 5px var(--neon-red));
}

/* Cols 2 & 3: Nav & Legal */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-list a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav-list a:hover {
    color: var(--neon-red);
    padding-left: 5px;
    /* Subtle movement */
}

/* Bottom Bar */
.footer-bottom-bar {
    background: #050505;
    padding: 20px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tnsc-text {
    font-size: 0.8rem;
    color: #555;
    font-family: var(--font-body);
}

.tnsc-text i {
    color: var(--neon-red);
    font-style: normal;
    font-weight: bold;
}

.tnsc-link {
    color: var(--neon-red);
    font-weight: bold;
    text-decoration: none;
    transition: text-shadow 0.3s;
}

.tnsc-link:hover {
    text-shadow: 0 0 8px rgba(255, 0, 60, 0.4);
}

.stay-secure {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .brand-col {
        align-items: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}



/* Mobile Footer */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}


/* --- New Store Layout Styles (One Screen Concept) --- */
.store-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Ensure title doesn't overflow width */
}

/* Reduce Arsenal Title Size specifically */
.store-section .section-title {
    font-size: 1.5rem;
    /* Smaller than global 2rem */
    margin-bottom: 30px;
}

.store-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.ghost-block {
    grid-column: 1 / 2;
    display: flex;
    justify-content: center;
}

.bandido-block {
    grid-column: 2 / 3;
    display: flex;
    justify-content: center;
}

.comparison-block {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.buttons-block {
    grid-column: 1 / -1;
    padding: 0;
    display: flex;
    justify-content: center;
}

/* Image controls for tight layout */
.full-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 35vh;
    /* Fit within screen height */
    object-fit: contain;
}

.buttons-mapper-container {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.buttons-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 15vh;
    /* Compact buttons */
    object-fit: contain;
    margin: 0 auto;
}

.map-area {
    position: absolute;
    top: 5%;
    height: 90%;
    z-index: 10;
    cursor: pointer;
    background: rgba(255, 255, 255, 0);
    transition: background 0.2s;
    border-radius: 8px;
}

.map-area:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.area-how {
    left: 0;
    width: 50%;
}

.area-tech {
    left: 50%;
    width: 50%;
}

/* --- Carousel Section Styles --- */
.carousel-section {
    background-color: #000;
    padding: 80px 0 0 0;
    /* Added spacing from previous block */
    position: relative;
    border-top: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
    color: var(--neon-red);
    border: 1px solid var(--neon-red);
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border-radius: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
}

.carousel-btn:hover {
    background: var(--neon-red);
    color: #000;
    box-shadow: 0 0 20px var(--neon-red);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 5px;
    /* Flush to side */
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
    transform: rotate(45deg);
}

.indicator.active {
    background: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
}

.indicator:hover {
    border-color: var(--neon-red);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        background: rgba(5, 5, 5, 0.9);
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid var(--neon-red);
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
    }

    .glitch-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .mobile-cta {
        .mission-feature .feature-icon-img {
            width: 36px;
            height: auto;
            margin: 0;
        }

        .mission-feature p {
            font-size: 1rem;
            /* More readable body text */
            line-height: 1.5;
            max-width: 90%;
            /* Widen text block to reduce short lines */
            margin: 0 auto;
            text-align: center;
            color: #ddd;
        }

        .mission-closing {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .mission-closing p {
            font-size: 0.85rem;
            margin-bottom: 3px;
        }

        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .full-img,
    .buttons-img {
        max-height: none;
        /* Reset height limit for scroll */
    }

    .buttons-mapper-container {
        max-width: 95%;
    }

    /* Carousel Mobile Redesign */
    .carousel-btn {
        padding: 4px 8px;
        /* Smaller padding */
        font-size: 1rem;
        /* Smaller icon */
        bottom: 5px;
        /* Lower position */
    }

    .prev-btn {
        left: 5px;
        /* Closer to edge */
    }

    .next-btn {
        right: 5px;
        /* Closer to edge */
    }
}

/* --- FAQ Section --- */
.faq-section {
    background-color: #000;
    padding: 60px 20px;
    border-top: 1px solid #111;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

.section-title .highlight {
    color: var(--neon-red);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid #222;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.1);
}

.faq-item[open] {
    border-color: var(--neon-red);
    background: rgba(255, 0, 60, 0.05);
}

.faq-question {
    list-style: none;
    padding: 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: color 0.3s;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--neon-red);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--neon-red);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: #fff;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5px;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 15px;
    }
}

.faq-label {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-qm-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255, 0, 60, 0.5));
}

/* --- New Layout Structures --- */

/* Separator Line */
.section-separator {
    width: 100%;
    height: 4px;
    /* Thin line */
    background: url('public/assets/images/separator_line.jpg') center center no-repeat;
    background-size: cover;
    opacity: 0.8;
    margin: 0;
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
}

/* Unified Section (Carousel + FAQ) */
.unified-info-section {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.unified-info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

/* Adjust Carousel for Unified Layout */
.unified-carousel-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #000;
    /* Match background */
}

.unified-carousel-wrapper .carousel-container {
    max-width: 100%;
    width: 100%;
    height: auto;
    /* Remove fixed aspect ratio to allow full image height if needed, or use contain */
}

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* CRITICAL: Ensure full image is visible, no cropping */
    max-height: 500px;
    /* Prevent it from getting too tall on desktop */
}

/* Adjust FAQ for Unified Layout */
.unified-faq-wrapper {
    width: 100%;
}

.faq-inner-container {
    max-width: 100%;
    margin: 0;
}

/* Compact text for unified view */
.small-title {
    font-size: 0.9rem !important;
    /* Very small reference title */
    color: #666;
    /* Subtle */
    margin-bottom: 15px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    display: inline-block;
}

.faq-question {
    padding: 10px 0;
    /* Minimal padding */
    font-size: 0.8rem;
    /* Small text */
    border-bottom: 1px solid #222;
    /* Subtle divider */
    background: transparent !important;
    /* Remove background box */
}

.faq-question:hover {
    color: var(--neon-red);
}

.faq-item {
    background: transparent !important;
    /* Remove background box */
    border: none !important;
    /* Remove border */
    border-radius: 0;
}

.faq-qm-icon {
    height: 18px;
    /* Tiny icon */
    opacity: 0.7;
}

.faq-answer {
    font-size: 0.8rem;
    padding: 5px 0 15px 35px;
    /* Indent answer */
    color: #aaa;
    border: none;
}



/* Mobile Responsive for Unified Layout and General Fixes */
@media (max-width: 900px) {

    /* Global Section Title resizing */
    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 25px;
        padding: 0 15px;
        line-height: 1.2;
        word-wrap: break-word;
    }

    /* Specific adjust for 'Arsenal Disponible' */
    .store-section {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    .store-section .section-title {
        font-size: 1.2rem !important;
        /* Smaller mobile title */
        margin-bottom: 20px;
    }

    .store-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        /* Side padding for images */
    }

    .full-width-block {
        width: 100%;
        height: auto;
    }

    .full-img {
        width: 100%;
        height: auto;
        /* Maintain aspect ratio */
        object-fit: contain;
        /* Ensure full image is visible */
        max-height: 400px;
        /* Cap height just in case */
        border-radius: 4px;
    }

    /* Unified Section Fixes */
    .unified-info-section {
        height: auto;
        min-height: auto;
        padding: 30px 0;
    }

    .unified-info-layout {
        display: flex;
        /* Switch to flex column to ensure stacking order */
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }

    /* Ensure carousel doesn't overflow */
    .unified-carousel-wrapper {
        width: 100%;
        margin-bottom: 10px;
    }

    .carousel-container {
        width: 100%;
    }

    /* FAQ Mobile Adjustment */
    .faq-inner-container {
        width: 100%;
        padding: 0;
    }

    .small-title {
        text-align: center;
        font-size: 1rem !important;
        /* Tiny reference size */
        margin-top: 10px;
    }

    .faq-qm-icon {
        height: 20px;
    }

    .faq-question {
        padding: 12px 10px;
        font-size: 0.8rem;
        gap: 10px;
    }

    .faq-label {
        gap: 10px;
    }
}

/* --- Video CTA Button --- */
.mission-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--neon-red);
    border: none;
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
    width: auto;
    max-width: 100%;
}

.mission-video-btn:hover {
    background: var(--neon-red);
    color: #000;
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.8);
    transform: translateY(-2px);
}

.play-icon {
    margin: 0;
}

/* Compact text for unified view */
.small-title {
    font-size: 0.9rem !important;
    /* Very small reference title */
    color: #666;
    /* Subtle */
    margin-bottom: 15px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    display: inline-block;
}

.faq-question {
    padding: 10px 0;
    /* Minimal padding */
    font-size: 0.8rem;
    /* Small text */
    border-bottom: 1px solid #222;
    /* Subtle divider */
    background: transparent !important;
    /* Remove background box */
}

.faq-question:hover {
    color: var(--neon-red);
}

.faq-item {
    background: transparent !important;
    /* Remove background box */
    border: none !important;
    /* Remove border */
    border-radius: 0;
}

.faq-qm-icon {
    height: 18px;
    /* Tiny icon */
    opacity: 0.7;
}

.faq-answer {
    font-size: 0.8rem;
    padding: 5px 0 15px 35px;
    /* Indent answer */
    color: #aaa;
    border: none;
}

.faq-answer strong {
    color: var(--neon-red);
    font-weight: 700;
}



/* Mobile Responsive for Unified Layout and General Fixes */
@media (max-width: 900px) {

    /* Global Section Title resizing */
    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 25px;
        padding: 0 15px;
        line-height: 1.2;
        word-wrap: break-word;
    }

    /* Specific adjust for 'Arsenal Disponible' */
    .store-section {
        height: auto;
        min-height: auto;
        padding: 40px 0;
        padding-right: 40px;
        /* Space for vertical title */
        background-color: #000;
        /* Force black background */
        position: relative;
        /* Ensure relative for absolute title */
    }

    .store-section .section-title {
        font-size: 1.2rem !important;
        /* Smaller mobile title */
        margin-bottom: 20px;
    }

    .store-layout {
        display: flex;
        flex-direction: column;
        gap: 10px;
        /* Reduced gap to move buttons up */
        padding: 0 20px;
        /* Side padding for images */
    }

    .full-width-block {
        width: 100%;
        height: auto;
    }

    .full-img {
        width: 100%;
        height: auto;
        /* Maintain aspect ratio */
        object-fit: contain;
        /* Ensure full image is visible */
        max-height: 400px;
        /* Cap height just in case */
        border-radius: 4px;
    }

    /* Unified Section Fixes */
    .unified-info-section {
        height: auto;
        min-height: auto;
        padding: 30px 0;
    }

    .unified-info-layout {
        display: flex;
        /* Switch to flex column to ensure stacking order */
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }

    /* Ensure carousel doesn't overflow */
    .unified-carousel-wrapper {
        width: 100%;
        margin-bottom: 10px;
    }

    .carousel-container {
        width: 100%;
    }

    /* FAQ Mobile Adjustment */
    .faq-inner-container {
        width: 100%;
        padding: 0;
    }

    .small-title {
        text-align: center;
        font-size: 1rem !important;
        /* Tiny reference size */
        margin-top: 10px;
    }

    .faq-qm-icon {
        height: 20px;
    }

    .faq-question {
        padding: 12px 10px;
        font-size: 0.8rem;
        gap: 10px;
    }

    .faq-label {
        gap: 10px;
    }
}

/* --- Video CTA Button --- */
.mission-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--neon-red);
    border: none;
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
    width: auto;
    max-width: 100%;
}

.mission-video-btn:hover {
    background: var(--neon-red);
    color: #000;
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.8);
    transform: translateY(-2px);
}

.play-icon {
    font-size: 1.2em;

}

/* --- Video Modal --- */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
    border-bottom: 1px solid #222;
    /* Subtle divider */
    background: transparent !important;
    /* Remove background box */
}

.faq-question:hover {
    color: var(--neon-red);
}

.faq-item {
    background: transparent !important;
    /* Remove background box */
    border: none !important;
    /* Remove border */
    border-radius: 0;
}

.faq-qm-icon {
    height: 18px;
    /* Tiny icon */
    opacity: 0.7;
}

.faq-answer {
    font-size: 0.8rem;
    padding: 5px 0 15px 35px;
    /* Indent answer */
    color: #aaa;
    border: none;
}



/* Mobile Responsive for Unified Layout and General Fixes */
@media (max-width: 900px) {

    /* Global Section Title resizing */
    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 25px;
        padding: 0 15px;
        line-height: 1.2;
        word-wrap: break-word;
    }

    /* Specific adjust for 'Arsenal Disponible' */
    .store-section {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    .store-section .section-title {
        font-size: 1.0rem !important;
        /* Smaller mobile title */
        margin-bottom: 20px;
    }

    .store-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0;
        /* Remove padding for full-width image */
    }

    .full-width-block {
        width: 100%;
        height: auto;
    }

    .full-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: none;
        /* remove cap */
        border-radius: 0;
        /* Edge to edge */
    }

    /* Unified Section Fixes */
    .unified-info-section {
        height: auto;
        min-height: auto;
        padding: 30px 0;
    }

    .unified-info-layout {
        display: flex;
        /* Switch to flex column to ensure stacking order */
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }

    /* Ensure carousel doesn't overflow */
    .unified-carousel-wrapper {
        width: 100%;
        margin-bottom: 10px;
    }

    .carousel-container {
        width: 100%;
    }

    /* FAQ Mobile Adjustment */
    .faq-inner-container {
        width: 100%;
        padding: 0;
    }

    .small-title {
        text-align: center;
        font-size: 1rem !important;
        /* Tiny reference size */
        margin-top: 10px;
    }

    .faq-qm-icon {
        height: 20px;
    }

    .faq-question {
        padding: 12px 10px;
        font-size: 0.8rem;
        gap: 10px;
    }

    .faq-label {
        gap: 10px;
    }
}

/* --- Video CTA Button --- */
.mission-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ff003c !important;
    border: none;
    color: #000 !important;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
    width: auto;
    max-width: 100%;
}

.mission-video-btn:hover {
    background-color: #ff003c !important;
    color: #000 !important;
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.8);
    transform: translateY(-2px);
}

.play-icon {
    font-size: 1.2em;

}

/* --- Video Modal --- */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.modal-content>* {
    pointer-events: auto;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: -10px;
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    cursor: pointer;
    z-index: 2005;
    line-height: 1;
    text-shadow: 0 0 10px #000;
    transition: transform 0.2s, color 0.2s;
}

.close-modal:hover {
    color: var(--neon-red);
    transform: scale(1.1);
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    padding: 0;
    background: #000;
    border: 1px solid var(--neon-red);
    box-shadow: 0 0 50px rgba(255, 0, 60, 0.3);
    overflow: hidden;
    display: table;
    /* Shrink to fit content */
}

.video-wrapper video {
    display: block;
    width: auto;
    height: auto;
    max-height: 75vh;
    max-width: 450px;
}

/* Modal CTA Button (New) */
.modal-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    background: rgba(255, 0, 60, 0.2);
    /* Transparent Red */
    border: 1px solid var(--neon-red);
    color: #fff;
    padding: 10px 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.modal-cta-btn:hover {
    background: rgba(255, 0, 60, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.6);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1em;
}

/* Mobile & Limited Height Screens Override */
@media (max-width: 768px),
(max-height: 800px) {
    .close-modal {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        border: 2px solid rgba(255, 0, 60, 0.5);
        /* Soft red border */
        color: var(--neon-red);
        /* Red X */
        font-size: 28px;
        /* Bigger X */
        padding-bottom: 4px;
    }

    .video-wrapper {
        border-radius: 12px;
        border: 1px solid var(--neon-red);
        width: auto;
        /* Let max properties handle sizing to aspect ratio */
        max-width: 85vw;
        margin-bottom: 5px;
    }

    .video-wrapper video {
        width: auto;
        height: auto;
        max-height: 65vh;
        max-width: 100%;
        /* Ensure it fits within wrapper */
    }

    .modal-cta-btn {
        margin-top: 15px;
        width: 85%;
        justify-content: center;
        padding: 12px;
        background: rgba(255, 0, 60, 0.3);
    }
}

/* Store Action Buttons */
.store-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.store-action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-red);
    color: #fff;
    padding: 20px 30px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.store-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--neon-red);
    transition: width 0.3s ease;
    z-index: 0;
    opacity: 0.1;
}

.store-action-btn:hover::before {
    width: 100%;
}

.store-action-btn:hover {
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.3);
}

.store-action-btn .btn-text {
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.store-action-btn .btn-arrow {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: var(--neon-red);
    transition: transform 0.3s ease;
}



.modal-content>* {
    pointer-events: auto;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: -10px;
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    cursor: pointer;
    z-index: 2005;
    line-height: 1;
    text-shadow: 0 0 10px #000;
    transition: transform 0.2s, color 0.2s;
}

.close-modal:hover {
    color: var(--neon-red);
    transform: scale(1.1);
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    padding: 0;
    background: #000;
    border: 1px solid var(--neon-red);
    box-shadow: 0 0 50px rgba(255, 0, 60, 0.3);
    overflow: hidden;
    display: table;
    /* Shrink to fit content */
}

.video-wrapper video {
    display: block;
    width: auto;
    height: auto;
    max-height: 75vh;
    max-width: 450px;
}

/* Modal CTA Button (New) */
.modal-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    background: rgba(255, 0, 60, 0.2);
    /* Transparent Red */
    border: 1px solid var(--neon-red);
    color: #fff;
    padding: 10px 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.modal-cta-btn:hover {
    background: rgba(255, 0, 60, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.6);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1em;
}

/* Mobile & Limited Height Screens Override */
@media (max-width: 768px),
(max-height: 800px) {
    .close-modal {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        border: 2px solid rgba(255, 0, 60, 0.5);
        /* Soft red border */
        color: var(--neon-red);
        /* Red X */
        font-size: 28px;
        /* Bigger X */
        padding-bottom: 4px;
    }

    .video-wrapper {
        border-radius: 12px;
        border: 1px solid var(--neon-red);
        width: auto;
        /* Let max properties handle sizing to aspect ratio */
        max-width: 85vw;
        margin-bottom: 5px;
    }

    .video-wrapper video {
        width: auto;
        height: auto;
        max-height: 65vh;
        max-width: 100%;
        /* Ensure it fits within wrapper */
    }

    .modal-cta-btn {
        margin-top: 15px;
        width: 85%;
        justify-content: center;
        padding: 12px;
        background: rgba(255, 0, 60, 0.3);
    }
}

/* Store Action Buttons Container */
.store-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-top: 5px;
    /* Minimal top margin */
}

/* Force pure black background for Store properties to match image */
.store-section {
    background-color: #000 !important;
    padding-top: 20px;
    /* Adjust padding if needed */
}

/* --- Store Tech Buttons (New Refined Style) --- */
.store-tech-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    gap: 8px;
    background: transparent;
    /* No fill */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle wireframe */
    border-radius: 50px;
    /* Pill shape */
    color: #ccc;
    /* Softer white */
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.store-tech-btn:hover {
    border-color: var(--neon-red);
    color: #fff;
    background: rgba(255, 0, 60, 0.1);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.2);
}

.btn-indicator {
    color: var(--neon-red);
    font-weight: bold;
    font-size: 1em;
}

.store-tech-btn .btn-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

/* New Arsenal Mini Title */
.arsenal-mini-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Vertical Right Positioning - Top Aligned near Menu */
    position: absolute;
    right: 12px;
    top: 30px;
    /* Aligns with top area near menu */
    width: auto;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    /* Anchors the top-right of the vertical text */
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.text-white {
    color: #fff;
}

.text-red {
    color: var(--neon-red);
    text-shadow: 0 0 5px rgba(255, 0, 60, 0.5);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Mobile specific for store actions */
@media (max-width: 900px) {
    .store-actions-grid {
        grid-template-columns: 1fr 1fr;
        /* Side by side on mobile */
        gap: 15px;
        /* Comfortable gap */
        padding: 0 20px;
        /* Side padding */
    }

    .store-actions-grid .store-tech-btn {
        padding: 10px 5px !important;
        font-size: 0.75rem !important;
        border-radius: 30px;
        /* Smaller pills */
    }

    .store-actions-grid .store-tech-btn .btn-indicator {
        display: inline-block;
        /* Show on mobile */
        margin-right: 5px;
        font-size: 0.8rem;
    }

    .store-actions-grid .store-tech-btn .btn-text {
        font-size: 0.6rem;
        /* Reduced to fit on one line */
        white-space: nowrap;
        /* Force single line */
    }

    .arsenal-mini-title {
        font-size: 0.7rem;
    }
}

/* Comparison Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.8rem;
    font-family: 'Share Tech Mono', monospace;
}

.comparison-table th,
.comparison-table td {
    padding: 10px;
    border: 1px solid #333;
    text-align: center;
}

.comparison-table th {
    background-color: #111;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.comparison-table th:last-child {
    background-color: rgba(255, 0, 60, 0.1);
    border-color: var(--neon-red);
    color: var(--neon-red);
}

.comparison-table td:last-child {
    color: var(--neon-red);
    font-weight: bold;
    border-color: rgba(255, 0, 60, 0.3);
    background-color: rgba(255, 0, 60, 0.05);
}

.table-wrapper {
    overflow-x: auto;
    /* Scroll on small screens */
    margin-bottom: 20px;
}



/* FAQ Disclaimer */
.faq-disclaimer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.65rem;
    color: #444;
    text-align: center;
    line-height: 1.6;
    font-family: 'Share Tech Mono', monospace;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-disclaimer strong {
    color: #fff;
    font-weight: bold;
    margin-right: 5px;
}

/* --- New FAQ Refinements (Step 48) --- */

/* Custom Red Markers replacing Emojis */
.faq-mark {
    color: var(--neon-red);
    font-weight: 900;
    font-family: var(--font-heading);
    margin-right: 8px;
    letter-spacing: -1px;
}

/* Highlight Boxes for Important Summaries */
.faq-highlight-box {
    border: 1px solid var(--neon-red);
    background: rgba(255, 0, 60, 0.05);
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
    position: relative;
}

.faq-highlight-box::before {
    content: "IMPORTANT //";
    position: absolute;
    top: -10px;
    left: 10px;
    background: #000;
    /* Match bg color to hide border */
    padding: 0 5px;
    color: var(--neon-red);
    font-size: 0.7rem;
    font-family: var(--font-heading);
    font-weight: bold;
}

/* Styled Lists */
.faq-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.faq-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.faq-list li::before {
    content: ">>";
    color: var(--neon-red);
    position: absolute;
    left: 0;
    font-family: var(--font-mono);
    font-weight: bold;
    font-size: 0.8rem;
}

/* Spacing Utilities */
.faq-spacer {
    height: 20px;
}

.faq-subtitle {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    display: block;
    border-left: 3px solid var(--neon-red);
    padding-left: 10px;
}

/* Footer Disclaimer */
.footer-disclaimer-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: #444;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer-text strong {
    color: #666;
    margin-right: 5px;
}