/* ARSENAL V2.1 - LUMINOUS PREMIUM DESIGN SYSTEM */
:root {
    --miap-primary: #BC13FE;
    --miap-secondary: #00F0FF;
    --miap-accent: #FF003C;
    --miap-luminous: #6b00f7;
    --bg-deep: #050614;
    --bg-card: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background: radial-gradient(circle at 50% 0%, #1a0b3a 0%, var(--bg-deep) 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.font-display { font-family: 'Orbitron', sans-serif; }

/* Grid Background with movement */
.grid-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(188, 19, 254, 0.08) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(188, 19, 254, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

/* Luminous Card System */
.arsenal-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.arsenal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(188, 19, 254, 0.1) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none; /* Ensure background doesn't steal clicks */
}

/* Fix Blocking: Elevate Content */
.arsenal-card > * {
    position: relative;
    z-index: 2;
}
.arsenal-card::before {
    z-index: 1;
}

.arsenal-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--miap-secondary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.15);
}

/* Icon Luminous Effect */
.icon-glow-container {
    padding: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.2) 0%, transparent 70%);
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.arsenal-card:hover .icon-glow-container {
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3) 0%, transparent 70%);
    transform: scale(1.1);
}

/* Aggressive Buttons (CTAs) */
.btn-cyber-primary {
    background: linear-gradient(90deg, #ff00ea, #6b00f7);
    color: #fff;
    box-shadow: 0 0 25px rgba(235, 0, 255, 0.4);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-revelar {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--miap-secondary);
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-revelar:hover {
    background: var(--miap-secondary);
    color: #000;
    box-shadow: 0 0 30px var(--miap-secondary);
}

/* Typography Enhancements */
.text-glow-violet { text-shadow: 0 0 20px var(--miap-primary); }
.text-glow-blue { text-shadow: 0 0 20px var(--miap-secondary); }

/* Solid Header System */
nav.fixed {
    background: #0a0b1e; /* Solid background */
    border-bottom: 2px solid var(--miap-primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.sticky-cat-bar {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 40;
    background: #0d0e28; /* Solid background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Search Bar Styling */
.search-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: var(--miap-secondary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.search-input {
    background: transparent;
    border: none;
    color: white;
    padding: 8px 0;
    outline: none;
    font-size: 14px;
    width: 180px;
}

/* Buttons and Interactions */
.cat-filter {
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5);
}

.cat-filter:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.cat-filter.active {
    background: var(--miap-secondary);
    color: #000;
    border-color: var(--miap-secondary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    opacity: 1;
}

/* Revenue CTA Banner */
.revenue-banner {
    background: linear-gradient(90deg, #1a1b3a 0%, #0a0b1e 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.revenue-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

/* Page Spacing */
.content-wrapper {
    margin-top: 140px; /* Adjust for both headers */
}

/* Scrollbar Hide */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
