@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Share Tech Mono', monospace;
}

body{
background:#000;
color:#e0e0e0;
}

canvas{
position:fixed;
top:0;
left:0;
z-index:-1;
}

header{
padding:30px;
background:#000;
display:flex;
justify-content:space-between;
align-items:center;
border-bottom:1px solid #111;
}

.title{
color:#ff0033;
font-size:28px;
text-shadow:0 0 10px #ff0033;
}

.profile{
width:120px;
height:120px;
border:2px solid #ff0033;
overflow:hidden;
}

.profile img{
width:100%;
height:100%;
object-fit:cover;
transform: rotate(90deg) scale(1.3);
}

.hero{
padding:60px;
text-align:center;
}

.hero h1{
color:#ff0033;
}

.terminal{
background:#000;
border:1px solid #ff0033;
padding:20px;
margin:40px auto;
max-width:1100px;
min-height:250px;
color:#ff0033;
position:relative;
}

.scan{
height:2px;
background:red;
position:absolute;
top:0;
left:0;
right:0;
animation:scan 3s infinite linear;
}

@keyframes scan{
0%{top:0}
100%{top:100%}
}

.container{
max-width:1100px;
margin:auto;
padding:20px;
}

.section{
background:#050505;
border:1px solid #111;
padding:30px;
margin-bottom:40px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:#050505;
border:1px solid #111;
padding:20px;
transition:0.3s;
}

.card:hover{
border-color:#ff0033;
box-shadow:0 0 15px rgba(255,0,0,0.3);
transform:translateY(-5px);
}

.card h3{
color:#ff0033;
margin-bottom:10px;
}

.card p{
color:#aaa;
}

.linkedin{
color:#00ff00;
text-decoration:none;
font-weight:bold;
}

.linkedin:hover{
text-shadow:0 0 10px #00ff00;
}