/* CINEMATIC BRUTALISM V1 */
:root {
    --black: #050505;
    --dark-green: #2F3E22;
    --col-highlight: #759242;
    /* Colonial Green */
    --white: #F0F0F0;
    --grey: #808080;

    --font-heading: 'Oswald', sans-serif;
    --font-impact: 'Anton', sans-serif;
    --font-tech: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-tech);
    overflow-x: hidden;
}

/* NAVIGATION */
.cinematic-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1005;
    /* Staying above mobile menu */
    transition: all 0.4s ease;
    mix-blend-mode: normal;
}

.cinematic-nav.scrolled {
    padding: 15px 50px;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    font-family: var(--font-impact);
    font-size: 2rem;
    letter-spacing: 5px;
    color: #fff;
    transition: 0.3s;
}

.cinematic-nav.scrolled .nav-logo {
    font-size: 1.5rem;
}

.nav-items {
    display: flex;
    gap: 40px;
}

.nav-items a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 2px;
    position: relative;
}

.nav-items a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.nav-items a:hover::after {
    width: 100%;
}

.nav-cta {
    border: 2px solid #fff;
    padding: 10px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.nav-cta:hover {
    background: #fff;
    color: #000;
}

/* HERO CINEMATIC */
.hero-cinematic {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), #050505);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.giant-text {
    font-family: var(--font-impact);
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 40px;
    /* Increased spacing */
    text-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    /* Added top margin */
}

.hero-subline {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    /* Increased spacing */
}

.badger {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 20px;
    /* Increased padding */
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-statement {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.4;
}

.btn-brutalist {
    display: inline-block;
    background: var(--col-highlight);
    color: #fff;
    padding: 20px 50px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.btn-brutalist:hover {
    background: transparent;
    border-color: var(--col-highlight);
    color: var(--col-highlight);
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    letter-spacing: 5px;
    z-index: 2;
    opacity: 0.6;
    animation: blink 2s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.2;
    }
}

/* MANIFESTO SECTION */
.manifesto-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
}

.container-fluid {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.col-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-img {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.section-glitch {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--col-highlight);
    margin-bottom: 30px;
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #888;
    margin-bottom: 40px;
    border-left: 2px solid #333;
    padding-left: 20px;
}

.lead-text strong {
    color: #fff;
}

.stats-row {
    display: flex;
    gap: 50px;
}

.stat-block {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-impact);
    font-size: 4rem;
    line-height: 1;
    color: #fff;
}

.stat-lbl {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--col-highlight);
}

.img-brutalist {
    width: 100%;
    filter: grayscale(100%) contrast(1.2);
    transition: 0.5s;
}

.col-img:hover .img-brutalist {
    filter: grayscale(0%);
}

.img-caption {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #555;
    background: #000;
    padding: 5px 10px;
}

/* GALLERY STRIP */
.gallery-strip {
    display: flex;
    flex-wrap: wrap;
    height: 600px;
    /* Or 100vh for ultra immersive */
}

.strip-item {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-right: 1px solid #111;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(100%);
}

.strip-item:hover {
    flex: 2.5;
    filter: grayscale(0%);
}

.strip-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, rgba(117, 146, 66, 0.4) 50%, transparent 100%);
    z-index: 1;
    opacity: 0.8;
    transition: 0.5s;
}

.strip-item:hover::before {
    opacity: 0.2;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.strip-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    transition: 0.5s;
}

.strip-item:hover .strip-bg {
    filter: brightness(1);
    transform: scale(1.05);
}

.strip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    z-index: 2;
}

.strip-content h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: 0.4s;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.strip-content p {
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s 0.1s;
    color: var(--col-highlight);
    text-transform: uppercase;
}

.strip-item:hover .strip-content h3,
.strip-item:hover .strip-content p {
    transform: translateY(0);
    opacity: 1;
}


/* FOOTER CINEMATIC */
.footer-cinematic {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.overlay-grad {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 0%, #000 100%);
}

.footer-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    padding: 0 20px;
}

.call-to-war {
    font-family: var(--font-impact);
    font-size: 6rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
}

.btn-brutalist.huge {
    font-size: 2rem;
    padding: 30px 60px;
    margin-top: 40px;
    background: #fff;
    color: #000;
}

.btn-brutalist.huge:hover {
    background: var(--col-highlight);
    color: #fff;
}

.legal-line {
    margin-top: 100px;
    font-size: 0.8rem;
    color: #444;
}

/* HERO SEO */
.hero-sup {
    color: var(--col-highlight);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0;
    text-transform: uppercase;
}

/* MANIFESTO / ABOUT SEO */
.sub-heading-seo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--col-highlight);
    display: inline-block;
}

.values-block {
    margin-bottom: 30px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.4;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item i {
    color: var(--col-highlight);
    font-size: 1.2rem;
    margin-top: 5px;
}

.value-item strong {
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-left: 3px solid var(--col-highlight);
}

.feature-block h4 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 5px;
}

.feature-block p {
    font-size: 0.9rem;
    color: #aaa;
}

/* FAQ SEO */
.section-seo-text {
    background: #080808;
    padding: 80px 20px;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 40px;
}

.section-glitch.small {
    font-size: 3rem;
    color: #333;
}

.faq-list {
    margin-top: 50px;
    display: grid;
    gap: 30px;
}

.faq-item-seo {
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.faq-item-seo h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--col-highlight);
    margin-bottom: 10px;
}

.faq-item-seo p {
    color: #ccc;
    line-height: 1.6;
}

.seo-micro {
    font-size: 0.8rem;
    color: #555;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* MOBILE NAV */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 1006;
    /* Ensure toggle is always top */
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-btn {
    margin-top: 20px;
    background: var(--discord);
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.2rem !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* MOBILE RESPONSIVE CSS */
/* MOBILE RESPONSIVE CSS */
@media (max-width: 768px) {

    /* NAVIGATION */
    .cinematic-nav {
        padding: 20px 25px;
        /* Reduced padding on mobile */
    }

    .nav-items,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* HERO SECTION */
    /* HERO SECTION */
    .hero-content {
        padding-bottom: 80px;
        /* Space for sticky button */
    }

    .giant-text {
        font-size: 19vw;
        /* BIGGER (Red) */
        margin-top: 10px;
        margin-bottom: 30px;
        /* Push Subline down */
        line-height: 0.85;
    }

    .hero-sup {
        font-size: 0.85rem;
        letter-spacing: 2px;
        transform: translateY(-10px);
        /* Move UP (Green) */
        color: var(--col-highlight);
    }

    .hero-subline {
        position: relative;
        top: 10px;
        /* Push DOWN (Pink) */
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .hero-statement {
        position: relative;
        top: 20px;
        /* Push DOWN (Yellow) */
        margin-bottom: 50px;
    }

    .badger {
        font-size: 0.8rem;
        padding: 5px 10px;
        align-self: center;
    }

    /* HERO ACTION ROW - NORMAL STATE */
    .action-row {
        position: relative;
        width: 100%;
        margin-top: 20px;
        padding: 0 20px;
        z-index: 10;
    }

    /* SEPARATE MOBILE STICKY BAR */
    .mobile-sticky-bar {
        position: fixed;
        bottom: 20px;
        /* Floating slightly above bottom for 'app' feel */
        left: 50%;
        transform: translateX(-50%) translateY(150%);
        /* Hidden down */
        width: 90%;
        z-index: 2000;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        /* Apple-like ease */
    }

    .mobile-sticky-bar.visible {
        transform: translateX(-50%) translateY(0);
        /* Slide Up */
    }

    .sticky-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 18px;
        background: var(--col-highlight);
        color: #fff;
        font-family: var(--font-heading);
        font-size: 1.2rem;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 1px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }

    .btn-brutalist {
        width: 100%;
        padding: 15px 30px;
        font-size: 1.2rem;
        border: 1px solid var(--col-highlight);
        transition: all 0.3s;
    }


    /* MANIFESTO */
    .section-glitch {
        font-size: 3.5rem;
        /* Smaller glitch text */
    }

    .row {
        flex-direction: column;
        gap: 30px;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .stat-num {
        font-size: 3rem;
    }

    /* GALLERY STRIP AUTO-OPTIMIZED */
    .gallery-strip {
        display: block;
        /* Force block layout on mobile to avoid flex complications */
        height: auto;
    }

    .strip-item {
        height: 350px;
        /* Reduced slightly to make scrolling easier */
        width: 100%;
        display: block;
        border-right: none;
        border-bottom: 1px solid #111;
        position: relative;
    }

    .strip-bg {
        filter: brightness(0.7);
        /* Brighter by default on mobile so images are visible */
    }

    .strip-content {
        padding: 20px;
    }

    .strip-content h3 {
        font-size: 2rem;
        transform: translateY(0);
        /* Always visible */
    }

    .strip-content p {
        opacity: 1;
        /* Always visible */
        transform: translateY(0);
        font-size: 0.8rem;
    }

    /* FOOTER */
    .call-to-war {
        font-size: 3rem;
    }

    .btn-brutalist.huge {
        font-size: 1.5rem;
        padding: 20px 40px;
        width: 100%;
    }
}

/* ITALIAN FLAG TEXT EFFECT */
.ita-flag-text {
    background: linear-gradient(90deg, #009246 33%, #fff 33%, #fff 66%, #ce2b37 66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

/* WAR STATUS DASHBOARD STYLES */
/* WAR STATUS DASHBOARD STYLES */
.war-dashboard {
    padding: 100px 5%;
    background-color: #0b0b0b;
    background-image:
        linear-gradient(rgba(117, 146, 66, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(117, 146, 66, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    /* Tactical Grid Size */
    position: relative;
    border-top: 1px solid #222;
    box-shadow: inset 0 0 100px #000;
}

/* Radar Sweep Animation */
.war-dashboard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(117, 146, 66, 0.5);
    box-shadow: 0 0 15px rgba(117, 146, 66, 0.8);
    animation: radarScan 4s linear infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes radarScan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.status-header {
    text-align: center;
    margin-bottom: 60px;
}

.status-badge {
    display: inline-block;
    border: 1px solid var(--col-highlight);
    color: var(--col-highlight);
    padding: 5px 15px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(117, 146, 66, 0.1);
    box-shadow: 0 0 15px rgba(117, 146, 66, 0.2);
}

.war-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.war-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid #333;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.war-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.war-card:hover {
    transform: translateY(-5px);
    border-color: #555;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.war-card:hover::before {
    box-shadow: 0 0 10px currentColor;
}

.card-war-num {
    border-color: #444;
}

.card-war-num::before {
    background: #fff;
}

.card-col {
    border-color: #759242;
}

.card-col::before {
    background: #759242;
}

.card-warden {
    border-color: #2e4d76;
}

.card-warden::before {
    background: #2e4d76;
}

.data-label {
    font-family: var(--font-heading);
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-value {
    font-family: var(--font-impact);
    font-size: 4rem;
    color: #fff;
    line-height: 0.9;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.data-value.small {
    font-size: 3rem;
}

.data-unit {
    font-size: 1rem;
    color: #666;
    font-family: var(--font-heading);
}

/* GALLERY ENHANCEMENTS "EVEN BETTER" */
/* GALLERY ENHANCEMENTS "ULTRA FASHION" */
.strip-item {
    position: relative;
    overflow: hidden;
}

/* CRT SCANLINE EFFECT */
.strip-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.15) 0px,
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px);
    pointer-events: none;
    z-index: 5;
    opacity: 0.6;
    transition: 0.5s;
}

.strip-item:hover::after {
    opacity: 0.1;
    /* Fade out scanlines on hover for clarity */
}

/* HOVER STATE & GLITCH BORDER */
.strip-item:hover {
    box-shadow: 0 0 50px rgba(117, 146, 66, 0.4);
    border: 1px solid var(--col-highlight);
    /* Full border */
    z-index: 10;
    animation: borderPulse 2s infinite;
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 20px rgba(117, 146, 66, 0.2);
    }

    50% {
        box-shadow: 0 0 50px rgba(117, 146, 66, 0.6);
    }

    100% {
        box-shadow: 0 0 20px rgba(117, 146, 66, 0.2);
    }
}

/* TEXT GLITCH EFFECT */
.strip-item:hover h3 {
    text-shadow: 3px 0px 0px rgba(255, 0, 0, 0.8), -3px 0px 0px rgba(0, 255, 255, 0.8);
    animation: glitchText 0.3s infinite linear alternate-reverse;
}

@keyframes glitchText {
    0% {
        transform: skewX(0deg);
    }

    20% {
        transform: skewX(-5deg);
        filter: blur(0.5px);
    }

    40% {
        transform: skewX(5deg);
    }

    60% {
        transform: skewX(-2deg);
    }

    80% {
        transform: skewX(2deg);
        filter: blur(0px);
    }

    100% {
        transform: skewX(0deg);
    }
}

/* FASHIONABLE FOOTER */
/* FASHIONABLE FOOTER "TERMINAL X-RAY" */
.fashion-footer {
    background: #020202;
    border-top: 1px solid #333;
    padding: 80px 0 0;
    font-family: var(--font-tech);
    position: relative;
    overflow: hidden;
}

/* Background watermark */
.fashion-footer::before {
    content: 'ITAR';
    position: absolute;
    bottom: -50px;
    right: -20px;
    font-size: 20rem;
    font-family: var(--font-impact);
    color: #111;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1600px;
    margin: 0 auto;
    border-left: 1px solid #222;
    position: relative;
    z-index: 1;
}

.footer-col {
    padding: 40px;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
    transition: 0.3s;
    background: transparent;
}

.footer-col:hover {
    background: #0a0a0a;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h4::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: var(--col-highlight);
    box-shadow: 0 0 10px var(--col-highlight);
}

.footer-links a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 15px;
    transition: 0.3s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 15px;
    text-shadow: 0 0 10px #fff;
}

.footer-links a::before {
    content: '>';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: 0.3s;
    color: var(--col-highlight);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    background: #000;
    padding: 20px 0;
    border-top: 1px solid var(--col-highlight);
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.footer-bottom span {
    color: var(--col-highlight);
    animation: blink 2s infinite;
}

/* GALLERY HUD OVERLAY (Cyber-Military) */
.hud-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    pointer-events: none;
    opacity: 0.7;
    transition: 0.3s;
}

.strip-item:hover .hud-layer {
    opacity: 1;
}

/* REC blinking dot */
.hud-rec {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ff0000;
    font-size: 0.7rem;
    font-family: var(--font-tech);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hud-rec::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: blinkFast 1s infinite;
}

@keyframes blinkFast {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Corner Brackets */
.hud-layer::before {
    content: 'CAM-02 // LIVE';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.6rem;
    color: var(--col-highlight);
    border-top: 1px solid var(--col-highlight);
    border-left: 1px solid var(--col-highlight);
    padding: 5px;
    font-family: var(--font-tech);
}

/* CUSTOM TACTICAL CURSOR */
body {
    cursor: none;
    /* Hide default cursor */
}

a,
button,
.strip-item,
.war-card {
    cursor: none;
    /* Ensure links don't show hand */
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
    /* Cool inversion effect */
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--col-highlight);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--col-highlight);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover State for Cursor */
body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(117, 146, 66, 0.1);
    border-color: #fff;
    mix-blend-mode: normal;
}

/* Crosshair Lines (Optional, maybe too much? Let's stick to circle first) */
.cursor-outline::after,
.cursor-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--col-highlight);
    opacity: 0.5;
}

.cursor-outline::after {
    width: 100%;
    height: 1px;
}

body {
    background-color: #000;
    margin: 0;
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor */
}