@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');
:root {
    --bg-color: #050508;
    --bg-secondary: #0a0a15;
    --primary-color: #00E5FF;
    --secondary-color: #2E3192;
    --purple-glow: #7000ff;
    --orange-glow: #ff4d00;
    --yellow-glow: #eaff00;
    --green-glow: #00ffaa;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(0, 229, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) transparent;
}
*::-webkit-scrollbar {
    width: 6px;
}
*::-webkit-scrollbar-track {
    background: transparent;
}
*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}
.floating-code {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.code-snippet {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    animation: floatCode linear infinite;
    text-shadow: 0 0 10px currentColor;
}
@keyframes floatCode {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(5deg);
        opacity: 0;
    }
}
.cursor-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(46, 49, 146, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    mix-blend-mode: screen;
}
.cursor-trail {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    transition: transform 0.1s ease-out;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(5, 5, 8, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--purple-glow));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    position: relative;
    animation: gradientShift 3s ease infinite;
    cursor: pointer;
}
.logo::before,
.logo::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo::before {
    animation: glitchLogo 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.logo::after {
    animation: glitchLogo 2s infinite reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
@keyframes glitchLogo {
    0%,
    90%,
    100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}
.nav-links {
    display: flex;
    gap: 2.5rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}
.nav-links a:hover {
    color: var(--text-main);
}
.nav-links a:hover::after {
    width: 100%;
}
section {
    padding: 120px 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.hero {
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatShape 20s ease-in-out infinite;
}
.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}
.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}
.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--purple-glow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}
@keyframes floatShape {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(-50px, -30px) scale(1.05);
    }
}
.pfp-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 3rem;
    animation: floatPfp 6s ease-in-out infinite;
}
@keyframes floatPfp {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
.pfp-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: var(--secondary-color);
    animation: spinRing 4s linear infinite;
}
.ring-2 {
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-top-color: var(--purple-glow);
    border-left-color: var(--orange-glow);
    animation-duration: 6s;
    animation-direction: reverse;
}
.ring-3 {
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border-top-color: var(--green-glow);
    border-bottom-color: var(--yellow-glow);
    animation-duration: 8s;
}
@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.pfp-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-color);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3), 0 0 100px rgba(255, 0, 255, 0.2);
}
.hero-content {
    margin-bottom: 3rem;
}
.glitch-wrapper {
    margin-bottom: 1.5rem;
}
.glitch-text {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    position: relative;
    animation: glitchText 5s infinite;
}
.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.glitch-text::before {
    color: var(--primary-color);
    animation: glitchBefore 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}
.glitch-text::after {
    color: var(--secondary-color);
    animation: glitchAfter 2s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}
@keyframes glitchText {
    0%,
    90%,
    100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-3px, 1px);
    }
    94% {
        transform: translate(3px, -1px);
    }
    96% {
        transform: translate(-1px, 3px);
    }
    98% {
        transform: translate(1px, -3px);
    }
}
@keyframes glitchBefore {
    0%,
    90%,
    100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-4px, -2px);
    }
    94% {
        transform: translate(4px, 2px);
    }
    96% {
        transform: translate(-2px, 4px);
    }
}
@keyframes glitchAfter {
    0%,
    90%,
    100% {
        transform: translate(0);
    }
    91% {
        transform: translate(4px, 2px);
    }
    93% {
        transform: translate(-4px, -2px);
    }
    95% {
        transform: translate(2px, -4px);
    }
}
.typing-text {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 300;
    min-height: 1.8em;
}
.typing-text::after {
    content: '|';
    animation: blink 0.8s infinite;
    color: var(--primary-color);
}
@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}
.hero-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.open-terminal-btn {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(46, 49, 146, 0.2));
    border: 1px solid var(--primary-color);
    color: var(--text-main);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
}
.open-terminal-btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-color);
    transform: translateY(-2px);
}
.terminal-container {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.3s ease;
}
.tag::before {
    content: '';
    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 ease;
}
.tag:hover::before {
    left: 100%;
}
.tag:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
}
.terminal-container {
    width: 100%;
    max-width: 800px;
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 255, 255, 0.1),
        0 0 50px rgba(0, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpTerminal 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 1.5s;
}
@keyframes fadeUpTerminal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.terminal-header {
    background: rgba(30, 30, 45, 0.9);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.terminal-buttons {
    display: flex;
    gap: 8px;
    width: 60px;
}
.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: transform 0.2s, filter 0.2s;
}
.terminal-buttons span:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}
.terminal-buttons .close {
    background: #ff5f56;
    box-shadow: 0 0 10px rgba(255, 95, 86, 0.5);
}
.terminal-buttons .minimize {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
}
.terminal-buttons .maximize {
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}
.terminal-title {
    flex-grow: 1;
    text-align: center;
    color: #666;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    margin-right: 60px;
}
.terminal-body {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #abb2bf;
    height: 280px;
    overflow-y: auto;
    white-space: pre-wrap;
    display: flex;
    flex-direction: column;
}
.terminal-line {
    margin: 4px 0;
    animation: fadeInLine 0.3s ease;
}
@keyframes fadeInLine {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes matrixFlash {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(90deg) brightness(1.5) contrast(1.2);
        background-color: rgba(0, 50, 0, 0.3);
    }
    100% {
        filter: hue-rotate(0deg) brightness(1);
    }
}
@keyframes glitchScreen {
    0%, 100% {
        transform: translate(0);
    }
    10% {
        transform: translate(-2px, 1px);
    }
    20% {
        transform: translate(2px, -1px);
    }
    30% {
        transform: translate(-1px, 2px);
    }
    40% {
        transform: translate(1px, -2px);
    }
    50% {
        transform: translate(-2px, -1px);
    }
    60% {
        transform: translate(2px, 1px);
    }
    70% {
        transform: translate(-1px, -2px);
    }
    80% {
        transform: translate(1px, 2px);
    }
    90% {
        transform: translate(-2px, 2px);
    }
}
.terminal-input-line {
    display: flex;
    align-items: center;
    margin-top: 8px;
}
.prompt {
    color: var(--primary-color);
    margin-right: 10px;
    text-shadow: 0 0 10px var(--primary-color);
}
#cmd-input {
    background: transparent;
    border: none;
    color: #abb2bf;
    font-family: inherit;
    font-size: inherit;
    flex-grow: 1;
    outline: none;
    caret-color: var(--primary-color);
}
.stats-section {
    min-height: auto;
    padding: 80px 10%;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.02), transparent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}
.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}
.stat-card:hover .stat-glow {
    opacity: 0.1;
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}
.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.title-decoration {
    color: var(--primary-color);
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    opacity: 0.5;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}
.project-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: pointer;
}
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--purple-glow));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.project-card:hover::before {
    transform: scaleX(1);
}
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 255, 255, 0.3) 0%, rgba(255, 0, 255, 0.15) 30%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 24px;
}
.project-card:hover .card-glow {
    opacity: 1;
}
.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    box-shadow: inset 0 0 60px rgba(0, 255, 255, 0.1),
                inset 0 0 100px rgba(255, 0, 255, 0.05);
}
.project-card:hover::after {
    opacity: 1;
}
.project-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 255, 255, 0.1);
}
.project-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.project-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.project-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: #fff;
}
.project-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.project-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--primary-color);
    border: 1px solid rgba(0, 255, 255, 0.2);
}
.project-links {
    display: flex;
    gap: 1rem;
}
.project-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.project-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.status-online {
    background: rgba(0, 255, 136, 0.15);
    color: var(--green-glow);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    animation: pulseGlow 2s infinite;
}
.status-dev {
    background: rgba(255, 200, 0, 0.15);
    color: #ffc800;
    box-shadow: 0 0 15px rgba(255, 200, 0, 0.3);
}
.status-offline {
    background: rgba(255, 80, 80, 0.15);
    color: #ff5050;
}
@keyframes pulseGlow {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
    }
}
.about-section {
    background: linear-gradient(180deg, transparent, rgba(157, 0, 255, 0.02), transparent);
}
.experience-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.job-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}
.job-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 255, 255, 0.1);
}
.job-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.server-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.job-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.2rem;
}
.role-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(157, 0, 255, 0.15);
    color: #b366ff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(157, 0, 255, 0.3);
}
.job-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.job-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.job-tag {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.cyber-discord-card {
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.15);
}
.card-header {
    background: rgba(0, 255, 255, 0.05);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}
.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse 1.5s infinite;
}
.header-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}
.header-lines {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.3;
}
.card-body {
    padding: 2rem;
}
.server-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.server-pfp-wrap {
    position: relative;
    width: 70px;
    height: 70px;
}
.server-pfp {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}
.pfp-glitch {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    animation: glitchBox 3s infinite;
}
.server-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.server-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-value {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
}
.stat-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-muted);
}
.stat-sep {
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
}
.presence-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.member-skeleton {
    height: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    animation: shimmer 2s infinite;
}
.discord-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.member-pfp {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.member-name {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.card-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.join-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-align: center;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.join-btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 30px var(--primary-color);
}
.card-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scanMove 4s linear infinite;
    z-index: 10;
    opacity: 0.5;
}
.card-corners .corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--primary-color);
    z-index: 10;
}
.corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }
@keyframes scanMove {
    0% { top: 0; }
    100% { top: 100%; }
}
@keyframes shimmer {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}
@keyframes glitchBox {
    0%, 100% { transform: translate(0); opacity: 0.5; }
    20% { transform: translate(-2px, 2px); opacity: 1; }
    40% { transform: translate(2px, -2px); opacity: 0.5; }
}
@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .widget-column {
        order: -1;
    }
}
@media (max-width: 768px) {
    .job-card {
        padding: 1.5rem;
    }
    .job-info h3 {
        font-size: 1.3rem;
    }
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.highlight {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}
.skills-container h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.skill-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.skill-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}
.skill-item i {
    color: var(--primary-color);
}
.skill-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
}
footer {
    padding: 4rem 10%;
    border-top: 1px solid var(--card-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.footer-content {
    position: relative;
    z-index: 1;
}
.footer-text {
    color: var(--text-muted);
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
}
.socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}
.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}
.social-link svg {
    width: 24px;
    height: 24px;
}
.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}
.social-link:hover::before {
    width: 100%;
    height: 100%;
}
.social-link:hover {
    color: #000;
    border-color: transparent;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 0 25px var(--primary-color);
}
.social-link i, .social-link svg {
    position: relative;
    z-index: 1;
}
.footer-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
}
.footer-decoration .line {
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), var(--purple-glow), transparent);
    animation: scanLine 3s linear infinite;
}
@keyframes scanLine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.magnetic {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
::selection {
    background: var(--primary-color);
    color: #000;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.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);
}
@media (max-width: 1024px) {
    .glitch-text {
        font-size: 3.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .title-decoration {
        font-size: 1.5rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--card-border);
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
    }
    .nav-links a::after {
        bottom: 5px;
    }
    .cursor-glow,
    .cursor-trail {
        display: none !important;
    }
    .glitch-text {
        font-size: 2rem;
    }
    .typing-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
    }
    .title-decoration {
        font-size: 1.2rem;
    }
    nav {
        padding: 0.5rem 5%;
    }
    .logo {
        font-size: 1.4rem;
    }
    section {
        padding: 60px 5%;
        min-height: auto;
    }
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 40px;
    }
    .pfp-container {
        width: 130px;
        height: 130px;
        margin-bottom: 2rem;
    }
    .pfp-ring {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
    .ring-2 {
        top: -16px;
        left: -16px;
        right: -16px;
        bottom: -16px;
    }
    .ring-3 {
        top: -24px;
        left: -24px;
        right: -24px;
        bottom: -24px;
    }
    .hero-tags {
        gap: 0.6rem;
    }
    .tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .terminal-container {
        margin: 0 -5%;
        width: calc(100% + 10%);
        max-width: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .terminal-header {
        padding: 0.6rem 0.8rem;
    }
    .terminal-title {
        font-size: 0.7rem;
        margin-right: 40px;
    }
    .terminal-body {
        padding: 1rem;
        font-size: 0.8rem;
        height: 220px;
    }
    .terminal-buttons span {
        width: 10px;
        height: 10px;
    }
    .stats-section {
        padding: 40px 5%;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    #projects {
        padding-top: 80px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .project-card {
        padding: 1.5rem;
        border-radius: 18px;
    }
    .project-icon {
        width: 55px;
        height: 55px;
        border-radius: 14px;
        margin-bottom: 1rem;
    }
    .project-card h3 {
        font-size: 1.25rem;
    }
    .project-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .project-tags {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }
    .project-tag {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }
    .project-links {
        flex-wrap: wrap;
    }
    .project-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    .status-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    #about {
        padding-top: 80px;
    }
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    .skills-container h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .skill-item {
        padding: 0.8rem 1rem;
    }
    .skill-item span {
        font-size: 0.9rem;
    }
    .shape-1 {
        width: 300px;
        height: 300px;
    }
    .shape-2 {
        width: 250px;
        height: 250px;
    }
    .shape-3 {
        width: 200px;
        height: 200px;
    }
    footer {
        padding: 2.5rem 5%;
    }
    .footer-text {
        font-size: 0.85rem;
    }
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .glitch-text {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .title-decoration {
        font-size: 1rem;
    }
    .pfp-container {
        width: 110px;
        height: 110px;
    }
    .pfp-ring {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
    }
    .ring-2 {
        top: -12px;
        left: -12px;
        right: -12px;
        bottom: -12px;
    }
    .ring-3 {
        top: -18px;
        left: -18px;
        right: -18px;
        bottom: -18px;
    }
    .typing-text {
        font-size: 0.9rem;
    }
    .hero-tags {
        flex-direction: column;
        align-items: center;
    }
    .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    .terminal-body {
        font-size: 0.75rem;
        height: 180px;
        padding: 0.8rem;
    }
    .terminal-title {
        font-size: 0.6rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
    .project-card {
        padding: 1.2rem;
    }
    .project-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }
    .project-card h3 {
        font-size: 1.1rem;
    }
    .project-card p {
        font-size: 0.85rem;
    }
    .about-text p {
        font-size: 0.9rem;
    }
    .skill-item {
        padding: 0.7rem 0.8rem;
    }
    .skill-item span {
        font-size: 0.85rem;
    }
    .social-link {
        width: 40px;
        height: 40px;
    }
    .nav-links {
        width: 85%;
    }
    .nav-links a {
        font-size: 1rem;
    }
    .logo {
        font-size: 1.2rem;
    }
}