*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, sans-serif;
}

body{
background:#0d1117;
display:flex;
justify-content:center;
padding:40px;
}

.cv{
width:210mm;
min-height:297mm;
background:#161b22;
color:white;
padding:40px;
box-shadow:0 0 40px rgba(0,255,200,0.15);
}

header{
display:flex;
align-items:center;
margin-bottom:30px;
}

.photo img{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
border:3px solid #00ffc3;
margin-right:25px;
}

.header-info h1{
font-size:32px;
color:#00ffc3;
}

.header-info h2{
font-size:18px;
font-weight:400;
margin-bottom:10px;
}

.tagline{
font-size:14px;
color:#9aa4b2;
margin-bottom:10px;
}

.contact p{
font-size:13px;
color:#c9d1d9;
}

.grid{
display:grid;
grid-template-columns: 35% 65%;
gap:30px;
}

section h3{
color:#00ffc3;
margin-bottom:12px;
margin-top:20px;
border-bottom:1px solid #30363d;
padding-bottom:5px;
}

.skill{
margin-bottom:10px;
}

.skill span{
font-size:13px;
}

.bar{
background:#30363d;
height:6px;
margin-top:5px;
border-radius:4px;
}

.bar div{
background:#00ffc3;
height:100%;
border-radius:4px;
}

ul{
margin-left:18px;
margin-bottom:10px;
}

ul li{
margin-bottom:5px;
font-size:13px;
}

.job{
margin-bottom:15px;
}

.job h4{
font-size:15px;
color:white;
}

.job span{
font-size:12px;
color:#9aa4b2;
}

.project p{
font-size:13px;
margin-bottom:6px;
}

.tech{
color:#00ffc3;
}

.edu{
margin-bottom:10px;
}

.edu h4{
font-size:14px;
}

.edu span{
font-size:12px;
color:#9aa4b2;
}

@media print{
body{
background:white;
}

.cv{
box-shadow:none;
}
}