/* ===================================
   DESIGN SYSTEM & CSS VARIABLES
   =================================== */
:root {
    /* Color Palette - Dark Futuristic */
    --color-void: #0a0a0f;
    --color-deep-space: #12121a;
    --color-charcoal: #1a1a24;
    --color-slate: #2a2a38;
    --color-steel: #3a3a4a;

    /* Neon Accents */
    --color-neon-blue: #00d4ff;
    --color-neon-purple: #b84dff;
    --color-neon-cyan: #4dffff;
    --color-electric-blue: #0099ff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-neon-blue), var(--color-neon-purple));
    --gradient-glow: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
    --gradient-overlay: linear-gradient(180deg, transparent, var(--color-void));

    /* Typography */
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Effects */
    --blur-sm: 10px;
    --blur-md: 20px;
    --blur-lg: 40px;
    --glow-sm: 0 0 10px;
    --glow-md: 0 0 20px;
    --glow-lg: 0 0 40px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--color-void);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================================
   PARTICLES BACKGROUND
   =================================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, var(--color-deep-space) 0%, var(--color-void) 100%);
}

.particles-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(184, 77, 255, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(77, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 153, 255, 0.2), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(0, 212, 255, 0.2), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(184, 77, 255, 0.2), transparent);
    background-size: 200% 200%;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }
}

/* ===================================
   VOLUMETRIC LIGHT BEAMS
   =================================== */
.light-beams {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.beam {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-neon-blue), transparent);
    opacity: 0.1;
    filter: blur(2px);
}

.beam-1 {
    left: 20%;
    animation: beamPulse 4s ease-in-out infinite;
}

.beam-2 {
    left: 50%;
    animation: beamPulse 5s ease-in-out infinite 1s;
}

.beam-3 {
    left: 80%;
    animation: beamPulse 6s ease-in-out infinite 2s;
}

@keyframes beamPulse {

    0%,
    100% {
        opacity: 0.05;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 0.15;
        transform: scaleY(1);
    }
}

/* ===================================
   NAVIGATION
   =================================== */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(var(--blur-md));
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.nav-logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-bracket {
    color: var(--color-neon-blue);
    font-size: 1.8rem;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: var(--transition-normal);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--color-neon-blue);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    overflow: hidden;
}

/* Floating Objects */
.floating-objects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.floating-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(184, 77, 255, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(5px);
    transform-style: preserve-3d;
    animation: floatRotate 15s ease-in-out infinite;
}

.cube-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cube-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.cube-3 {
    bottom: 25%;
    left: 20%;
    width: 40px;
    height: 40px;
    animation-delay: 4s;
}

@keyframes floatRotate {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: translateY(-30px) rotateX(90deg) rotateY(90deg);
    }

    50% {
        transform: translateY(-60px) rotateX(180deg) rotateY(180deg);
    }

    75% {
        transform: translateY(-30px) rotateX(270deg) rotateY(270deg);
    }
}

.floating-rock {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-slate), var(--color-charcoal));
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: var(--glow-sm) rgba(0, 212, 255, 0.3);
    animation: floatDrift 12s ease-in-out infinite;
}

.rock-1 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.rock-2 {
    bottom: 35%;
    left: 15%;
    width: 60px;
    height: 60px;
    animation-delay: 3s;
}

@keyframes floatDrift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -40px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, -20px) rotate(240deg);
    }
}

.floating-panel {
    position: absolute;
    width: 200px;
    height: 120px;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.4);
    backdrop-filter: blur(var(--blur-sm));
    box-shadow: var(--glow-md) rgba(0, 212, 255, 0.2);
    animation: panelFloat 10s ease-in-out infinite;
}

.panel-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0.5s;
}

.panel-2 {
    bottom: 20%;
    right: 25%;
    width: 150px;
    height: 100px;
    animation-delay: 2.5s;
}

@keyframes panelFloat {

    0%,
    100% {
        transform: translateY(0) rotateZ(0deg);
    }

    50% {
        transform: translateY(-40px) rotateZ(5deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(184, 77, 255, 0.8));
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-neon-blue);
    text-shadow: var(--glow-sm) var(--color-neon-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-neon-blue), transparent);
}

/* CTA Button */
.cta-button,
.submit-button {
    background: transparent;
    border: 2px solid var(--color-neon-blue);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.cta-button::before,
.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    z-index: -1;
}

.cta-button:hover::before,
.submit-button:hover::before {
    left: 0;
}

.cta-button:hover,
.submit-button:hover {
    border-color: var(--color-neon-purple);
    box-shadow: var(--glow-md) rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.button-icon {
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.cta-button:hover .button-icon,
.submit-button:hover .button-icon {
    transform: translateX(5px);
}

/* Holographic UI Frames */
.holo-frame {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    z-index: 5;
    pointer-events: none;
}

.frame-top-left {
    top: 10%;
    left: 5%;
    border-right: none;
    border-bottom: none;
    animation: frameGlow 3s ease-in-out infinite;
}

.frame-top-right {
    top: 10%;
    right: 5%;
    border-left: none;
    border-bottom: none;
    animation: frameGlow 3s ease-in-out infinite 0.5s;
}

.frame-bottom-left {
    bottom: 10%;
    left: 5%;
    border-right: none;
    border-top: none;
    animation: frameGlow 3s ease-in-out infinite 1s;
}

.frame-bottom-right {
    bottom: 10%;
    right: 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(var(--blur-sm));
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-neon-blue);
    box-shadow: var(--glow-lg) rgba(0, 212, 255, 0.3);
}

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--color-charcoal), var(--color-slate));
    position: relative;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: var(--color-charcoal);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card {
    background: rgba(18, 18, 26, 0.8);
}

.video-card:hover {
    transform: translateY(-5px);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project-btn {
    background: var(--gradient-primary);
    border: none;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.view-project-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-md) rgba(0, 212, 255, 0.5);
}

.project-info {
    padding: var(--spacing-md);
}

.project-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-neon-blue);
}

.project-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--color-neon-cyan);
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   SECTION TITLES
   =================================== */
.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-neon-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.title-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-neon-blue), transparent);
    max-width: 200px;
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.projects-section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    z-index: 10;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(var(--blur-sm));
    padding: var(--spacing-lg);
    border-radius: 4px;
    transition: var(--transition-normal);
}

.about-text:hover {
    border-color: var(--color-neon-blue);
    box-shadow: var(--glow-md) rgba(0, 212, 255, 0.3);
}

/* ===================================
   BATTLEFIELD ENVIRONMENT
   =================================== */
.battlefield-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    perspective: 1000px;
    overflow: hidden;
}

.terrain-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.3;
}

.layer-far {
    height: 25%;
    background: linear-gradient(to top, rgba(0, 212, 255, 0.1) 0%, rgba(18, 18, 26, 0.3) 50%, transparent 100%);
    clip-path: polygon(0% 100%, 0% 60%, 15% 65%, 30% 55%, 45% 70%, 60% 50%, 75% 65%, 90% 55%, 100% 60%, 100% 100%);
    animation: terrainDrift 40s linear infinite;
}

.layer-mid {
    height: 35%;
    background: linear-gradient(to top, rgba(0, 212, 255, 0.15) 0%, rgba(18, 18, 26, 0.4) 60%, transparent 100%);
    clip-path: polygon(0% 100%, 0% 50%, 10% 55%, 25% 45%, 40% 60%, 55% 40%, 70% 55%, 85% 45%, 100% 50%, 100% 100%);
    animation: terrainDrift 30s linear infinite reverse;
}

.layer-near {
    height: 45%;
    background: linear-gradient(to top, rgba(0, 212, 255, 0.2) 0%, rgba(18, 18, 26, 0.5) 70%, transparent 100%);
    clip-path: polygon(0% 100%, 0% 40%, 20% 50%, 40% 35%, 60% 55%, 80% 40%, 100% 45%, 100% 100%);
    animation: terrainDrift 20s linear infinite;
}

@keyframes terrainDrift {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50px);
    }
}

.structure {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(18, 18, 26, 0.6));
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-sm) rgba(0, 212, 255, 0.2);
}

.structure-1 {
    bottom: 15%;
    left: 10%;
    width: 80px;
    height: 150px;
    clip-path: polygon(0% 100%, 0% 20%, 15% 15%, 15% 0%, 85% 0%, 85% 25%, 100% 30%, 100% 100%, 70% 100%, 70% 85%, 30% 85%, 30% 100%);
    animation: structureSway 8s ease-in-out infinite;
}

.structure-2 {
    bottom: 20%;
    right: 15%;
    width: 100px;
    height: 120px;
    clip-path: polygon(0% 100%, 0% 35%, 20% 30%, 20% 10%, 80% 10%, 80% 40%, 100% 45%, 100% 100%);
    animation: structureSway 10s ease-in-out infinite 1s;
}

.structure-3 {
    bottom: 25%;
    left: 60%;
    width: 60px;
    height: 100px;
    clip-path: polygon(0% 100%, 0% 40%, 30% 35%, 30% 0%, 70% 0%, 70% 50%, 100% 55%, 100% 100%);
    animation: structureSway 12s ease-in-out infinite 2s;
}

@keyframes structureSway {

    0%,
    100% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(2deg);
    }
}

.smoke {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, rgba(0, 212, 255, 0.1) 40%, transparent 70%);
    filter: blur(20px);
    animation: smokeRise 15s ease-in-out infinite;
}

.smoke-1 {
    bottom: 20%;
    left: 12%;
    width: 150px;
    height: 150px;
}

.smoke-2 {
    bottom: 25%;
    right: 18%;
    width: 180px;
    height: 180px;
    animation-delay: 3s;
}

.smoke-3 {
    bottom: 30%;
    left: 65%;
    width: 120px;
    height: 120px;
    animation-delay: 6s;
}

@keyframes smokeRise {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 0.3;
    }

    80% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-200px) scale(1.5);
        opacity: 0;
    }
}

.debris {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
    animation: debrisFall 12s linear infinite;
}

.debris-1 {
    top: -10%;
    left: 20%;
}

.debris-2 {
    top: -10%;
    left: 50%;
    animation-delay: 3s;
    width: 6px;
    height: 6px;
}

.debris-3 {
    top: -10%;
    left: 75%;
    animation-delay: 6s;
}

.debris-4 {
    top: -10%;
    left: 35%;
    animation-delay: 9s;
    width: 10px;
    height: 10px;
}

@keyframes debrisFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(120vh) rotate(720deg);
        opacity: 0;
    }
}

.loot-item {
    position: absolute;
    animation: lootFloat 6s ease-in-out infinite;
}

.weapon {
    width: 70px;
    height: 30px;
    background: linear-gradient(135deg, rgba(184, 77, 255, 0.3), rgba(0, 212, 255, 0.2));
    border: 2px solid rgba(184, 77, 255, 0.6);
    clip-path: polygon(0% 40%, 20% 40%, 20% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 20% 80%, 20% 60%, 0% 60%);
    box-shadow: var(--glow-md) rgba(184, 77, 255, 0.4);
}

.weapon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 15px;
    height: 8px;
    background: rgba(0, 212, 255, 0.5);
    transform: translateY(-50%);
}

.weapon-1 {
    top: 30%;
    left: 15%;
}

.weapon-2 {
    bottom: 35%;
    right: 20%;
    animation-delay: 2s;
}

.ammo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.3), rgba(255, 167, 38, 0.2));
    border: 2px solid rgba(255, 214, 0, 0.6);
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    box-shadow: var(--glow-sm) rgba(255, 214, 0, 0.4);
}

.ammo::before {
    content: '|||';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: bold;
    color: rgba(255, 214, 0, 0.8);
}

.ammo-1 {
    top: 45%;
    left: 25%;
    animation-delay: 1s;
}

.ammo-2 {
    bottom: 28%;
    right: 35%;
    animation-delay: 3s;
}

.health {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 77, 77, 0.2));
    border: 2px solid rgba(255, 107, 107, 0.6);
    border-radius: 4px;
    box-shadow: var(--glow-md) rgba(255, 107, 107, 0.4);
}

.health::before,
.health::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
}

.health::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 4px;
}

.health::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 20px;
}

.health-1 {
    top: 55%;
    right: 25%;
    animation-delay: 1.5s;
}

.armor {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(77, 255, 255, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.6);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: var(--glow-md) rgba(0, 212, 255, 0.5);
}

.armor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.armor-1 {
    top: 40%;
    left: 45%;
    animation-delay: 2.5s;
}

@keyframes lootFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 1;
    }
}

/* ===================================
   SKILLS SECTION
   =================================== */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.skill-category {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(var(--blur-sm));
    padding: var(--spacing-md);
    transition: var(--transition-normal);
}

.skill-category:hover {
    border-color: var(--color-neon-purple);
    box-shadow: var(--glow-md) rgba(184, 77, 255, 0.3);
}

.category-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.category-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-neon-blue);
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.skill-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.skill-progress {
    width: 100%;
    height: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    transition: width 1.5s ease-out;
    box-shadow: var(--glow-sm) rgba(0, 212, 255, 0.5);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    z-index: 10;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-heading {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-neon-blue);
    margin-bottom: var(--spacing-sm);
}

.contact-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(var(--blur-sm));
    text-decoration: none;
    color: #ffffff;
    transition: var(--transition-normal);
}

.contact-method:hover {
    border-color: var(--color-neon-blue);
    box-shadow: var(--glow-md) rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.method-icon {
    font-size: 1.5rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(var(--blur-sm));
    color: #ffffff;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: var(--transition-normal);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-neon-blue);
    box-shadow: var(--glow-sm) rgba(0, 212, 255, 0.3);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
    pointer-events: none;
    font-size: 1rem;
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
    top: -0.8rem;
    left: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-neon-blue);
    background: var(--color-void);
    padding: 0 0.5rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: rgba(10, 10, 15, 0.9);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: var(--spacing-md);
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-neon-blue);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: rgba(10, 10, 15, 0.9);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-neon-blue);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .nav-container {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .nav-links {
        gap: var(--spacing-sm);
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }

    .hero-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .hero-stats {
        gap: var(--spacing-sm);
    }

    .stat-number {
        font-size: 2rem;
    }

    .floating-cube,
    .floating-rock,
    .floating-panel {
        display: none;
    }

    .holo-frame {
        width: 80px;
        height: 80px;
    }

    .projects-grid,
    .skills-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}