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

/* ==================== COPY PROTECTION ==================== */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection on specific elements */
.selectable,
.contact-details a,
#passwordOutput {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

:root {
    --neon-green: #00ff88;
    --neon-green-dim: #00cc6a;
    --neon-purple: #a855f7;
    --neon-pink: #ff2d7b;
    --neon-blue: #00d4ff;
    --neon-red: #ff3333;
    --neon-orange: #ff6b35;
    --neon-yellow: #ffdd00;
    --dark: #0a0a0f;
    --darker: #050508;
    --card-bg: rgba(15, 15, 25, 0.95);
    --card-border: rgba(0, 255, 136, 0.2);
    --text: #e0e0e0;
    --text-dim: #888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Crime Tape Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: -50%;
    width: 200%;
    height: 30px;
    background: repeating-linear-gradient(
        90deg,
        var(--neon-yellow) 0px,
        var(--neon-yellow) 20px,
        #111 20px,
        #111 40px
    );
    z-index: 9998;
    opacity: 0.15;
    transform: rotate(-1deg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== SCANLINES ==================== */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.05) 0px,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 9999;
    opacity: 0.4;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 5px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--neon-green);
    color: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-green);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-green);
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 50px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 255, 136, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(168, 85, 247, 0.05) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-left {
    padding-right: 30px;
}

.tag-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neon-green);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.tag-icon {
    font-size: 0.7rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.hero-title:hover {
    animation: glitchText 0.3s ease;
}

@keyframes glitchText {
    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); }
}

.highlight-text {
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5),
                 0 0 40px rgba(0, 255, 136, 0.3);
    position: relative;
}

.highlight-text::before {
    content: 'HACK THE SYSTEM,';
    position: absolute;
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    top: 0;
    color: var(--neon-green);
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: glitchClip 3s infinite linear alternate-reverse;
}

@keyframes glitchClip {
    0% { clip: rect(24px, 9999px, 76px, 0); }
    25% { clip: rect(44px, 9999px, 96px, 0); }
    50% { clip: rect(14px, 9999px, 66px, 0); }
    75% { clip: rect(54px, 9999px, 86px, 0); }
    100% { clip: rect(34px, 9999px, 106px, 0); }
}

.accent-text {
    position: relative;
    display: inline-block;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid var(--card-border);
    border-left: 3px solid var(--neon-green);
    width: fit-content;
    position: relative;
}

.hero-stats::before {
    content: 'STATS';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 0.7rem;
    color: var(--neon-green);
    background: var(--darker);
    padding: 0 10px;
    letter-spacing: 0.2em;
}

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

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.stat-plus {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-green);
}

.stat-text {
    display: block;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--neon-green);
    color: var(--darker);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    color: var(--neon-green);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.1em;
    border: 2px solid var(--neon-green);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
}

/* Hero Right - Character */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Avatar - Wanted Poster Style */
.hero-avatar {
    position: relative;
    width: 400px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Wanted Badge */
.hero-avatar::before {
    content: 'WANTED';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--neon-red);
    letter-spacing: 0.3em;
    z-index: 10;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
    animation: wantedFlicker 2s ease-in-out infinite;
}

@keyframes wantedFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
    75% { opacity: 1; }
    80% { opacity: 0.8; }
}

/* Bounty Text */
.hero-avatar::after {
    content: 'BOUNTY: ∞';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--neon-green);
    letter-spacing: 0.2em;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 20px;
    border: 1px solid var(--neon-green);
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.15) 0%, rgba(0, 255, 136, 0.1) 50%, transparent 70%);
    animation: avatarGlowPulse 3s ease-in-out infinite;
    border-radius: 0;
    filter: blur(30px);
}

@keyframes avatarGlowPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15); 
        opacity: 1; 
    }
}

.avatar-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(255, 51, 51, 0.3)) saturate(1.1);
    transition: all 0.4s ease;
}

.hero-avatar:hover .avatar-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.5)) saturate(1.2);
}

.avatar-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 380px;
    border: 3px solid rgba(255, 51, 51, 0.4);
    border-radius: 0;
    z-index: 1;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.avatar-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

/* Corner marks */
.avatar-frame::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    border-left: 2px solid var(--neon-green);
    border-top: 2px solid var(--neon-green);
}

.character-wrapper {
    position: relative;
    width: 350px;
    height: 500px;
}

.character-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

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

.character-figure {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-avatar {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    animation: avatarFloat 6s ease-in-out infinite;
    filter: saturate(1.1) contrast(1.05);
    transition: all 0.5s ease;
}

.portfolio-avatar:hover {
    transform: scale(1.05);
    filter: saturate(1.3) contrast(1.1);
}

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

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon-green), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { height: 40px; opacity: 0.5; }
    50% { height: 60px; opacity: 1; }
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--neon-green);
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '//';
    color: var(--neon-purple);
    margin-right: 10px;
    opacity: 0.7;
}

.section-title .highlight {
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
}

.about-section::before {
    content: 'CLASSIFIED';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15vw;
    color: rgba(255, 51, 51, 0.03);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 0.2em;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--neon-green), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.about-card.main-card {
    grid-row: span 2;
}

.about-card.main-card::after {
    content: '⚡';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.2), rgba(0, 255, 136, 0.1));
    border: 1px solid var(--neon-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--neon-red);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.card-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.1em;
}

.card-content p {
    color: var(--text-dim);
    margin-bottom: 15px;
    line-height: 1.8;
}

.neon-text {
    color: var(--neon-green);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--card-border);
    font-size: 0.85rem;
    color: var(--text-dim);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.tag i {
    color: var(--neon-green);
}

.card-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 20px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s ease;
}

.about-card:hover .card-icon-large {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.about-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.about-card > p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* ==================== SKILLS SECTION ==================== */
.skills-section {
    background: var(--dark);
}

/* Cybersecurity Banner */
.cyber-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(168, 85, 247, 0.15) 50%, rgba(0, 255, 136, 0.1) 100%);
    border: 2px solid var(--neon-red);
    padding: 40px 50px;
    margin-bottom: 50px;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.cyber-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.3), transparent);
    animation: cyberSweep 2s ease-in-out infinite;
}

.cyber-banner::after {
    content: '⚠ THREAT LEVEL: EXPERT';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 0.7rem;
    color: var(--neon-red);
    letter-spacing: 0.1em;
    animation: blink 1.5s ease-in-out infinite;
}

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

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

.cyber-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 51, 51, 0.2);
    border: 2px solid var(--neon-red);
    border-radius: 0;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    animation: cyberPulse 2s ease-in-out infinite;
}

.cyber-icon i {
    font-size: 3rem;
    color: var(--neon-red);
    filter: drop-shadow(0 0 20px var(--neon-red));
}

@keyframes cyberPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 51, 51, 0.6);
        transform: scale(1.05);
    }
}

.cyber-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.2em;
    color: var(--neon-red);
    text-shadow: 0 0 30px rgba(255, 51, 51, 0.5);
    margin-bottom: 5px;
}

.cyber-content p {
    font-size: 1.1rem;
    color: var(--text);
    letter-spacing: 0.05em;
}

.cyber-glow {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    animation: glowPulse 3s ease-in-out infinite;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.skill-category:nth-child(4),
.skill-category:nth-child(5) {
    grid-column: span 1;
}

@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skill-category:nth-child(5) {
        grid-column: span 2;
    }
}

.skill-category {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 255, 136, 0.1) 50%);
}

.skill-category::after {
    content: attr(data-index);
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    color: var(--neon-green);
    opacity: 0.5;
}

.skill-category:nth-child(1)::after { content: '01'; }
.skill-category:nth-child(2)::after { content: '02'; }
.skill-category:nth-child(3)::after { content: '03'; }
.skill-category:nth-child(4)::after { content: '04'; }
.skill-category:nth-child(5)::after { content: '05'; }

.skill-category:hover {
    border-color: var(--neon-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--card-border);
    border-image: linear-gradient(90deg, var(--neon-green), transparent) 1;
}

.category-header i {
    font-size: 1.2rem;
    color: var(--neon-green);
    filter: drop-shadow(0 0 5px var(--neon-green));
}

.category-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 0.1em;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.skill-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(168, 85, 247, 0.1));
    border-radius: 0;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--neon-green);
    transition: all 0.3s ease;
}

.skill-item:hover .skill-icon {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(168, 85, 247, 0.2));
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.skill-info {
    flex: 1;
}

.skill-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.skill-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-purple));
    border-radius: 2px;
    width: 0;
    transition: width 1.5s ease;
}

/* ==================== PROJECTS SECTION ==================== */
.projects-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    position: relative;
}

.projects-section::before {
    content: 'OPERATIONS';
    position: absolute;
    bottom: 10%;
    right: -5%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12vw;
    color: rgba(0, 255, 136, 0.02);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 0.1em;
    transform: rotate(-90deg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.project-card::before {
    content: 'MISSION';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.65rem;
    color: var(--neon-green);
    letter-spacing: 0.2em;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 10px;
    border: 1px solid var(--neon-green);
}

.project-card:nth-child(1)::before { content: 'MISSION #01'; }
.project-card:nth-child(2)::before { content: 'MISSION #02'; }
.project-card:nth-child(3)::before { content: 'MISSION #03'; }
.project-card:nth-child(4)::before { content: 'MISSION #04'; }

.project-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}

.project-card.featured {
    grid-column: span 2;
}

.project-card.featured::before {
    content: '★ TOP MISSION';
    background: var(--neon-green);
    color: var(--darker);
    border: none;
}

.project-card.featured .project-image {
    height: 300px;
}

.project-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--dark), var(--darker));
    overflow: hidden;
}

.project-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(0, 255, 136, 0.2);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 255, 136, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    width: 50px;
    height: 50px;
    background: var(--neon-green);
    border-radius: 0;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.project-card:hover .project-link {
    transform: translateY(0);
}

.project-link:hover {
    background: #fff;
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
}

.project-category {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--neon-green);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    padding: 5px 10px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--card-border);
}

.project-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.project-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech span {
    padding: 5px 12px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    font-size: 0.75rem;
    color: var(--neon-purple);
}

.projects-more {
    text-align: center;
}

/* Coming Soon Project Card */
.project-card.coming-soon {
    border: 2px dashed rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.project-card.coming-soon .coming-soon-icon {
    font-size: 3rem;
    color: var(--neon-purple);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.project-card.coming-soon h3 {
    color: var(--neon-purple);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-card.coming-soon p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.95); }
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    color: var(--neon-green);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.1em;
    border: 2px solid var(--neon-green);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--neon-green);
    color: var(--darker);
}

.btn-outline:hover i {
    transform: translateX(5px);
}

.btn-outline i {
    transition: transform 0.3s ease;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: var(--darker);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--neon-green) 0px,
        var(--neon-green) 10px,
        transparent 10px,
        transparent 20px
    );
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-cards-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-simple .contact-card {
    min-width: 280px;
}

.contact-simple .social-row {
    justify-content: center;
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--neon-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    border-color: var(--neon-green);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--neon-green);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.contact-details h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.social-row {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.social-btn:hover {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--darker);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    position: relative;
}

.contact-form::before {
    content: 'SECURE CONNECTION';
    position: absolute;
    top: -12px;
    left: 30px;
    font-size: 0.7rem;
    color: var(--neon-green);
    background: var(--darker);
    padding: 0 15px;
    letter-spacing: 0.15em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

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

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-dim);
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--neon-green);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.submit-btn {
    width: 100%;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 30px 0;
    border-top: 1px solid var(--card-border);
    position: relative;
    background: linear-gradient(180deg, var(--darker), #000);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #fff;
}

.footer-logo .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    background: var(--neon-green);
    color: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 5px;
}

.footer-credit {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-credit i {
    color: var(--neon-pink);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    .hero-stats {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-right {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card.main-card {
        grid-row: auto;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card.featured {
        grid-column: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--card-border);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== GITHUB ACTIVITY SECTION ==================== */
.activity-section {
    background: var(--dark);
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.activity-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px;
    color: var(--text-dim);
    font-size: 1.1rem;
}

.activity-loading i {
    font-size: 1.5rem;
    color: var(--neon-green);
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 3px solid var(--neon-green);
    transition: all 0.3s ease;
}

.activity-item:hover {
    border-left-color: var(--neon-purple);
    transform: translateX(5px);
}

.activity-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--neon-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-repo {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--neon-purple);
    margin-bottom: 5px;
}

.activity-message {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.activity-time {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.activity-error {
    text-align: center;
    padding: 30px;
    color: var(--neon-red);
}

/* ==================== PASSWORD GENERATOR SECTION ==================== */
.tools-section {
    background: var(--darker);
    position: relative;
}

.tools-section::before {
    content: '🔐 SECURE ZONE';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    color: var(--neon-green);
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.password-generator {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

.password-display {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.password-display input {
    flex: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--card-border);
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.password-display input:focus {
    outline: none;
    border-color: var(--neon-green);
}

.copy-btn {
    padding: 20px 25px;
    background: transparent;
    border: 2px solid var(--neon-purple);
    color: var(--neon-purple);
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--neon-purple);
    color: var(--darker);
}

.copy-btn.copied {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--darker);
}

.password-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 600;
}

.option-group label span {
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
}

.option-group input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
}

.option-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--neon-green);
    border-radius: 50%;
    cursor: pointer;
}

.option-checkboxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: var(--neon-green);
}

.checkbox-label input {
    display: none;
}

.checkbox-label input:checked + span {
    color: var(--neon-green);
}

.checkbox-label span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.generate-btn {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    margin-bottom: 20px;
}

.generate-btn i {
    margin-right: 10px;
}

.password-strength {
    display: flex;
    align-items: center;
    gap: 15px;
}

.strength-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.strength-fill.weak { width: 25%; background: var(--neon-red); }
.strength-fill.fair { width: 50%; background: var(--neon-orange); }
.strength-fill.good { width: 75%; background: var(--neon-yellow); }
.strength-fill.strong { width: 100%; background: var(--neon-green); }

.strength-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    min-width: 80px;
    text-align: right;
}

.strength-text.weak { color: var(--neon-red); }
.strength-text.fair { color: var(--neon-orange); }
.strength-text.good { color: var(--neon-yellow); }
.strength-text.strong { color: var(--neon-green); }

@media (max-width: 768px) {
    .password-generator {
        padding: 25px;
    }
    
    .password-display input {
        font-size: 0.9rem;
    }
    
    .option-checkboxes {
        gap: 10px;
    }
    
    .checkbox-label {
        padding: 10px 15px;
    }
}