:root {
    --primary: #00f7ff;
    --secondary: #00ffaa;
    --accent: #ff00f7;
    --dark: #0a0a12;
    --light: #f0f0ff;
    --critical: #ff5555;
    --high: #ff9966;
    --medium: #ffcc33;
    --low: #55ff55;
    --info: #5555ff;
    --neon-yellow: #ffff00;
    --neon-orange: #ff8800;
    --neon-purple: #dd00ff;
    --pip-green: #00ff00;
    --pip-dark: #1a1a2e;
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --shadow-sm: 0 0 10px rgba(0,0,0,0.3);
    --shadow-md: 0 0 20px rgba(0,0,0,0.5);
    --shadow-lg: 0 0 40px rgba(0,0,0,0.7);
    --glow-yellow: 0 0 10px var(--neon-yellow);
    --glow-orange: 0 0 10px var(--neon-orange);
    --glow-purple: 0 0 10px var(--neon-purple);
    --glow-green: 0 0 10px var(--pip-green);
    --glow-yellow-strong: 0 0 20px var(--neon-yellow);
    --glow-orange-strong: 0 0 20px var(--neon-orange);
    --glow-purple-strong: 0 0 20px var(--neon-purple);
    --glow-green-strong: 0 0 20px var(--pip-green);
    --z-background: 0;
    --z-effects: 1;
    --z-content: 10;
    --z-nav: 20;
    --z-pipboy: 99;
    --z-intro: 10000;
    --z-recruitment: 20000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Courier New', monospace;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    position: relative;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 75% 25%, rgba(0, 247, 255, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 25% 75%, rgba(255, 136, 0, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(221, 0, 255, 0.02) 0%, transparent 50%);
    background-attachment: fixed;
}

/* ============================================ */
/* SCROLLBAR STYLING - ROZBUDOWANY */
/* ============================================ */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 0, 0.2);
}

::-webkit-scrollbar-track-piece {
    background: rgba(26, 26, 46, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--neon-yellow), var(--neon-orange));
    border-radius: 10px;
    box-shadow: var(--glow-yellow);
    transition: all var(--transition-normal);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-purple));
    box-shadow: var(--glow-orange-strong);
}

::-webkit-scrollbar-corner {
    background: var(--dark);
}

/* ============================================ */
/* INTRO SEQUENCE - PEŁNA WERSJA */
/* ============================================ */
.intro-sequence {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a12 0%, #1a1a2e 50%, #0a0a12 100%);
    z-index: var(--z-intro);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOutIntro 0.8s ease-in-out 4.5s forwards;
}

@keyframes fadeOutIntro {
    0% {
        opacity: 1;
        visibility: visible;
    }
    70% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: none;
    }
}

.intro-content {
    text-align: center;
    padding: 2rem;
    animation: pulseIntro 2s ease-in-out infinite;
}

@keyframes pulseIntro {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.glitch-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.glitch {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--neon-yellow);
    text-shadow: 
        0 0 10px var(--neon-yellow),
        0 0 20px var(--neon-orange),
        0 0 30px var(--neon-purple),
        2px 2px 0px rgba(255,0,0,0.3),
        -2px -2px 0px rgba(0,255,255,0.3);
    animation: glitchText 0.3s infinite;
    letter-spacing: 4px;
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitchBefore 0.3s infinite;
    color: var(--critical);
    z-index: -1;
}

.glitch::after {
    animation: glitchAfter 0.3s infinite;
    color: var(--primary);
    z-index: -2;
}

@keyframes glitchText {
    0%, 100% {
        transform: translate(0);
        text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-orange);
    }
    33% {
        transform: translate(-2px, 1px);
        text-shadow: 0 0 20px var(--neon-purple), 0 0 30px var(--neon-yellow);
    }
    66% {
        transform: translate(2px, -1px);
        text-shadow: 0 0 15px var(--neon-orange), 0 0 25px var(--neon-purple);
    }
}

@keyframes glitchBefore {
    0%, 100% { transform: translate(0); opacity: 0.5; }
    33% { transform: translate(-3px, 2px); opacity: 0.7; }
    66% { transform: translate(3px, -2px); opacity: 0.3; }
}

@keyframes glitchAfter {
    0%, 100% { transform: translate(0); opacity: 0.5; }
    33% { transform: translate(3px, -2px); opacity: 0.3; }
    66% { transform: translate(-3px, 2px); opacity: 0.7; }
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 0, 0.1);
    margin: 2rem auto;
    border: 1px solid var(--neon-yellow);
    overflow: hidden;
    box-shadow: var(--glow-yellow);
    border-radius: 3px;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--neon-yellow) 0%, 
        var(--neon-orange) 25%, 
        var(--neon-purple) 50%, 
        var(--neon-orange) 75%, 
        var(--neon-yellow) 100%);
    width: 0%;
    animation: loadingProgress 3s ease-in-out forwards;
    background-size: 200% 100%;
}

@keyframes loadingProgress {
    0% { 
        width: 0%;
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% { 
        width: 100%;
        background-position: 200% 50%;
    }
}

.boot-text {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--pip-green);
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--pip-green);
}

.boot-line {
    margin: 0.6rem 0;
    animation: typewriterLine 0.5s steps(40, end) forwards;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
}

.boot-line:nth-child(1) { animation-delay: 0.2s; }
.boot-line:nth-child(2) { animation-delay: 0.8s; }
.boot-line:nth-child(3) { animation-delay: 1.4s; }
.boot-line:nth-child(4) { animation-delay: 2.0s; }
.boot-line:nth-child(5) { animation-delay: 2.6s; }

@keyframes typewriterLine {
    0% {
        opacity: 0;
        width: 0;
    }
    100% {
        opacity: 1;
        width: 100%;
    }
}

/* ============================================ */
/* VISUAL EFFECTS - ROZBUDOWANE */
/* ============================================ */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.2) 1px,
        transparent 1px,
        transparent 3px
    );
    z-index: var(--z-effects);
    animation: scanlinesMove 8s linear infinite;
    opacity: 0.6;
}

@keyframes scanlinesMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, 
            transparent 23%, 
            rgba(255, 255, 0, 0.08) 24%, 
            rgba(255, 255, 0, 0.08) 25%, 
            transparent 26%, 
            transparent 73%, 
            rgba(255, 255, 0, 0.08) 74%, 
            rgba(255, 255, 0, 0.08) 75%, 
            transparent 76%, 
            transparent),
        linear-gradient(90deg, 
            transparent 23%, 
            rgba(255, 136, 0, 0.08) 24%, 
            rgba(255, 136, 0, 0.08) 25%, 
            transparent 26%, 
            transparent 73%, 
            rgba(255, 136, 0, 0.08) 74%, 
            rgba(255, 136, 0, 0.08) 75%, 
            transparent 76%, 
            transparent);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: var(--z-effects);
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.cyber-gradient {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: var(--z-effects);
    background: 
        linear-gradient(135deg, rgba(255, 255, 0, 0.08) 0%, transparent 40%),
        linear-gradient(-135deg, rgba(221, 0, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 247, 255, 0.05) 0%, transparent 70%);
    transition: background 0.15s ease-out;
    mix-blend-mode: overlay;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: var(--z-background);
}

/* ============================================ */
/* FLOATING ELEMENTS - ROZBUDOWANE */
/* ============================================ */
.floating-element {
    position: fixed;
    pointer-events: none;
    z-index: var(--z-effects);
    transition: transform 0.08s ease-out;
    backdrop-filter: blur(2px);
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 3%;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(255, 136, 0, 0.15);
    border-radius: 50%;
    animation: floatRotate 20s linear infinite;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 3%;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(221, 0, 255, 0.15);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatMorph 15s ease-in-out infinite;
}

.floating-element:nth-child(3) {
    bottom: 15%;
    left: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 0, 0.15);
    border-radius: 50%;
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-element:nth-child(4) {
    top: 30%;
    right: 15%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 247, 255, 0.15);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    animation: floatRotate 25s linear infinite reverse;
}

.floating-element:nth-child(5) {
    bottom: 30%;
    right: 25%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 136, 0, 0.15);
    border-radius: 50%;
    animation: floatPulse 4s ease-in-out infinite 1s;
}

.floating-element:nth-child(6) {
    top: 70%;
    left: 20%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(221, 0, 255, 0.15);
    border-radius: 50%;
    animation: floatRotate 18s linear infinite;
}

@keyframes floatRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatMorph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 43% 37% 63% 57%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

@keyframes floatPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* ============================================ */
/* CONTAINER */
/* ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: var(--z-content);
}

/* ============================================ */
/* HEADER - ROZBUDOWANY */
/* ============================================ */
.header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem;
    border: 2px solid var(--neon-yellow);
    background: rgba(26, 26, 46, 0.85);
    box-shadow: 
        0 0 30px var(--neon-yellow),
        inset 0 0 30px rgba(255, 255, 0, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 0, 0.05) 50%,
        transparent 70%
    );
    animation: headerShine 8s linear infinite;
}

@keyframes headerShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.header h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--neon-yellow);
    text-shadow: 
        0 0 15px var(--neon-yellow),
        0 0 30px var(--neon-orange),
        0 0 45px var(--neon-purple),
        2px 2px 0 rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}

.header h1 .letter {
    display: inline-block;
    animation: letterGlowAdvanced 2.5s ease-in-out infinite alternate;
    transition: all var(--transition-normal);
}

.header h1 .letter:hover {
    transform: scale(1.1);
    color: var(--neon-orange);
    cursor: default;
}

.header h1 .letter:nth-child(1) { animation-delay: 0s; }
.header h1 .letter:nth-child(2) { animation-delay: 0.1s; }
.header h1 .letter:nth-child(3) { animation-delay: 0.2s; }
.header h1 .letter:nth-child(4) { animation-delay: 0.3s; }
.header h1 .letter:nth-child(5) { animation-delay: 0.4s; }
.header h1 .letter:nth-child(6) { animation-delay: 0.5s; }
.header h1 .letter:nth-child(7) { animation-delay: 0.6s; }
.header h1 .letter:nth-child(8) { animation-delay: 0.7s; }
.header h1 .letter:nth-child(9) { animation-delay: 0.8s; }

@keyframes letterGlowAdvanced {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 0, 0.3);
        transform: translateY(0);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
        transform: translateY(-3px);
    }
    100% {
        text-shadow: 0 0 35px rgba(255, 255, 0, 1);
        transform: translateY(0);
    }
}

.tagline {
    color: var(--neon-orange);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 10px var(--neon-orange);
    letter-spacing: 1px;
    word-spacing: 2px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--neon-purple);
    background: rgba(221, 0, 255, 0.15);
    border-radius: 40px;
    color: var(--neon-purple);
    font-size: 0.9rem;
    font-weight: bold;
    backdrop-filter: blur(5px);
    transition: all var(--transition-normal);
}

.status-badge:hover {
    background: rgba(221, 0, 255, 0.25);
    box-shadow: var(--glow-purple);
    transform: scale(1.02);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
}

.pulse {
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% {
        box-shadow: 0 0 10px var(--neon-purple);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 25px var(--neon-purple);
        opacity: 0.7;
    }
}

/* ============================================ */
/* PIP-BOY TRIGGER - ROZBUDOWANY */
/* ============================================ */
.pip-boy-trigger {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    z-index: var(--z-pipboy);
    cursor: pointer;
    animation: triggerPulseAdvanced 2s infinite;
    transition: all var(--transition-normal);
}

.pip-boy-trigger:hover {
    transform: translateY(-50%) scale(1.1);
}

.trigger-triangle {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid var(--neon-yellow);
    filter: drop-shadow(0 0 15px var(--neon-yellow));
    transition: all var(--transition-normal);
    position: relative;
}

.trigger-triangle::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -20px;
    width: 40px;
    height: 20px;
    background: var(--neon-yellow);
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 20% 100%);
}

.pip-boy-trigger:hover .trigger-triangle {
    border-bottom-color: var(--neon-orange);
    filter: drop-shadow(0 0 25px var(--neon-orange));
}

@keyframes triggerPulseAdvanced {
    0%, 100% {
        filter: drop-shadow(0 0 10px var(--neon-yellow));
    }
    33% {
        filter: drop-shadow(0 0 25px var(--neon-yellow));
    }
    66% {
        filter: drop-shadow(0 0 15px var(--neon-orange));
    }
}

/* ============================================ */
/* PIP-BOY INVENTORY - ROZBUDOWANY */
/* ============================================ */
.pip-boy-inventory {
    position: fixed;
    right: -500px;
    top: 0;
    width: 480px;
    max-width: 95vw;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(18, 18, 35, 0.98) 0%, 
        rgba(26, 26, 46, 0.98) 50%,
        rgba(35, 35, 55, 0.98) 100%);
    border-left: 4px solid var(--neon-yellow);
    box-shadow: 
        -15px 0 40px rgba(255, 255, 0, 0.3),
        inset -5px 0 15px rgba(255, 255, 0, 0.1);
    z-index: var(--z-pipboy);
    overflow-y: auto;
    overflow-x: hidden;
    transition: right 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 1.8rem;
    backdrop-filter: blur(15px);
}

.pip-boy-inventory.active {
    right: 0;
}

/* Pip-Boy Scrollbar */
.pip-boy-inventory::-webkit-scrollbar {
    width: 6px;
}

.pip-boy-inventory::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}

.pip-boy-inventory::-webkit-scrollbar-thumb {
    background: var(--neon-yellow);
    border-radius: 3px;
}

/* Inventory Header */
.inventory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--neon-yellow);
    padding-bottom: 1rem;
    margin-bottom: 1.8rem;
}

.inventory-title {
    font-size: 1.4rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.inventory-close {
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--neon-orange);
    transition: all var(--transition-fast);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.inventory-close:hover {
    color: var(--critical);
    transform: rotate(90deg);
    background: rgba(255, 85, 85, 0.2);
}

/* Music Player - Rozbudowany */
.music-player {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-purple);
    border-radius: var(--border-radius-md);
    padding: 1.2rem;
    margin-bottom: 1.8rem;
    transition: all var(--transition-normal);
}

.music-player:hover {
    border-color: var(--neon-yellow);
    box-shadow: var(--glow-yellow);
}

.music-player h4 {
    color: var(--neon-purple);
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: var(--glow-purple);
}

#yt-player {
    margin-bottom: 1rem;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.player-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.player-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.player-controls button {
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid var(--neon-yellow);
    color: var(--neon-yellow);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

/* WYŚRODKOWANIE IKON WEWNĄTRZ PRZYCISKU */
.player-controls button i {
    display: inline-block;
    text-align: center;
    line-height: 1;
}

/* SPECJALNE DOSTOSOWANIE DLA IKONY PAUZY (JEST SZERSZA) */
.player-controls button i.fa-pause {
    font-size: 0.9rem;
    letter-spacing: -1px;
}

/* DOSTOSOWANIE DLA POZOSTAŁYCH IKON */
.player-controls button i.fa-play,
.player-controls button i.fa-stop,
.player-controls button i.fa-volume-up,
.player-controls button i.fa-volume-mute {
    font-size: 1rem;
}

.player-controls button:hover {
    background: rgba(255, 255, 0, 0.3);
    transform: scale(1.1);
    box-shadow: var(--glow-yellow);
}
.track-info {
    text-align: center;
    font-size: 0.85rem;
    color: var(--pip-green);
    margin: 0.8rem 0;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--border-radius-sm);
    font-family: 'Courier New', monospace;
}

.yt-url-input {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.yt-url-input input {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-orange);
    color: var(--light);
    padding: 0.6rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
}

.yt-url-input input:focus {
    outline: none;
    border-color: var(--neon-yellow);
    box-shadow: var(--glow-yellow);
}

.yt-url-input button {
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid var(--pip-green);
    color: var(--pip-green);
    padding: 0.6rem 1rem;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.yt-url-input button:hover {
    background: rgba(0, 255, 0, 0.3);
    box-shadow: var(--glow-green);
}

.playlist-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.playlist-preset {
    background: rgba(255, 136, 0, 0.15);
    border: 1px solid var(--neon-orange);
    color: var(--neon-orange);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.playlist-preset:hover {
    background: rgba(255, 136, 0, 0.35);
    transform: translateY(-2px);
    box-shadow: var(--glow-orange);
}

/* Inventory Tabs */
.inventory-tabs {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 0, 0.3);
    flex-wrap: wrap;
}

.inventory-tab {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 0, 0.3);
    color: var(--neon-orange);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    border-radius: var(--border-radius-sm);
    font-weight: bold;
}

.inventory-tab.active {
    background: rgba(255, 255, 0, 0.25);
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
    box-shadow: var(--glow-yellow);
}

.inventory-tab:hover:not(.active) {
    background: rgba(255, 255, 0, 0.1);
    border-color: var(--neon-yellow);
    transform: translateY(-2px);
}

.inventory-content {
    display: none;
    animation: fadeInContent 0.3s ease;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.inventory-content.active {
    display: block;
}

.inventory-item {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 0, 0.05);
    border-left: 4px solid var(--neon-orange);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.inventory-item:hover {
    background: rgba(255, 255, 0, 0.12);
    border-left-color: var(--neon-yellow);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.2);
    transform: translateX(8px);
}

.inventory-item-title {
    color: var(--neon-yellow);
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inventory-item-title i {
    font-size: 1.1rem;
}

.inventory-item-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Pip-Boy Terminal */
.pip-terminal {
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--pip-green);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--glow-green);
}

.pip-terminal-output {
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--pip-green);
    max-height: 320px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.5);
}

.pip-terminal-output .terminal-line {
    margin-bottom: 0.5rem;
    word-break: break-word;
    border-left: 2px solid transparent;
    padding-left: 0.5rem;
}

.pip-terminal-output .terminal-line:hover {
    border-left-color: var(--pip-green);
}

.pip-terminal-input {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-top: 1px solid var(--pip-green);
    background: rgba(0, 0, 0, 0.95);
}

#pipTerminalCommand {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--pip-green);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    outline: none;
    margin-left: 0.5rem;
}

#pipTerminalCommand::placeholder {
    color: rgba(0, 255, 0, 0.4);
}

/* ============================================ */
/* NAVIGATION - ROZBUDOWANA */
/* ============================================ */
.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(18, 18, 35, 0.9);
    border: 1px solid rgba(255, 255, 0, 0.25);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 10px;
    z-index: var(--z-nav);
}

.nav-item {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 0, 0.05);
    border: 1px solid var(--neon-orange);
    color: var(--neon-orange);
    cursor: pointer;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-shadow: 0 0 3px var(--neon-orange);
    letter-spacing: 0.5px;
}

.nav-item i {
    font-size: 1rem;
}

.nav-item:hover {
    background: rgba(255, 255, 0, 0.15);
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
    box-shadow: var(--glow-yellow);
    transform: translateY(-3px);
}

.nav-item.active {
    background: rgba(255, 255, 0, 0.25);
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
    box-shadow: var(--glow-yellow-strong);
    text-shadow: 0 0 8px var(--neon-yellow);
}

/* ============================================ */
/* SECTIONS - ROZBUDOWANE */
/* ============================================ */
.section {
    display: none;
    margin-bottom: 3rem;
    padding: 2.2rem;
    background: rgba(18, 18, 35, 0.85);
    border: 1px solid rgba(255, 255, 0, 0.2);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(8px);
    animation: sectionSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-yellow), transparent);
    animation: sectionGlow 3s ease-in-out infinite;
}

@keyframes sectionGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.section.visible {
    display: block;
}

@keyframes sectionSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section h2 {
    font-size: 2rem;
    color: var(--neon-yellow);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--neon-orange);
    text-shadow: 0 0 10px var(--neon-yellow);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 1px;
}

.section h2 i {
    font-size: 1.8rem;
    color: var(--neon-orange);
}

.section h3 {
    color: var(--neon-orange);
    margin: 1.8rem 0 1rem;
    text-shadow: 0 0 5px var(--neon-orange);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section h4 {
    color: var(--neon-purple);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================ */
/* GRIDS - ROZBUDOWANE */
/* ============================================ */
.skills-grid,
.frameworks-grid,
.monitoring-tools-grid,
.certifications-grid,
.tools-grid,
.owasp-tools-grid,
.qualifications-grid {
    display: grid;
    gap: 1.8rem;
    margin: 1.8rem 0;
}

.skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.frameworks-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.monitoring-tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.owasp-tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.qualifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cards */
.skill-card,
.framework-card,
.monitoring-tool,
.cert-card,
.tool-card,
.owasp-tool,
.qualification-card {
    padding: 1.6rem;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.03) 0%, rgba(255, 136, 0, 0.03) 100%);
    border: 1px solid rgba(255, 136, 0, 0.3);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.skill-card::before,
.framework-card::before,
.monitoring-tool::before,
.cert-card::before,
.tool-card::before,
.owasp-tool::before,
.qualification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.skill-card:hover::before,
.framework-card:hover::before,
.monitoring-tool:hover::before,
.cert-card:hover::before,
.tool-card:hover::before,
.owasp-tool:hover::before,
.qualification-card:hover::before {
    left: 100%;
}

.skill-card:hover,
.framework-card:hover,
.monitoring-tool:hover,
.cert-card:hover,
.tool-card:hover,
.owasp-tool:hover,
.qualification-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.08) 0%, rgba(255, 136, 0, 0.08) 100%);
    border-color: var(--neon-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.skill-card h3,
.framework-card h3,
.tool-card h3 {
    color: var(--neon-yellow);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
}

.skill-card p,
.framework-card p,
.monitoring-tool p,
.cert-card p,
.tool-card p,
.owasp-tool p,
.qualification-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.qual-icon {
    font-size: 2.2rem;
    color: var(--neon-orange);
    margin-bottom: 0.8rem;
    display: inline-block;
}

.qualification-card h4 {
    color: var(--neon-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.framework-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.framework-card li {
    color: var(--neon-orange);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.framework-card li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--neon-yellow);
    font-size: 0.8rem;
}

.monitoring-tool {
    border-left: 5px solid var(--neon-orange);
}

.monitoring-tool h4 {
    color: var(--neon-orange);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tool-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid var(--neon-yellow);
    color: var(--neon-yellow);
    font-size: 0.7rem;
    border-radius: var(--border-radius-sm);
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.owasp-tool {
    background: rgba(0, 255, 0, 0.03);
    border-color: var(--pip-green);
    text-align: center;
}

.owasp-tool h4 {
    color: var(--pip-green);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.owasp-tool a,
.tool-card a,
.cert-card a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--pip-green);
    color: var(--pip-green);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.85rem;
    margin-top: 0.8rem;
}

.owasp-tool a i,
.tool-card a i,
.cert-card a i {
    margin-right: 0.3rem;
}

.owasp-tool a:hover,
.tool-card a:hover,
.cert-card a:hover {
    background: rgba(0, 255, 0, 0.25);
    box-shadow: var(--glow-green);
    transform: scale(1.02);
}

.cert-card {
    text-align: center;
}

.cert-card h3 {
    color: var(--neon-purple);
    margin-bottom: 0.5rem;
    justify-content: center;
}

/* ============================================ */
/* TIMELINE - ROZBUDOWANA */
/* ============================================ */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--neon-yellow) 0%, 
        var(--neon-orange) 33%, 
        var(--neon-purple) 66%, 
        var(--neon-yellow) 100%);
    box-shadow: 0 0 15px var(--neon-yellow);
    border-radius: 3px;
}

.timeline-item {
    margin-bottom: 2.5rem;
    position: relative;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--neon-yellow);
    border: 3px solid var(--dark);
    border-radius: 50%;
    top: 0;
    box-shadow: 0 0 15px var(--neon-yellow);
    z-index: 1;
}

.timeline-item:nth-child(odd)::before {
    right: -61px;
}

.timeline-item:nth-child(even)::before {
    left: -61px;
}

.timeline-date {
    color: var(--neon-orange);
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(255, 136, 0, 0.15);
    border-radius: var(--border-radius-sm);
}

.timeline-title {
    color: var(--neon-yellow);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.timeline-desc {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem;
    border-radius: var(--border-radius-sm);
}

/* ============================================ */
/* QUIZ - ROZBUDOWANY */
/* ============================================ */
.quiz-container {
    margin: 1.5rem 0;
}

.quiz-question {
    padding: 1.5rem;
    background: rgba(255, 255, 0, 0.05);
    border: 1px solid var(--neon-orange);
    border-radius: var(--border-radius-md);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.quiz-question:hover {
    border-color: var(--neon-yellow);
    box-shadow: var(--glow-yellow);
}

.quiz-question h4 {
    color: var(--neon-yellow);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.quiz-option {
    padding: 0.9rem;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: var(--border-radius-sm);
    color: var(--light);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    font-size: 0.9rem;
}

.quiz-option:hover {
    background: rgba(255, 255, 0, 0.15);
    border-color: var(--neon-yellow);
    transform: scale(1.02);
    box-shadow: var(--glow-yellow);
}

.quiz-feedback {
    padding: 0.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: bold;
    display: none;
    margin-top: 0.8rem;
}

.quiz-feedback.correct {
    display: block;
    background: rgba(85, 255, 85, 0.15);
    border: 1px solid var(--low);
    color: var(--low);
}

.quiz-feedback.incorrect {
    display: block;
    background: rgba(255, 85, 85, 0.15);
    border: 1px solid var(--critical);
    color: var(--critical);
}

.final-score {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--pip-green);
    text-align: center;
    border-radius: var(--border-radius-md);
    font-weight: bold;
    animation: scorePulse 1s ease;
}

@keyframes scorePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* ============================================ */
/* TERMINAL - ROZBUDOWANY */
/* ============================================ */
.terminal {
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--pip-green);
    border-radius: var(--border-radius-md);
    margin: 1.5rem 0;
    overflow: hidden;
    box-shadow: var(--glow-green);
}

.terminal-header {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.8rem 1rem;
    display: flex;
    gap: 0.6rem;
    border-bottom: 1px solid var(--pip-green);
}

.terminal-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.terminal-btn.red {
    background: #ff5555;
    box-shadow: 0 0 5px #ff5555;
}

.terminal-btn.yellow {
    background: var(--neon-yellow);
    box-shadow: 0 0 5px var(--neon-yellow);
}

.terminal-btn.green {
    background: var(--pip-green);
    box-shadow: 0 0 5px var(--pip-green);
}

.terminal-btn:hover {
    transform: scale(1.1);
}

.terminal-body {
    padding: 1.2rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--pip-green);
    max-height: 350px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.5);
}

.terminal-line {
    margin-bottom: 0.5rem;
    word-break: break-word;
    white-space: pre-wrap;
}

.terminal-prompt {
    color: var(--neon-yellow);
    font-weight: bold;
    margin-right: 0.5rem;
}

.terminal-input {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-top: 1px solid var(--pip-green);
    background: rgba(0, 0, 0, 0.95);
}

#terminal-command {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--pip-green);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    outline: none;
    margin-left: 0.5rem;
}

#terminal-command::placeholder {
    color: rgba(0, 255, 0, 0.4);
}

/* ============================================ */
/* CONTACT - ROZBUDOWANY */
/* ============================================ */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-item {
    padding: 1.6rem;
    background: rgba(221, 0, 255, 0.05);
    border: 1px solid var(--neon-purple);
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.contact-item:hover {
    background: rgba(221, 0, 255, 0.12);
    border-color: var(--neon-yellow);
    transform: translateY(-5px);
    box-shadow: var(--glow-purple);
}

.contact-item i {
    font-size: 2.2rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.contact-item:hover i {
    color: var(--neon-yellow);
    transform: scale(1.1);
}

.contact-item a {
    display: block;
    color: var(--neon-yellow);
    text-decoration: none;
    word-break: break-all;
    font-size: 0.95rem;
}

.contact-item a:hover {
    text-decoration: underline;
    text-shadow: var(--glow-yellow);
}

/* ============================================ */
/* RECRUITMENT PANEL - ROZBUDOWANY */
/* ============================================ */
.recruitment-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: linear-gradient(145deg, #0a0a1a 0%, #151530 50%, #0a0a1a 100%);
    border: 3px solid var(--critical);
    border-radius: var(--border-radius-lg);
    z-index: var(--z-recruitment);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255, 85, 85, 0.4);
}

.recruitment-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.recruitment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 85, 85, 0.2);
    border-bottom: 2px solid var(--critical);
}

.recruitment-header h2 {
    color: var(--critical);
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recruitment-header button {
    background: none;
    border: none;
    color: var(--critical);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.recruitment-header button:hover {
    background: rgba(255, 85, 85, 0.3);
    transform: rotate(90deg);
}

.recruitment-content {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(85vh - 65px);
}

.recruiter-questions h3 {
    color: var(--neon-yellow);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning {
    background: rgba(255, 85, 85, 0.15);
    border-left: 4px solid var(--critical);
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
}

.question-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-orange);
    border-radius: var(--border-radius-md);
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: all var(--transition-fast);
}

.question-item:hover {
    border-color: var(--neon-yellow);
    box-shadow: var(--glow-yellow);
}

.question-item .question {
    color: var(--neon-yellow);
    font-weight: bold;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.question-item .correct-answer {
    color: var(--low);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding: 0.6rem;
    background: rgba(85, 255, 85, 0.1);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--low);
}

.question-item .trick-note {
    color: var(--neon-orange);
    font-size: 0.85rem;
    padding: 0.6rem;
    background: rgba(255, 136, 0, 0.1);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--neon-orange);
}

.verification-code {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: var(--border-radius-md);
    text-align: center;
}

.verification-code h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#verificationCode {
    display: inline-block;
    background: var(--dark);
    padding: 0.6rem 1.2rem;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    border: 1px solid var(--primary);
    margin: 0.8rem 0;
    border-radius: var(--border-radius-sm);
    color: var(--primary);
}

#regenerateCode {
    background: rgba(0, 255, 255, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#regenerateCode:hover {
    background: rgba(0, 255, 255, 0.3);
    box-shadow: var(--glow-green);
    transform: scale(1.02);
}

/* ============================================ */
/* FOOTER - ROZBUDOWANY */
/* ============================================ */
.footer {
    background: linear-gradient(135deg, rgba(18, 18, 35, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
    border-top: 3px solid var(--neon-yellow);
    padding: 2.5rem;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-column h3 {
    color: var(--neon-yellow);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-yellow), transparent);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--neon-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.footer-links a i {
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--neon-yellow);
    transform: translateX(8px);
    text-shadow: var(--glow-yellow);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 0, 0.2);
    padding-top: 1.8rem;
    margin-top: 1.8rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid var(--neon-yellow);
    border-radius: 50%;
    color: var(--neon-yellow);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: rgba(255, 255, 0, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--glow-yellow);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ============================================ */
/* MOBILE RESPONSIVE - ROZBUDOWANE */
/* ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 1.5rem;
    }
    
    .header h1 {
        font-size: 3rem;
    }
    
    .timeline-item {
        width: 47%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .nav {
        gap: 0.6rem;
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .nav-item {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        flex: 1 1 calc(50% - 0.3rem);
        justify-content: center;
    }
    
    .nav-item i {
        display: none;
    }
    
    .section {
        padding: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .section h3 {
        font-size: 1.1rem;
    }
    
    .skills-grid,
    .frameworks-grid,
    .monitoring-tools-grid,
    .certifications-grid,
    .tools-grid,
    .owasp-tools-grid,
    .qualifications-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-item {
        width: auto;
        margin-left: 60px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-item::before {
        left: -45px !important;
        width: 16px;
        height: 16px;
    }
    
    .timeline-item:nth-child(odd)::before {
        right: auto;
        left: -45px;
    }
    
    .timeline-date {
        font-size: 0.85rem;
    }
    
    .timeline-title {
        font-size: 1rem;
    }
    
    .timeline-desc {
        font-size: 0.85rem;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .quiz-option {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .pip-boy-trigger {
        width: 50px;
        height: 50px;
        right: 12px;
    }
    
    .trigger-triangle {
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 43px solid var(--neon-yellow);
    }
    
    .pip-boy-inventory {
        width: 100%;
        right: -100%;
        padding: 1rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .terminal-body {
        font-size: 0.75rem;
        max-height: 250px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recruitment-panel {
        width: 95%;
        max-height: 90vh;
    }
    
    .recruitment-header h2 {
        font-size: 0.9rem;
    }
    
    .question-item .question {
        font-size: 0.9rem;
    }
    
    .question-item .correct-answer,
    .question-item .trick-note {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .status-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .nav-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .section {
        padding: 1rem;
    }
    
    .section h2 {
        font-size: 1.2rem;
    }
    
    .section p {
        font-size: 0.85rem;
    }
    
    .timeline-item {
        margin-left: 50px !important;
    }
    
    .timeline-item::before {
        left: -38px !important;
        width: 12px;
        height: 12px;
    }
    
    .timeline-date {
        font-size: 0.75rem;
    }
    
    .timeline-title {
        font-size: 0.9rem;
    }
    
    .timeline-desc {
        font-size: 0.8rem;
    }
    
    .quiz-question {
        padding: 1rem;
    }
    
    .quiz-question h4 {
        font-size: 0.9rem;
    }
    
    .inventory-title {
        font-size: 1.1rem;
    }
    
    .inventory-tab {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .player-controls button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ============================================ */
/* ANIMATIONS - ROZBUDOWANE */
/* ============================================ */
@keyframes blinkCursor {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(2px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 5px currentColor;
    }
    50% {
        text-shadow: 0 0 20px currentColor;
    }
}

/* Utility Classes */
.text-glow-yellow {
    text-shadow: 0 0 10px var(--neon-yellow);
    animation: glowPulse 2s ease-in-out infinite;
}

.text-glow-orange {
    text-shadow: 0 0 10px var(--neon-orange);
    animation: glowPulse 2s ease-in-out infinite;
}

.text-glow-purple {
    text-shadow: 0 0 10px var(--neon-purple);
    animation: glowPulse 2s ease-in-out infinite;
}

.text-glow-green {
    text-shadow: 0 0 10px var(--pip-green);
    animation: glowPulse 2s ease-in-out infinite;
}

.border-glow-yellow {
    box-shadow: 0 0 10px var(--neon-yellow);
    transition: all var(--transition-normal);
}

.border-glow-yellow:hover {
    box-shadow: 0 0 25px var(--neon-yellow);
}

.border-glow-orange {
    box-shadow: 0 0 10px var(--neon-orange);
}

.border-glow-purple {
    box-shadow: 0 0 10px var(--neon-purple);
}

.border-glow-green {
    box-shadow: 0 0 10px var(--pip-green);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 0, 0.2);
    border-top-color: var(--neon-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Tooltip */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.6rem;
    background: var(--dark);
    color: var(--neon-yellow);
    font-size: 0.7rem;
    white-space: nowrap;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--neon-yellow);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
}

.tooltip:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}
.cert-badge {
    display: inline-block;
    background: rgba(0, 255, 0, 0.15);
    color: var(--pip-green);
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    margin-top: 0.8rem;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.cert-card h3 i {
    font-size: 0.9rem;
    margin-right: 0.5rem;
    color: var(--neon-orange);
}
