/*
Theme Name: Technomaniax
Theme URI: https://technomaniax.com
Author: Technomaniax
Author URI: https://technomaniax.com
Description: Futuristic dark theme for Technomaniax — The Journey Toward Techno Future. Custom designed with neon accents, glassmorphism, and modern interactions.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: technomaniax
*/

/* ============================================
   TECHNOMANIAX - FUTURISTIC WORDPRESS THEME
   All custom styles from the original design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&amp;family=Space+Grotesk:wght@500;600&amp;display=swap');

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.font-display {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-text {
    text-shadow: 0 0 10px rgb(0 240 255 / 0.5),
                0 0 20px rgb(0 240 255 / 0.3);
}

.section-header {
    font-size: 2.75rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.tech-gradient {
    background: linear-gradient(135deg, #00f0ff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-link {
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(to right, #00f0ff, #a855f7);
    transition: width 0.3s ease;
}

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

.article-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
}

.neon-border {
    position: relative;
}

.neon-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    padding: 1px;
    background: linear-gradient(45deg, #00f0ff, #a855f7, #00f0ff);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.neon-border:hover::before {
    opacity: 1;
}

.category-card {
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255,255,255,0.08);
}

.futuristic-grid {
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.stat-number {
    font-variant-numeric: tabular-nums;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.tech-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00f0ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f0ff;
    animation: particle-float 15s infinite linear;
    opacity: 0.6;
}

.modern-shadow {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3),
                0 4px 6px -4px rgb(0 0 0 / 0.3);
}