```css
*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

:root{
--green:#00ff88;
--dark:#050505;
--card:#101010;
--text:#ffffff;
}

body{
font-family:'Poppins',sans-serif;
background:#000;
color:white;
overflow-x:hidden;
}

/* MATRIX BACKGROUND */

#matrix-bg{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:
radial-gradient(circle at center,
rgba(0,255,136,.08),
transparent 60%);
z-index:-2;
}

body::before{
content:'';
position:fixed;
width:100%;
height:100%;
background:
linear-gradient(
transparent 95%,
rgba(0,255,136,.03) 100%
);
background-size:100% 4px;
pointer-events:none;
z-index:-1;
}

/* NAVBAR */

nav{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.6);
backdrop-filter:blur(15px);
z-index:999;
border-bottom:1px solid rgba(0,255,136,.2);
}

.logo{
font-family:'Orbitron',sans-serif;
font-size:28px;
font-weight:700;
color:var(--green);
text-shadow:0 0 15px var(--green);
}

nav{
position:fixed;
top:0;
left:0;
right:0;

padding:20px 30px;

display:flex;
justify-content:space-between;
align-items:center;

background:rgba(0,0,0,.6);
backdrop-filter:blur(15px);

z-index:999;

border-bottom:1px solid rgba(0,255,136,.2);
}

nav ul{
display:flex;
gap:25px;
list-style:none;

padding-right:80px;
}

nav ul li{
white-space:nowrap;
}

nav a{
text-decoration:none;
color:white;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#00ff88;
text-shadow:0 0 10px #00ff88;
}           

nav a{
text-decoration:none;
color:white;
transition:.3s;
}

nav a:hover{
color:var(--green);
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:120px 8%;
gap:50px;
}

.hero-left{
flex:1;
}

.hero-left h3{
color:var(--green);
letter-spacing:2px;
margin-bottom:10px;
}

.hero-left h1{
font-size:5rem;
font-family:'Orbitron',sans-serif;
line-height:1;
}

.hero-left h1 span{
color:var(--green);
text-shadow:0 0 20px var(--green);
}

.hero-left h2{
margin-top:20px;
font-size:1.8rem;
}

.hero-left p{
margin-top:25px;
font-size:1.1rem;
line-height:1.8;
}

.quote{
color:#00ff88;
font-style:italic;
text-shadow:0 0 10px #00ff88;
margin-top:10px;
}

.hero-buttons{
margin-top:35px;
display:flex;
gap:20px;
}

.btn{
padding:15px 30px;
background:var(--green);
color:black;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:.3s;
}

.btn:hover{
transform:translateY(-5px);
box-shadow:0 0 25px var(--green);
}

.btn-outline{
padding:15px 30px;
border:2px solid var(--green);
color:var(--green);
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:.3s;
}

.btn-outline:hover{
background:var(--green);
color:black;
}

.hero-right{
flex:1;
display:flex;
justify-content:center;
}

.hero-right img{
width:450px;
max-width:100%;
filter:drop-shadow(0 0 35px var(--green));
animation:float 5s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-25px);
}

100%{
transform:translateY(0);
}

}

/* SECTION */

section{
padding:100px 8%;
}

.section-title{
font-family:'Orbitron',sans-serif;
text-align:center;
font-size:2.5rem;
margin-bottom:50px;
color:var(--green);
text-shadow:0 0 15px var(--green);
}

/* ABOUT */

.glass-card{
display:flex;
align-items:center;
justify-content:flex-start;
gap:40px;
padding:40px;
background:rgba(255,255,255,.05);
backdrop-filter:blur(15px);
border:1px solid rgba(0,255,136,.2);
border-radius:20px;
box-shadow:0 0 30px rgba(0,255,136,.15);
}

.profile-pic{
width:220px;
height:220px;

min-width:220px;
min-height:220px;

aspect-ratio:1/1;

object-fit:cover;

display:block;

flex-shrink:0;

border-radius:50%;

border:4px solid #00ff88;

box-shadow:
0 0 15px #00ff88,
0 0 30px #00ff88,
0 0 60px #00ff88;

transition:.4s ease;
}

.profile-pic:hover{
transform:scale(1.05);

box-shadow:
0 0 20px #00ff88,
0 0 40px #00ff88,
0 0 80px #00ff88;
}

/* SKILLS */

.skill-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(180px,1fr));
gap:20px;
}

.skill-card{
padding:25px;
text-align:center;
background:var(--card);
border:1px solid rgba(0,255,136,.2);
border-radius:15px;
transition:.3s;
font-weight:600;
}

.skill-card:hover{
transform:translateY(-10px);
box-shadow:0 0 20px var(--green);
}

/* PROJECTS */

.wanted-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.wanted-card{
background:#f7e4b0;
color:black;
padding:25px;
border-radius:10px;
text-align:center;
transition:.3s;
font-family:'Georgia',serif;
}

.wanted-card h3{
font-size:2rem;
margin-bottom:10px;
}

.wanted-card h4{
margin-bottom:15px;
}

.wanted-card:hover{
transform:scale(1.05);
}

/* TERMINAL */

.terminal{
background:black;
padding:30px;
border-radius:15px;
border:1px solid var(--green);
font-family:monospace;
line-height:2;
box-shadow:0 0 20px rgba(0,255,136,.2);
}

.socials{
display:flex;
justify-content:center;
gap:30px;
margin-top:40px;
}

.socials img{
width:60px;
transition:.3s;
}

.socials img:hover{
transform:scale(1.2);
filter:drop-shadow(0 0 15px var(--green));
}

/* FOOTER */

footer{
padding:30px;
text-align:center;
background:#050505;
border-top:1px solid rgba(0,255,136,.2);
}

/* MOBILE */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-left h1{
font-size:3rem;
}

.hero-right img{
width:280px;
}

.glass-card{
flex-direction:column;
text-align:center;
}

nav ul{
display:none;
}

}
/* HIDE NORMAL CURSOR */

body{
cursor:none;
}

/* SWORD CURSOR */

#swordCursor{
position:fixed;

top:-100px;
left:-100px;

width:60px;
height:auto;

pointer-events:none;

z-index:99999;

filter:drop-shadow(0 0 10px #00ff88);

user-select:none;
}
@media (max-width: 1200px){

nav ul{
gap:15px;
}

nav a{
font-size:14px;
}

}