@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Oswald:wght@400;500;700&display=swap');

:root {
    --neon: #ccff00;
    --dark-bg: #050505;
    --card-bg: #121212;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; 
}

body {
    background-color: var(--dark-bg);
    color: #f3f4f6; 
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* Fluid Typography */
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { font-size: clamp(1rem, 1.5vw, 1.125rem); line-height: 1.6; }

.font-heading { font-family: 'Oswald', sans-serif; letter-spacing: 1px; text-transform: uppercase; }

/* Buttons */
.btn-touch {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}
.btn-touch:active { transform: scale(0.96); }

.btn-neon {
    background-color: var(--neon);
    color: black;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

/* Glitch Effect (Simple Hover) */
.btn-glitch {
    position: relative;
    overflow: hidden;
}
.btn-glitch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.4), transparent);
    transition: 0.5s;
}
.btn-glitch:hover::before { left: 100%; }
.btn-glitch:hover {
    text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9; 
    box-shadow: 0 0 15px var(--neon);
}

/* Scroll Snap (Mobile) */
.scroll-snap-x {
    overflow-x: auto;
    display: flex;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}
.scroll-snap-x > * {
    scroll-snap-align: center;
    flex: 0 0 85%;
}
@media (min-width: 768px) {
    .scroll-snap-x { display: grid; overflow-x: visible; }
    .scroll-snap-x > * { flex: auto; }
}

/* Utilities */
.text-neon { color: var(--neon); }
.border-neon { border-color: var(--neon); }
.bg-tactical {
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}