:root{
  --bg: #0b0d14;
  --panel: rgba(14, 16, 26, 0.82);
  --panel2: rgba(10, 12, 20, 0.72);
  --border: rgba(255,255,255,0.10);
  --text: #ffffff;
  --muted: rgba(220, 220, 235, 0.62);
  --accent: #ff8a3d;      
  --accent2: #7b00ff;     
  --shadow: 0 12px 40px rgba(0,0,0,.45);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }


.layout{
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 18px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
}


.sidebar{
  position: sticky;
  top: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px 14px;
}

.panel-title{
  margin: 0 0 10px 0;
  font-size: 18px;
  color: var(--muted);
  letter-spacing: .5px;
}

.nav{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-link{
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  text-align: left;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
}
.nav-link{
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-link:hover{
  background: rgba(123, 0, 255, 0.1);
  border: 1px solid rgba(123,0,255,0.35);
  color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}
  
.nav-link.is-active{
  background: rgba(123, 0, 255, 0.1);
  border: 1px solid rgba(135, 15, 145, 0.22);
  color: rgba(255,255,255,0.95);
}

.status{
  display:flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,0.82);
}
.status-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}
.dot-online{
  background: #51ff8a;
  box-shadow: 0 0 0 3px rgba(81,255,138,0.12);
}
.dot-offline{
  background: #ff5151;
  box-shadow: 0 0 0 3px rgba(81,255,138,0.12);
}
.dot-clock{
  background: rgba(255,138,61,0.9);
  box-shadow: 0 0 0 3px rgba(255,138,61,0.12);
}

.contact{
  list-style: none;
  padding: 0;
  margin: 0;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.contact-ic{
  display:inline-block;
  width: 22px;
  color: rgba(255,255,255,0.45);
}
.muted, .muted-link{
  color: var(--muted);
}
.muted-link{
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
}
.muted-link:hover{
  color: rgba(255,255,255,0.9);
  border-bottom-color: rgba(255,138,61,0.35);
}

.content{
  display:flex;
  flex-direction: column;
  gap: 16px;
}

.hero{
  display:flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18,20,32,0.85), rgba(10,12,20,0.72));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.avatar{
  width: 96px;
  height: 96px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-text{ flex:1; }

.glow{
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
  text-shadow:
    0 0 1px rgba(255,255,255,0.9),
    0 0 16px rgba(255,255,255,0.22),
    0 0 40px rgba(123,0,255,0.40);
}

.subline{
  margin-top: 6px;
  display:flex;
  gap: 8px;
  align-items:center;
  flex-wrap: wrap;
}

.tag{
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
}
.tag-soft{
  border-color: rgba(255,138,61,0.22);
  background: rgba(255,138,61,0.08);
}

.intro{
  margin: 10px 0 0 0;
  color: rgba(235,235,245,0.78);
  max-width: 72ch;
}

.tab{ display:none; }
.tab.is-active{ display:block; }

.card{
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-title{
  margin: 0 0 10px 0;
  font-size: 22px;
  color: rgba(255,255,255,0.90);
}
.card-text{
  margin: 0 0 10px 0;
  color: rgba(235,235,245,0.78);
}

.chips{ display:flex; gap:10px; flex-wrap: wrap; margin-top: 10px; }
.chip{
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(123,0,255,0.10);
  border: 1px solid rgba(123,0,255,0.22);
  color: rgba(255,255,255,0.84);
}

.wall{
  margin-top: 12px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.wall-entry{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 12px 12px;
}
.wall-name{
  color: rgba(255,255,255,0.88);
  margin-bottom: 2px;
}
.wall-msg{
  color: rgba(235,235,245,0.80);
}
.wall-date{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(220,220,235,0.50);
}

/* Projects */
.card-head{
  display:flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.filters{
  display:flex;
  gap: 10px;
  align-items:center;
}

.input, .select{
  font-family: inherit;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 12px;
  outline: none;
}
.input::placeholder{ color: rgba(220,220,235,0.45); }
.input:focus, .select:focus{
  border-color: rgba(255,138,61,0.35);
  box-shadow: 0 0 0 4px rgba(255,138,61,0.10);
}

.projects{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  padding: 14px;
}
.project-top{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.project-title{
  font-size: 18px;
  color: rgba(255,255,255,0.92);
}
.project-tagline{
  margin-top: 2px;
  color: rgba(220,220,235,0.62);
  font-size: 14px;
}
.project-desc{
  margin: 10px 0 10px 0;
  color: rgba(235,235,245,0.78);
}

.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.80);
}
.badge-active{
  border-color: rgba(81,255,138,0.25);
  background: rgba(81,255,138,0.10);
}
.badge-wip{
  border-color: rgba(255,138,61,0.28);
  background: rgba(255,138,61,0.10);
}

.meta{ display:flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.meta-row{ display:flex; gap: 10px; align-items:flex-start; }
.meta-label{
  width: 44px;
  font-size: 12px;
  color: rgba(220,220,235,0.50);
}
.meta-val{ display:flex; gap: 8px; flex-wrap: wrap; }

.pill{
  font-size: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.80);
}
.pill-soft{
  border-color: rgba(123,0,255,0.22);
  background: rgba(123,0,255,0.10);
}

.links{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.link{
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,138,61,0.25);
  background: rgba(255,138,61,0.08);
  color: rgba(255,255,255,0.88);
}
.link:hover{
  background: rgba(255,138,61,0.12);
  border-color: rgba(255,138,61,0.40);
}

/* Blog */
.post{
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.post-title{ font-size: 18px; }
.post-meta{ font-size: 12px; color: rgba(220,220,235,0.50); margin-top: 4px; }
.post-body{ margin-top: 10px; color: rgba(235,235,245,0.78); }

.footer{
  padding: 6px 4px;
  color: rgba(220,220,235,0.50);
}

/* Responsive */
@media (max-width: 980px){
  .layout{ grid-template-columns: 1fr; }
  .sidebar{ position: static; }
  .projects{ grid-template-columns: 1fr; }
}

.skill {
  margin-bottom: 14px;
}

.skill-head {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.skill-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #543dff,
    #7b00ff
  );
  box-shadow:
    0 0 10px rgba(123,0,255,0.4),
    0 0 6px rgba(255,138,61,0.4);
}

.skill-note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(220,220,235,0.45);
  font-style: italic;
}

.link-btn{
  cursor: pointer;
  font-family: inherit;
}

.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}
.modal.is-open{ display: block; }

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.modal-card{
  position: relative;
  max-width: 920px;
  margin: 8vh auto;
  background: rgba(10,12,20,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  box-shadow: 0 16px 70px rgba(0,0,0,.55);
  padding: 14px;
}

.modal-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px 12px 8px;
}
.modal-title{
  color: rgba(255,255,255,0.9);
  font-size: 18px;
}
.modal-x{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  border-radius: 12px;
  padding: 6px 10px;
  cursor: pointer;
}
.modal-x:hover{
  border-color: rgba(255,138,61,0.35);
  background: rgba(255,138,61,0.10);
}

.carousel{
  display:flex;
  align-items:center;
  gap: 10px;
}

.car-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}
.car-btn:hover{
  border-color: rgba(255,138,61,0.35);
  background: rgba(255,138,61,0.10);
}
.car-btn:disabled{
  opacity: .45;
  cursor: not-allowed;
}

.car-stage{
  position: relative;
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.car-img{
  width: 100%;
  height: min(56vh, 520px);
  object-fit: contain;
  display:block;
}

.car-counter{
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 10px;
  border-radius: 999px;
}

.thumbs{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 2px;
}
.thumb{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 4px;
  cursor: pointer;
}
.thumb img{
  width: 92px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
  display:block;
}
.thumb.is-active{
  border-color: rgba(255,138,61,0.45);
  box-shadow: 0 0 0 3px rgba(255,138,61,0.12);
}

.project-features{
  margin: 10px 0 12px 18px;
  padding: 0;
  color: rgba(235,235,245,0.78);
  font-size: 14px;
}

.project-features li{
  margin-bottom: 4px;
  list-style: "• ";
}

.imprint{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.imprint-name{
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}

.imprint-address{
  color: rgba(220,220,235,0.6);
  line-height: 1.4;
  padding-left: 2px;
}

.imprint-contact{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: rgba(220,220,235,0.6);
}


.soft-skill-list{
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.soft-skill-list li{
  position: relative;
  padding: 10px 12px 10px 34px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(235,235,245,0.85);
  font-size: 14px;
}

.soft-skill-list li::before{
  content: "✦";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,138,61,0.9);
  font-size: 12px;
}

.soft-skill-list li:hover{
  border-color: rgba(255,138,61,0.35);
  background: rgba(255,138,61,0.08);
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.contact-form label{
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: rgba(220,220,235,0.7);
}

.contact-form input,
.contact-form textarea{
  font-family: inherit;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 12px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(255,138,61,0.45);
  box-shadow: 0 0 0 3px rgba(255,138,61,0.12);
}

.contact-submit{
  margin-top: 6px;
  align-self: flex-start;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,138,61,0.35);
  background: rgba(255,138,61,0.1);
  color: rgba(255,255,255,0.9);
  cursor: pointer;
}

.contact-submit:hover{
  background: rgba(255,138,61,0.18);
  border-color: rgba(255,138,61,0.55);
}


body{
  margin:0;
  font-family: "Delius", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'>\
  <text x='60' y='72' text-anchor='middle' font-size='28' \
        fill='rgba(255,255,255,0.055)'>♥</text>\
</svg>");
  background-repeat: repeat;
}
