:root {
    --primary: #00ff41;
    --secondary: #ff0055;
    --accent: #9d00ff;
    --accent-cyan: #00d4ff;
    --bg-primary: #0a0a0f;
    --bg-secondary: #0d0d15;
    --bg-tertiary: #151520;
    --bg-card: rgba(20, 20, 30, 0.8);
    --text-primary: #e0e0e0;
    --text-secondary: #00ff41;
    --text-muted: rgba(255, 255, 255, 0.5);
    --glow: rgba(0, 255, 65, 0.3);
    --glow-strong: rgba(0, 255, 65, 0.6);
    --glow-purple: rgba(157, 0, 255, 0.3);
    --glow-cyan: rgba(0, 212, 255, 0.3);
    --border-color: rgba(0, 255, 65, 0.2);
    --sidebar-width: 260px;
    --topbar-height: 50px;
    --dock-width: 70px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

body.ai-mode {
    --primary: #00ff41;
    --secondary: #00ff41;
    --accent: #00ff41;
    --glow: rgba(0, 255, 65, 0.5);
}

body.human-mode .custom-cursor {
    opacity: 1;
}

body:not(.human-mode) .custom-cursor {
    opacity: 0;
}

body:not(.cursor-enabled) {
    cursor: auto !important;
}

body:not(.cursor-enabled) .custom-cursor {
    display: none !important;
}

body:not(.cursor-enabled) .cursor-icon {
    display: none !important;
}

body:not(.cursor-enabled) .cursor-trail {
    display: none !important;
}

#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.12;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 3px
    );
    animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    animation: cursorPulse 1s ease-in-out infinite;
}

.cursor-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    transition: all 0.15s ease;
}

.custom-cursor.hover .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    opacity: 0.8;
}

.custom-cursor.click .cursor-ring {
    width: 30px;
    height: 30px;
    border-color: var(--secondary);
    opacity: 1;
}

@keyframes cursorPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.cursor-trail-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.3s ease;
    animation: trailFade 0.5s ease-out forwards;
}

@keyframes trailFade {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

.cursor-icon {
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    filter: drop-shadow(0 0 10px var(--primary));
}

.cursor-icon svg {
    width: 32px;
    height: 32px;
}

.cursor-icon.active {
    opacity: 1;
    animation: iconBounce 0.5s ease;
}

.cursor-cat.active svg {
    fill: var(--accent);
    filter: drop-shadow(0 0 15px var(--accent));
}

.cursor-rat.active svg {
    fill: var(--accent-cyan);
    filter: drop-shadow(0 0 15px var(--accent-cyan));
}

.cursor-pencil.active svg {
    fill: var(--secondary);
    filter: drop-shadow(0 0 15px var(--secondary));
}

@keyframes iconBounce {
    0% { transform: translate(-50%, -50%) scale(0); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.cursor-icon:hover {
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
}

.cyber-status-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    background: rgba(0, 10, 0, 0.6);
    border: 1px solid var(--primary);
    border-radius: 4px;
    box-shadow: 
        0 0 10px rgba(0, 255, 65, 0.2),
        inset 0 0 20px rgba(0, 255, 65, 0.05);
    position: relative;
    overflow: hidden;
}

.cyber-status-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cyber-profile {
    position: relative;
}

.cyber-profile-border {
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    padding: 2px;
    box-shadow: 
        0 0 8px var(--primary),
        0 0 16px rgba(0, 255, 65, 0.3);
    position: relative;
    overflow: hidden;
}

.cyber-profile-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(0, 255, 65, 0.1) 50%,
        transparent 60%
    );
    animation: shimmer 3s ease-in-out infinite;
}

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

.cyber-profile-inner {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.cyber-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: saturate(0.5) brightness(1.2);
}

.cyber-avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 65, 0.03) 2px,
        rgba(0, 255, 65, 0.03) 4px
    );
    pointer-events: none;
}

.cyber-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scanMove 2s ease-in-out infinite;
}

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

.cyber-indicator {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
    animation: indicatorPulse 1.5s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.cyber-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cyber-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 11px;
    color: var(--primary);
    text-shadow: 
        0 0 5px var(--primary),
        0 0 10px rgba(0, 255, 65, 0.5);
    letter-spacing: 1px;
    white-space: nowrap;
}

.cyber-lightning {
    width: 12px;
    height: 12px;
    fill: var(--primary);
    filter: drop-shadow(0 0 3px var(--primary));
    animation: lightningFlicker 3s ease-in-out infinite;
}

@keyframes lightningFlicker {
    0%, 90%, 100% { opacity: 1; }
    92%, 94% { opacity: 0.6; }
    93%, 95% { opacity: 1; }
    96% { opacity: 0.4; }
    97% { opacity: 1; }
}

.cyber-os {
    font-weight: 600;
}

.cyber-subtitle {
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 9px;
    color: rgba(0, 255, 65, 0.7);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 18px;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-height);
    background: linear-gradient(180deg, var(--bg-secondary), rgba(10, 10, 15, 0.95));
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.os-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-bracket {
    color: var(--accent);
}

.logo-text {
    color: var(--text-primary);
    margin: 0 4px;
}

.logo-space {
    width: 8px;
}

.logo-os {
    color: var(--primary);
    text-shadow: 0 0 10px var(--glow);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.win-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: var(--transition);
}

.win-btn:hover {
    color: var(--bg-primary);
}

.win-btn.minimize { background: #ffbd2e; }
.win-btn.maximize { background: #28ca42; }
.win-btn.close { background: #ff5f57; }

.top-bar-center {
    flex: 1;
    max-width: 400px;
    margin: 0 40px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 16px;
    gap: 10px;
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--glow);
}

.search-icon {
    color: var(--text-muted);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 12px;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-icons {
    display: flex;
    gap: 12px;
}

.status-icon {
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.status-icon:hover {
    opacity: 1;
    text-shadow: 0 0 10px var(--primary);
}

.top-clock {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--primary);
    text-shadow: 0 0 10px var(--glow);
}

.top-date {
    font-size: 11px;
    color: var(--text-muted);
}

.voice-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.voice-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--glow);
}

.voice-icon {
    font-size: 14px;
}

.mode-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 1px;
}

.mode-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.mode-text {
    color: var(--text-primary);
}

.hamburger {
    display: none;
    position: fixed;
    top: 70px;
    left: 20px;
    z-index: 101;
    background: var(--bg-secondary);
    border: 1px solid var(--primary);
    padding: 12px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    transition: var(--transition);
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.dock {
    position: fixed;
    left: 0;
    top: var(--topbar-height);
    bottom: 60px;
    width: var(--dock-width);
    background: linear-gradient(90deg, var(--bg-secondary), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 8px;
    z-index: 90;
    border-right: 1px solid var(--border-color);
}

.dock-item {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.dock-item:hover {
    transform: scale(1.15) translateX(5px);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow);
}

.dock-item:hover .dock-label {
    opacity: 1;
    transform: translateX(10px);
}

.dock-item.active {
    background: var(--primary);
    border-color: var(--primary);
}

.dock-item.active .dock-icon {
    color: var(--bg-primary);
}

.dock-icon {
    font-size: 20px;
    color: var(--primary);
}

.dock-label {
    position: absolute;
    left: 60px;
    background: var(--bg-secondary);
    border: 1px solid var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.dock-separator {
    width: 30px;
    height: 1px;
    background: var(--border-color);
    margin: 10px 0;
}

.sidebar {
    position: fixed;
    left: var(--dock-width);
    top: var(--topbar-height);
    width: var(--sidebar-width);
    height: calc(100vh - var(--topbar-height) - 60px);
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    z-index: 80;
    transition: var(--transition);
    overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 24px;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text .accent {
    color: var(--primary);
    font-size: 12px;
}

.nav-menu {
    flex: 1;
    padding: 15px 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 255, 65, 0.1), transparent);
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active {
    border-left-color: var(--primary);
    text-shadow: 0 0 10px var(--glow);
}

.nav-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.nav-text {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.mode-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mode-label {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.toggle-btn {
    display: flex;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.toggle-option {
    padding: 6px 14px;
    font-size: 10px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.toggle-option.active {
    background: var(--primary);
    color: var(--bg-primary);
}

.system-status {
    font-size: 10px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-dot.online {
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: blink 1s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--primary); }
    50% { opacity: 0.7; text-shadow: 0 0 20px var(--primary); }
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 79;
}

.main-content {
    margin-left: calc(var(--dock-width) + var(--sidebar-width));
    margin-top: var(--topbar-height);
    padding: 20px;
    padding-bottom: 120px;
    min-height: calc(100vh - var(--topbar-height));
}

.section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.window-frame {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--glow);
}

.window-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(180deg, var(--bg-tertiary), var(--bg-secondary));
    border-bottom: 1px solid var(--border-color);
}

.window-title-icon {
    font-size: 16px;
    color: var(--primary);
}

.window-title {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex: 1;
}

.window-controls-mini {
    display: flex;
    gap: 6px;
}

.win-mini-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
}

.win-mini-btn:hover {
    color: var(--bg-primary);
}

.win-mini-btn.minimize { background: #ffbd2e; }
.win-mini-btn.maximize { background: #28ca42; }
.win-mini-btn.close { background: #ff5f57; }

.window-content {
    padding: 25px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dashboard-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.dashboard-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--glow);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    color: var(--primary);
    font-size: 14px;
}

.card-title {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-badge {
    margin-left: auto;
    padding: 3px 8px;
    background: var(--primary);
    color: var(--bg-primary);
    font-size: 8px;
    border-radius: 3px;
    animation: pulse 1.5s ease-in-out infinite;
}

.clock-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.digital-clock {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow);
    letter-spacing: 3px;
}

.clock-separator {
    animation: blink 1s step-end infinite;
}

.clock-ampm {
    font-size: 12px;
    margin-left: 8px;
    opacity: 0.7;
}

.analog-clock {
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px var(--glow);
}

.clock-face {
    width: 100%;
    height: 100%;
    position: relative;
}

.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background: var(--primary);
    border-radius: 2px;
}

.hour-hand {
    width: 3px;
    height: 25px;
    margin-left: -1.5px;
}

.minute-hand {
    width: 2px;
    height: 35px;
    margin-left: -1px;
}

.second-hand {
    width: 1px;
    height: 40px;
    margin-left: -0.5px;
    background: var(--secondary);
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px var(--primary);
}

.date-display {
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.resource-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.resource-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.resource-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.resource-label {
    color: rgba(255, 255, 255, 0.7);
}

.resource-value {
    color: var(--primary);
    font-weight: 600;
}

.resource-bar {
    height: 6px;
    background: var(--bg-primary);
    border-radius: 3px;
    overflow: hidden;
}

.resource-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    width: 0%;
    transition: width 1s ease-out;
    position: relative;
}

.resource-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-box {
    text-align: center;
    padding: 15px;
    background: var(--bg-primary);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.stat-box .stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 15px var(--glow);
}

.stat-box .stat-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terminal-logs {
    height: 180px;
    overflow-y: auto;
    font-size: 11px;
    padding: 10px;
    background: var(--bg-primary);
    border-radius: 4px;
}

.terminal-logs::-webkit-scrollbar {
    width: 4px;
}

.terminal-logs::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

.terminal-logs::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.log-line {
    color: var(--primary);
    margin-bottom: 6px;
    opacity: 0;
    animation: fadeIn 0.3s ease-out forwards;
}

.log-line.system {
    color: var(--accent);
}

.log-line.error {
    color: var(--secondary);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.terminal-content {
    padding: 0;
}

.terminal {
    background: var(--bg-primary);
    min-height: 400px;
    padding: 20px;
    font-family: 'Fira Code', monospace;
}

.terminal-output {
    margin-bottom: 20px;
}

.terminal-line {
    font-size: 13px;
    line-height: 1.8;
    color: var(--primary);
}

.terminal-line.system {
    color: var(--accent);
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-prompt {
    color: var(--accent);
    font-size: 13px;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--primary);
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--primary);
    animation: cursorBlink 0.8s step-end infinite;
}

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

.terminal-commands {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    font-size: 10px;
    color: var(--text-muted);
}

.cmd-hint {
    color: var(--accent);
}

.terminal-titlebar {
    background: linear-gradient(180deg, #1a0a20, #0d0510);
}

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

.skill-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.skill-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.skill-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--glow);
    transform: translateY(-3px);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.skill-icon {
    color: var(--primary);
}

.skill-name {
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}

.skill-level {
    font-size: 9px;
    padding: 3px 8px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 3px;
    color: var(--primary);
}

.skill-bar-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.skill-bar {
    flex: 1;
    height: 5px;
    background: var(--bg-primary);
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: width 1.5s ease-out;
}

.skill-percentage {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: var(--primary);
    min-width: 40px;
    text-align: right;
}

.music-player-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 25px;
}

.music-player {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.music-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.player-visualizer {
    display: flex;
    justify-content: center;
    gap: 4px;
    height: 50px;
    margin-bottom: 20px;
}

.visualizer-bar {
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
    animation: visualize 0.5s ease-in-out infinite alternate;
}

.visualizer-bar:nth-child(1) { animation-delay: 0s; }
.visualizer-bar:nth-child(2) { animation-delay: 0.1s; }
.visualizer-bar:nth-child(3) { animation-delay: 0.2s; }
.visualizer-bar:nth-child(4) { animation-delay: 0.3s; }
.visualizer-bar:nth-child(5) { animation-delay: 0.4s; }
.visualizer-bar:nth-child(6) { animation-delay: 0.5s; }
.visualizer-bar:nth-child(7) { animation-delay: 0.4s; }
.visualizer-bar:nth-child(8) { animation-delay: 0.3s; }
.visualizer-bar:nth-child(9) { animation-delay: 0.2s; }
.visualizer-bar:nth-child(10) { animation-delay: 0.1s; }
.visualizer-bar:nth-child(11) { animation-delay: 0.2s; }
.visualizer-bar:nth-child(12) { animation-delay: 0.3s; }

@keyframes visualize {
    0% { height: 10px; }
    100% { height: 45px; }
}

.music-player:not(.playing) .visualizer-bar {
    animation: none;
    height: 10px;
}

.player-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.album-art {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-primary));
    border-radius: 8px;
    border: 2px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px var(--glow);
}

.album-art.playing {
    animation: albumPulse 2s ease-in-out infinite;
}

@keyframes albumPulse {
    0%, 100% { box-shadow: 0 0 20px var(--glow); }
    50% { box-shadow: 0 0 40px var(--glow-strong); }
}

.album-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0.2;
}

.album-icon {
    font-size: 32px;
    color: var(--primary);
}

.track-info {
    flex: 1;
}

.track-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.track-artist {
    font-size: 12px;
    color: var(--text-muted);
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.time-current,
.time-total {
    font-size: 11px;
    color: var(--text-muted);
    min-width: 35px;
}

.progress-bar {
    flex: 1;
    height: 5px;
    background: var(--bg-primary);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.control-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    color: var(--primary);
    background: rgba(0, 255, 65, 0.1);
}

.play-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-primary);
    font-size: 20px;
    box-shadow: 0 0 15px var(--glow);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--glow-strong);
}

.play-btn .pause-icon {
    display: none;
}

.play-btn.playing .play-icon {
    display: none;
}

.play-btn.playing .pause-icon {
    display: inline;
}

.control-btn.active {
    color: var(--primary);
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 12px;
}

.volume-icon {
    color: var(--primary);
    cursor: pointer;
    font-size: 14px;
}

.volume-slider {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-primary);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px var(--primary);
}

.volume-value {
    font-size: 10px;
    color: var(--text-muted);
    min-width: 30px;
}

.playlist {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.playlist-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--bg-primary);
    font-size: 12px;
    letter-spacing: 1px;
}

.playlist-icon {
    color: var(--primary);
}

.playlist-count {
    margin-left: auto;
    font-size: 10px;
    color: var(--text-muted);
}

.playlist-tracks {
    max-height: 350px;
    overflow-y: auto;
}

.playlist-tracks::-webkit-scrollbar {
    width: 4px;
}

.playlist-tracks::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.playlist-tracks::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.playlist-track {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.playlist-track:hover {
    background: rgba(0, 255, 65, 0.05);
}

.playlist-track.active {
    background: rgba(0, 255, 65, 0.1);
    border-left: 3px solid var(--primary);
}

.track-number {
    font-size: 11px;
    color: var(--text-muted);
    min-width: 18px;
}

.playlist-track.active .track-number {
    color: var(--primary);
}

.playlist-track-info {
    flex: 1;
}

.playlist-track-title {
    font-size: 12px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.playlist-track-artist {
    font-size: 10px;
    color: var(--text-muted);
}

.track-duration {
    font-size: 10px;
    color: var(--text-muted);
}

.blog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.blog-search {
    display: flex;
    flex: 1;
    max-width: 300px;
}

.blog-search input {
    flex: 1;
    padding: 10px 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px 0 0 6px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 12px;
    outline: none;
}

.blog-search input:focus {
    border-color: var(--primary);
}

.search-btn {
    padding: 10px 15px;
    background: var(--primary);
    border: none;
    border-radius: 0 6px 6px 0;
    color: var(--bg-primary);
    cursor: pointer;
}

.blog-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-stat {
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.blog-stat .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--primary);
}

.blog-stat .stat-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-left: 8px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.blog-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--glow);
    transform: translateY(-3px);
}

.blog-card-header {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-category {
    padding: 4px 10px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 4px;
    font-size: 9px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date {
    font-size: 10px;
    color: var(--text-muted);
}

.blog-card-body {
    padding: 15px;
}

.blog-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.blog-excerpt {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card-footer {
    padding: 12px 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-actions {
    display: flex;
    gap: 10px;
}

.blog-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.blog-btn.edit {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.blog-btn.edit:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.blog-btn.delete {
    background: rgba(255, 0, 85, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(255, 0, 85, 0.3);
}

.blog-btn.delete:hover {
    background: rgba(255, 0, 85, 0.2);
}

.blog-btn.read {
    background: var(--primary);
    color: var(--bg-primary);
}

.blog-btn.read:hover {
    box-shadow: 0 0 15px var(--glow);
}

.blog-likes {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
}

.blog-likes.liked {
    color: var(--secondary);
}

.blog-likes-icon {
    cursor: pointer;
    transition: var(--transition);
}

.blog-likes-icon:hover {
    transform: scale(1.2);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--primary);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 50px var(--glow);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 16px;
    color: var(--primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--secondary);
}

.modal-body {
    padding: 20px;
}

.modal-body .form-group {
    margin-bottom: 15px;
}

.modal-body .form-group label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-body .form-group input,
.modal-body .form-group select,
.modal-body .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.modal-body .form-group input:focus,
.modal-body .form-group select:focus,
.modal-body .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--glow);
}

.modal-body .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-primary);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    box-shadow: 0 0 20px var(--glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.file-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.file-stat {
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.file-stat .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--primary);
}

.file-stat .stat-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-left: 8px;
}

.drop-zone {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: var(--primary);
    background: rgba(0, 255, 65, 0.05);
}

.drop-zone.dragover {
    box-shadow: 0 0 30px var(--glow);
}

.drop-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.drop-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.drop-content p {
    font-size: 14px;
    color: var(--text-primary);
}

.drop-or {
    font-size: 11px;
    color: var(--text-muted);
}

.upload-btn {
    cursor: pointer;
}

.drop-progress {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.drop-progress.active {
    display: flex;
}

.progress-bar-upload {
    width: 80%;
    max-width: 300px;
    height: 6px;
    background: var(--bg-primary);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill-upload {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: var(--text-muted);
}

.file-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.file-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.file-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--glow);
}

.file-icon {
    font-size: 28px;
}

.file-info {
    flex: 1;
}

.file-name {
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 4px;
    word-break: break-all;
}

.file-meta {
    font-size: 10px;
    color: var(--text-muted);
}

.file-actions {
    display: flex;
    gap: 8px;
}

.file-btn {
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.file-btn.download {
    background: var(--primary);
    color: var(--bg-primary);
}

.file-btn.download:hover {
    box-shadow: 0 0 10px var(--glow);
}

.file-btn.preview {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.file-btn.preview:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.file-btn.delete {
    background: rgba(255, 0, 85, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(255, 0, 85, 0.3);
}

.file-btn.delete:hover {
    background: rgba(255, 0, 85, 0.2);
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about-image {
    position: relative;
}

.image-frame {
    width: 180px;
    height: 180px;
    border: 3px solid var(--primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px var(--glow);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-primary));
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-icon {
    font-size: 50px;
    color: var(--primary);
    opacity: 0.5;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--glow), transparent 70%);
    animation: imageGlow 3s ease-in-out infinite;
}

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

.image-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 255, 65, 0.05) 50%
    );
    background-size: 100% 4px;
    animation: scan 8s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-header {
    margin-bottom: 20px;
}

.about-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.about-name.glitch-text {
    position: relative;
}

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

.about-name.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--secondary);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.about-name.glitch-text::after {
    left: -2px;
    text-shadow: 2px 0 var(--accent);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(30px, 9999px, 10px, 0); }
    5% { clip: rect(70px, 9999px, 95px, 0); }
    10% { clip: rect(40px, 9999px, 60px, 0); }
    15% { clip: rect(80px, 9999px, 100px, 0); }
    20% { clip: rect(20px, 9999px, 30px, 0); }
    25% { clip: rect(60px, 9999px, 70px, 0); }
    30% { clip: rect(10px, 9999px, 50px, 0); }
    35% { clip: rect(90px, 9999px, 110px, 0); }
    40% { clip: rect(50px, 9999px, 80px, 0); }
    45% { clip: rect(25px, 9999px, 45px, 0); }
    50% { clip: rect(75px, 9999px, 105px, 0); }
    55% { clip: rect(35px, 9999px, 65px, 0); }
    60% { clip: rect(85px, 9999px, 115px, 0); }
    65% { clip: rect(15px, 9999px, 35px, 0); }
    70% { clip: rect(55px, 9999px, 75px, 0); }
    75% { clip: rect(5px, 9999px, 25px, 0); }
    80% { clip: rect(95px, 9999px, 120px, 0); }
    85% { clip: rect(45px, 9999px, 85px, 0); }
    90% { clip: rect(65px, 9999px, 90px, 0); }
    95% { clip: rect(20px, 9999px, 40px, 0); }
    100% { clip: rect(80px, 9999px, 100px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(50px, 9999px, 70px, 0); }
    5% { clip: rect(10px, 9999px, 40px, 0); }
    10% { clip: rect(90px, 9999px, 120px, 0); }
    15% { clip: rect(30px, 9999px, 50px, 0); }
    20% { clip: rect(70px, 9999px, 95px, 0); }
    25% { clip: rect(20px, 9999px, 35px, 0); }
    30% { clip: rect(80px, 9999px, 110px, 0); }
    35% { clip: rect(40px, 9999px, 60px, 0); }
    40% { clip: rect(60px, 9999px, 85px, 0); }
    45% { clip: rect(15px, 9999px, 30px, 0); }
    50% { clip: rect(95px, 9999px, 115px, 0); }
    55% { clip: rect(45px, 9999px, 75px, 0); }
    60% { clip: rect(25px, 9999px, 55px, 0); }
    65% { clip: rect(85px, 9999px, 105px, 0); }
    70% { clip: rect(5px, 9999px, 25px, 0); }
    75% { clip: rect(65px, 9999px, 90px, 0); }
    80% { clip: rect(35px, 9999px, 65px, 0); }
    85% { clip: rect(75px, 9999px, 100px, 0); }
    90% { clip: rect(55px, 9999px, 80px, 0); }
    95% { clip: rect(10px, 9999px, 45px, 0); }
    100% { clip: rect(90px, 9999px, 110px, 0); }
}

.about-title {
    font-size: 13px;
    color: var(--primary);
    letter-spacing: 1px;
}

.about-bio {
    margin-bottom: 25px;
}

.typing-bio {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    min-height: 50px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 15px var(--glow);
}

.about-stat .stat-label {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.info-icon {
    color: var(--primary);
}

.info-label {
    color: var(--text-muted);
    min-width: 65px;
}

.info-value {
    color: var(--text-primary);
}

.info-value.available {
    color: var(--primary);
    padding: 3px 10px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 4px;
    font-size: 10px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: var(--transition);
}

.form-input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    border-bottom-color: var(--primary);
}

.form-input:focus + .form-line {
    transform: scaleX(1);
}

.form-textarea {
    resize: none;
    min-height: 100px;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.submit-btn {
    align-self: flex-start;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover {
    color: var(--bg-primary);
}

.submit-btn .btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.submit-btn.loading .btn-content {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: flex;
}

.loading-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.form-message {
    position: absolute;
    bottom: -50px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-size: 12px;
    color: var(--primary);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.error {
    background: rgba(255, 0, 85, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.info-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.channel-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--bg-primary);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 12px;
    transition: var(--transition);
}

.channel-item:hover {
    background: rgba(0, 255, 65, 0.1);
    border-left: 3px solid var(--primary);
}

.channel-icon {
    color: var(--primary);
}

.settings-container {
    max-width: 600px;
}

.settings-group {
    margin-bottom: 30px;
}

.settings-group h3 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.setting-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 10px;
}

.setting-label {
    flex: 1;
    font-size: 12px;
}

.setting-desc {
    font-size: 10px;
    color: var(--text-muted);
    max-width: 200px;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: var(--transition);
}

.toggle-slider::before {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    left: 2px;
    bottom: 2px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
    border-color: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
    background: var(--bg-primary);
}

.setting-item input[type="range"] {
    width: 100px;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--bg-primary);
    border-radius: 2px;
    outline: none;
}

.setting-item input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.setting-value {
    font-size: 11px;
    color: var(--primary);
    min-width: 35px;
}

.floating-music {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 12px 15px;
    width: 280px;
    box-shadow: 0 0 30px var(--glow);
    z-index: 200;
    display: none;
    animation: floatIn 0.3s ease;
}

.floating-music.active {
    display: block;
}

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

.floating-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.floating-icon {
    color: var(--primary);
}

.floating-title {
    flex: 1;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
}

.floating-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.float-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.float-btn:hover {
    color: var(--primary);
}

.float-btn.play {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-progress {
    padding: 0 5px;
}

.float-progress-bar {
    height: 3px;
    background: var(--bg-primary);
    border-radius: 2px;
    cursor: pointer;
}

.float-progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    width: 0%;
}

.voice-assistant {
    position: fixed;
    bottom: 150px;
    right: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--accent);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 30px var(--glow-purple);
    z-index: 200;
}

.voice-assistant.active {
    display: flex;
    animation: voicePulse 1s ease infinite;
}

@keyframes voicePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px var(--glow-purple); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px var(--glow-purple); }
}

.voice-waves {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 25px;
}

.voice-waves span {
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
    animation: wave 0.5s ease-in-out infinite;
}

.voice-waves span:nth-child(1) { animation-delay: 0s; height: 10px; }
.voice-waves span:nth-child(2) { animation-delay: 0.1s; height: 15px; }
.voice-waves span:nth-child(3) { animation-delay: 0.2s; height: 20px; }
.voice-waves span:nth-child(4) { animation-delay: 0.3s; height: 15px; }
.voice-waves span:nth-child(5) { animation-delay: 0.4s; height: 10px; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.voice-text {
    font-size: 8px;
    color: var(--text-muted);
    margin-top: 5px;
}

.bd-news-ticker {
    position: fixed;
    bottom: 50px;
    left: calc(var(--dock-width) + var(--sidebar-width));
    right: 0;
    height: 38px;
    display: flex;
    align-items: center;
    z-index: 50;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 20, 0, 0.85));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.bd-news-ticker .ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    height: 100%;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: inset -2px 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.bd-news-ticker .ticker-label::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 10px solid #ff1493;
}

.bd-news-ticker .ticker-label::before {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.5); }
}

.bd-news-ticker .speaker-icon {
    width: 14px;
    height: 14px;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

.bd-news-ticker .ticker-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
}

.bd-news-ticker .ticker-scroll {
    display: flex;
    align-items: center;
}

.bd-news-ticker .ticker-content {
    display: flex;
    animation: bdTickerScroll 60s linear infinite;
    white-space: nowrap;
}

.bd-news-ticker .ticker-content:hover {
    animation-play-state: paused;
}

.bd-news-ticker .ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.bd-news-ticker .ticker-item::before {
    content: '>';
    position: absolute;
    left: 15px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.bd-news-ticker .ticker-item:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.bd-news-ticker .ticker-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.bd-news-ticker .ticker-separator {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.bd-news-ticker .ticker-loading,
.bd-news-ticker .ticker-error {
    padding: 0 30px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: #888;
    animation: blink 1s infinite;
}

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

@keyframes bdTickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer {
    position: fixed;
    bottom: 0;
    left: calc(var(--dock-width) + var(--sidebar-width));
    right: 0;
    background: linear-gradient(180deg, rgba(13, 13, 21, 0.95), var(--bg-secondary));
    border-top: 1px solid var(--border-color);
    padding: 12px 20px;
    z-index: 60;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-logo .accent {
    color: var(--primary);
}

.footer-copy {
    font-size: 10px;
    color: var(--text-muted);
}

.footer-center {
    display: flex;
    align-items: center;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--text-muted);
}

.footer-version {
    font-size: 10px;
    color: var(--text-muted);
}

@media (max-width: 1200px) {
    .dock {
        display: none;
    }
    
    .sidebar {
        left: 0;
        width: var(--sidebar-width);
    }
    
    .main-content {
        margin-left: var(--sidebar-width);
    }
    
    .bd-news-ticker,
    .footer {
        left: var(--sidebar-width);
    }
}

@media (max-width: 1024px) {
    .music-player-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        display: flex;
        justify-content: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .about-info {
        align-items: center;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 100%;
        --topbar-height: 45px;
    }
    
    .top-bar {
        padding: 0 15px;
    }
    
    .cyber-status-bar {
        padding: 4px 8px;
        gap: 8px;
    }
    
    .cyber-profile-border {
        width: 30px;
        height: 30px;
    }
    
    .cyber-title {
        font-size: 9px;
    }
    
    .cyber-subtitle {
        font-size: 7px;
        letter-spacing: 1px;
    }
    
    .cyber-lightning {
        width: 10px;
        height: 10px;
    }
    
    .top-bar-center {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .sidebar {
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 200;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        margin-top: var(--topbar-height);
        padding: 15px;
    }
    
    .bd-news-ticker,
    .footer {
        left: 0;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .file-list {
        grid-template-columns: 1fr;
    }
    
    .blog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .blog-search {
        max-width: 100%;
    }
    
    .floating-music {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .window-content {
        padding: 15px;
    }
    
    .digital-clock {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        padding: 20px;
    }
    
    .image-frame {
        width: 140px;
        height: 140px;
    }
}

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

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

.protection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.protection-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.protection-message {
    text-align: center;
    color: var(--secondary);
    font-family: 'Orbitron', sans-serif;
}

.protection-message h2 {
    font-size: 24px;
    margin-bottom: 10px;
    animation: blink 1s step-end infinite;
}

.protection-message p {
    font-size: 14px;
    opacity: 0.7;
}

@keyframes protectedGlitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.protection-glitch {
    animation: protectedGlitch 0.3s ease infinite;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(157, 0, 255, 0.1));
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.2), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.badge-icon {
    animation: pulse 2s ease-in-out infinite;
}

.badge-status {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-greeting {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-muted);
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero-name {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    position: relative;
    text-shadow: none;
}

.hero-name.glitch-text {
    position: relative;
}

.hero-name.glitch-text::before,
.hero-name.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 'linear-gradient(135deg, var(--primary), var(--accent-cyan), var(--accent))';
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-name.glitch-text::before {
    left: 3px;
    text-shadow: -3px 0 var(--secondary);
    clip: rect(24px, 9999px, 90px, 0);
    animation: glitchAnim 2.5s infinite linear alternate-reverse;
}

.hero-name.glitch-text::after {
    left: -3px;
    text-shadow: 3px 0 var(--accent);
    clip: rect(85px, 9999px, 140px, 0);
    animation: glitchAnim2 2s infinite linear alternate-reverse;
}

@keyframes glitchAnim {
    0% { clip: rect(30px, 9999px, 10px, 0); }
    5% { clip: rect(70px, 9999px, 95px, 0); }
    10% { clip: rect(40px, 9999px, 60px, 0); }
    15% { clip: rect(80px, 9999px, 100px, 0); }
    20% { clip: rect(20px, 9999px, 30px, 0); }
    25% { clip: rect(60px, 9999px, 70px, 0); }
    30% { clip: rect(10px, 9999px, 50px, 0); }
    35% { clip: rect(90px, 9999px, 110px, 0); }
    40% { clip: rect(50px, 9999px, 80px, 0); }
    45% { clip: rect(25px, 9999px, 45px, 0); }
    50% { clip: rect(75px, 9999px, 105px, 0); }
    55% { clip: rect(35px, 9999px, 65px, 0); }
    60% { clip: rect(85px, 9999px, 115px, 0); }
    65% { clip: rect(15px, 9999px, 35px, 0); }
    70% { clip: rect(55px, 9999px, 75px, 0); }
    75% { clip: rect(5px, 9999px, 25px, 0); }
    80% { clip: rect(95px, 9999px, 120px, 0); }
    85% { clip: rect(45px, 9999px, 85px, 0); }
    90% { clip: rect(65px, 9999px, 90px, 0); }
    95% { clip: rect(20px, 9999px, 40px, 0); }
    100% { clip: rect(80px, 9999px, 100px, 0); }
}

@keyframes glitchAnim2 {
    0% { clip: rect(50px, 9999px, 70px, 0); }
    5% { clip: rect(10px, 9999px, 40px, 0); }
    10% { clip: rect(90px, 9999px, 120px, 0); }
    15% { clip: rect(30px, 9999px, 50px, 0); }
    20% { clip: rect(70px, 9999px, 95px, 0); }
    25% { clip: rect(20px, 9999px, 35px, 0); }
    30% { clip: rect(80px, 9999px, 110px, 0); }
    35% { clip: rect(40px, 9999px, 60px, 0); }
    40% { clip: rect(60px, 9999px, 85px, 0); }
    45% { clip: rect(15px, 9999px, 30px, 0); }
    50% { clip: rect(95px, 9999px, 115px, 0); }
    55% { clip: rect(45px, 9999px, 75px, 0); }
    60% { clip: rect(25px, 9999px, 55px, 0); }
    65% { clip: rect(85px, 9999px, 105px, 0); }
    70% { clip: rect(5px, 9999px, 25px, 0); }
    75% { clip: rect(65px, 9999px, 90px, 0); }
    80% { clip: rect(35px, 9999px, 65px, 0); }
    85% { clip: rect(75px, 9999px, 100px, 0); }
    90% { clip: rect(55px, 9999px, 80px, 0); }
    95% { clip: rect(10px, 9999px, 45px, 0); }
    100% { clip: rect(90px, 9999px, 110px, 0); }
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--primary);
    margin-bottom: 20px;
    min-height: 35px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.typing-text {
    color: var(--primary);
    text-shadow: 0 0 10px var(--glow);
}

.cursor-blink {
    animation: cursorBlink 0.7s step-end infinite;
    color: var(--primary);
}

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

.hero-description {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cyber-btn {
    position: relative;
    padding: 16px 32px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cyber-btn .btn-glitch {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cyber-btn:hover .btn-glitch {
    left: 100%;
}

.cyber-btn .btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

.cyber-btn:active .btn-particles {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--glow), 0 0 60px rgba(0, 255, 65, 0.2);
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px var(--glow-strong), 0 0 100px rgba(0, 255, 65, 0.3);
}

.primary-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.secondary-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px var(--glow), inset 0 0 20px rgba(0, 255, 65, 0.1);
}

.secondary-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px var(--glow-strong), inset 0 0 30px rgba(0, 255, 65, 0.2);
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.btn-icon-left {
    width: 20px;
    height: 20px;
}

.btn-icon-left svg {
    width: 100%;
    height: 100%;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow);
    line-height: 1;
}

.hero-stat .stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease 0.3s both;
}

.cyberpunk-avatar {
    position: relative;
    width: 350px;
    height: 450px;
}

.avatar-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.avatar-frame {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 400px;
    background: linear-gradient(180deg, var(--bg-tertiary), var(--bg-secondary));
    border: 2px solid var(--primary);
    border-radius: 125px 125px 20px 20px;
    box-shadow: 0 0 40px var(--glow), inset 0 0 60px rgba(0, 255, 65, 0.1);
    overflow: hidden;
}

.avatar-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.avatar-head {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 140px;
}

.avatar-face {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2a2a35, #1a1a22);
    border-radius: 60px 60px 40px 40px;
    position: relative;
    overflow: hidden;
}

.avatar-visor {
    position: absolute;
    top: 35px;
    left: -10px;
    right: -10px;
    height: 40px;
    background: linear-gradient(90deg, var(--accent), var(--accent-cyan), var(--accent));
    opacity: 0.8;
    border-radius: 5px;
    box-shadow: 0 0 20px var(--glow-purple);
    animation: visorPulse 2s ease-in-out infinite;
}

@keyframes visorPulse {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 20px var(--glow-purple); }
    50% { opacity: 1; box-shadow: 0 0 40px var(--glow-purple); }
}

.avatar-eyes {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.eye {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    animation: eyeGlow 2s ease-in-out infinite;
}

.eye.left { animation-delay: 0.2s; }
.eye.right { animation-delay: 0.4s; }

@keyframes eyeGlow {
    0%, 100% { box-shadow: 0 0 10px var(--glow); }
    50% { box-shadow: 0 0 25px var(--glow-strong); }
}

.pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--bg-primary);
    border-radius: 50%;
}

.eye-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, var(--glow), transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
}

.avatar-mouth {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--glow);
}

.avatar-neck {
    position: absolute;
    top: 155px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    background: linear-gradient(180deg, #2a2a35, #1a1a22);
}

.avatar-body {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
}

.avatar-jacket {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a22, #0d0d15);
    border-radius: 20px 20px 0 0;
    position: relative;
    border: 2px solid rgba(0, 255, 65, 0.3);
}

.jacket-collar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background: linear-gradient(180deg, #2a2a35, #1a1a22);
    border-radius: 0 0 40px 40px;
    border-top: 2px solid var(--primary);
}

.jacket-zipper {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 150px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    box-shadow: 0 0 10px var(--glow);
}

.jacket-panels {
    position: absolute;
    top: 30px;
    left: 10px;
    right: 10px;
    bottom: 0;
    display: flex;
    justify-content: space-between;
}

.panel {
    width: 45%;
    background: linear-gradient(180deg, rgba(0, 255, 65, 0.05), transparent);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 10px;
}

.panel.left {
    border-left: 2px solid var(--primary);
}

.panel.right {
    border-right: 2px solid var(--accent);
}

.jacket-lights {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: lightPulse 1.5s ease-in-out infinite;
}

.light.l1 { background: var(--primary); animation-delay: 0s; }
.light.l2 { background: var(--accent-cyan); animation-delay: 0.3s; }
.light.l3 { background: var(--accent); animation-delay: 0.6s; }

@keyframes lightPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 15px currentColor; }
}

.avatar-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.aura-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: auraExpand 4s ease-out infinite;
}

.aura-ring.r1 {
    width: 280px;
    height: 280px;
    animation-delay: 0s;
}

.aura-ring.r2 {
    width: 320px;
    height: 320px;
    animation-delay: 1.3s;
}

.aura-ring.r3 {
    width: 360px;
    height: 360px;
    animation-delay: 2.6s;
}

@keyframes auraExpand {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
}

.avatar-hologram {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 50px;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid var(--primary);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.holo-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.holo-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
}

.avatar-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle.p1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle.p2 { top: 40%; left: 85%; animation-delay: 0.5s; }
.particle.p3 { top: 60%; left: 15%; animation-delay: 1s; }
.particle.p4 { top: 30%; left: 80%; animation-delay: 1.5s; }
.particle.p5 { top: 70%; left: 90%; animation-delay: 2s; }
.particle.p6 { top: 80%; left: 20%; animation-delay: 2.5s; }

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 1; transform: translateY(-20px) scale(1); }
}

.avatar-info {
    margin-top: 30px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary);
}

.info-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 1200px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .cyberpunk-avatar {
        width: 280px;
        height: 360px;
    }
    
    .avatar-frame {
        width: 200px;
        height: 320px;
    }
    
    .hero-head {
        top: 15px;
        width: 100px;
        height: 120px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .cyber-status-bar {
        padding: 3px 6px;
        gap: 6px;
    }
    
    .cyber-profile-border {
        width: 26px;
        height: 26px;
    }
    
    .cyber-title {
        font-size: 8px;
    }
    
    .cyber-subtitle {
        font-size: 6px;
        padding-left: 14px;
    }
    
    .cyber-lightning {
        width: 8px;
        height: 8px;
    }
    
    .cyber-indicator {
        width: 6px;
        height: 6px;
        bottom: -2px;
        right: -2px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0;
        min-height: auto;
    }
    
    .cyberpunk-avatar {
        width: 220px;
        height: 280px;
    }
    
    .avatar-frame {
        width: 160px;
        height: 250px;
    }
    
    .avatar-head {
        width: 90px;
        height: 100px;
    }
    
    .avatar-eyes {
        gap: 20px;
    }
    
    .eye {
        width: 15px;
        height: 15px;
    }
    
    .avatar-visor {
        height: 25px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-stat .stat-number {
        font-size: 28px;
    }
    
    .cyber-btn {
        padding: 12px 24px;
        font-size: 11px;
    }
    
    .avatar-aura {
        display: none;
    }
    
    .avatar-hologram {
        display: none;
    }
}

.password-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.password-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.password-modal-content {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 0 50px var(--glow), 0 0 100px rgba(0, 255, 65, 0.2);
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.password-header {
    background: linear-gradient(180deg, rgba(0, 255, 65, 0.1), transparent);
    padding: 25px 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.password-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 20px var(--glow); }
    50% { box-shadow: 0 0 40px var(--glow-strong); }
}

.password-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.password-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-shadow: 0 0 10px var(--glow);
}

.password-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.password-body {
    padding: 30px;
}

.password-input-group {
    margin-bottom: 20px;
}

.password-input-group .input-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.input-label {
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 2px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow);
}

.input-prefix {
    color: var(--primary);
    font-size: 16px;
    margin-right: 10px;
    animation: prefixBlink 1s step-end infinite;
}

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

.password-input {
    flex: 1;
    padding: 15px 0;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    outline: none;
}

.password-input::placeholder {
    color: var(--text-muted);
}

.password-toggle {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s;
}

.password-toggle:hover {
    color: var(--primary);
}

.password-toggle .eye-closed {
    display: none;
}

.password-toggle.show .eye-open {
    display: none;
}

.password-toggle.show .eye-closed {
    display: block;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.password-error {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 6px;
    animation: errorShake 0.5s ease;
}

.password-error.show {
    display: flex;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-10px); }
    40%, 80% { transform: translateX(10px); }
}

.error-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
}

.error-text {
    font-size: 12px;
    color: var(--secondary);
    letter-spacing: 1px;
}

.password-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.hint-icon {
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.password-actions {
    display: flex;
    gap: 15px;
    padding: 0 30px 25px;
}

.password-btn {
    flex: 1;
    padding: 14px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.password-btn.cancel {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-muted);
}

.password-btn.cancel:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.password-btn.submit {
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    border: none;
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--glow);
}

.password-btn.submit:hover {
    box-shadow: 0 0 40px var(--glow-strong);
    transform: translateY(-2px);
}

.password-btn.submit:active {
    transform: translateY(0);
}

.password-btn .btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.password-btn .btn-loading {
    display: none;
}

.password-btn.loading .btn-text {
    display: none;
}

.password-btn.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.password-btn.loading .loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.password-attempts {
    display: none;
    text-align: center;
    padding: 0 30px 15px;
}

.password-attempts.show {
    display: block;
}

.attempts-text {
    font-size: 11px;
    color: var(--secondary);
    letter-spacing: 1px;
}

#attemptsCount {
    font-weight: bold;
}

.password-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scanMove 3s linear infinite;
    opacity: 0.5;
}

@keyframes scanMove {
    0% { top: 0; }
    100% { top: 100%; }
}

.password-modal.locked {
    pointer-events: none;
}

.password-modal.locked .password-modal-content {
    animation: lockedPulse 0.5s ease;
    border-color: var(--secondary);
    box-shadow: 0 0 50px rgba(255, 0, 85, 0.5);
}

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

@media (max-width: 480px) {
    .password-modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .password-header {
        padding: 20px;
    }
    
    .password-body {
        padding: 20px;
    }
    
    .password-actions {
        padding: 0 20px 20px;
    }
    
    .password-title {
        font-size: 14px;
    }
}

.drop-zone {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.drop-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.02), rgba(157, 0, 255, 0.02));
    opacity: 0;
    transition: opacity 0.3s;
}

.drop-zone:hover::before,
.drop-zone.dragover::before {
    opacity: 1;
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--glow);
}

.drop-zone.dragover {
    background: rgba(0, 255, 65, 0.05);
}

.drop-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.drop-icon-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.drop-icon {
    font-size: 50px;
    display: block;
    animation: dropBounce 2s ease-in-out infinite;
}

@keyframes dropBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.drop-lock {
    position: absolute;
    bottom: -5px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: var(--bg-secondary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: lockPulse 2s ease-in-out infinite;
}

.drop-lock svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
}

@keyframes lockPulse {
    0%, 100% { box-shadow: 0 0 10px var(--glow); }
    50% { box-shadow: 0 0 25px var(--glow-strong); }
}

.drop-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--glow);
}

.drop-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.drop-or {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 6px;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 20px var(--glow);
    transform: translateY(-2px);
}

.upload-btn:active {
    transform: translateY(0);
}

.upload-btn .btn-icon {
    width: 18px;
    height: 18px;
}

.upload-btn .btn-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.drop-hint {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    opacity: 0.7;
}

.drop-progress {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.drop-progress.active {
    display: flex;
}

.progress-bar-upload {
    width: 80%;
    max-width: 300px;
    height: 8px;
    background: var(--bg-primary);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.progress-fill-upload {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan), var(--accent));
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill-upload::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 1.5s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 2px;
    animation: textPulse 1s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@media (max-width: 768px) {
    .drop-zone {
        padding: 30px 20px;
    }
    
    .drop-icon {
        font-size: 40px;
    }
    
    .drop-title {
        font-size: 14px;
    }
    
    .drop-subtitle {
        font-size: 11px;
    }
}
