:root{
  --bg1:#0b1020;
  --bg2:#0f1a2e;
  --card:#0d1628;
  --accent:#14b8a6;
  --muted:#93a3b8;
  --glass:rgba(255,255,255,0.03)
}



.taskbar-item.active{
  background:linear-gradient(135deg, var(--accent), rgba(20,184,166,0.8));
  color:#061014;
  font-weight:600;
  box-shadow:0 4px 15px rgba(20,184,166,0.3);
}

.taskbar-icon{
  font-size:16px;
}

.taskbar-text{
  font-size:13px;
  font-weight:500;
}

@media(max-width:768px){
  .taskbar-text{
    display:none;
  }
  
  .taskbar-item{
    padding:8px 12px;
  }
  
  .taskbar-content{
    gap:2px;
  }
}

*{
  box-sizing:border-box;
  font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial
}

html,body{
  height:100%
}

body{
  margin:0;
  background:radial-gradient(1200px 600px at 10% 10%, rgba(20,184,166,0.08), transparent),
    radial-gradient(1000px 500px at 90% 20%, rgba(99,102,241,0.08), transparent),
    linear-gradient(180deg,var(--bg1) 0%, var(--bg2) 100%);
  color:#e6eef6
}

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 24px 24px;
  flex-direction: column;
}

.panels-container{
  display:flex;
  flex-direction:column;
  gap:24px;
  width:100%;
  max-width:1000px;
}

@media(min-width:768px){
  .panels-container{
    flex-direction:row;
    gap:32px;
  }
}

.panel{
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.06);
  border-radius:16px;
  flex:1;
  padding:28px;
  box-shadow:0 10px 30px rgba(2,6,23,0.6)
}

.avatar{
  width:80px;
  height:80px;
  border-radius:50%;
  margin:0 auto 16px;
  background:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  font-weight:700;
  color:#061014;
  overflow:hidden;
  border:3px solid var(--accent);
  box-shadow:0 4px 15px rgba(20, 184, 166, 0.3)
}

.avatar img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  transition:transform 0.3s ease
}

.avatar:hover img{
  transform:scale(1.1)
}

h1{
  font-size:24px;
  margin:0 0 8px 0;
  text-align:center
}

p.subtitle{
  color:var(--muted);
  margin:0 0 24px 0;
  text-align:center;
  font-size:14px
}

.links{
  display:flex;
  flex-direction:column;
  gap:12px
}

.link{
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.06);
  padding:16px;
  border-radius:12px;
  text-decoration:none;
  color:#e6eef6;
  transition:all 0.2s;
  position:relative
}

.link:hover{
  background:rgba(255,255,255,0.04);
  border-color:var(--accent);
  transform:translateY(-1px)
}

.link-icon{
  width:20px;
  height:20px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--accent);
  border-radius:6px;
  color:#061014;
  font-size:12px;
  font-weight:700
}

.link-text{
  flex:1
}

.link-title{
  font-weight:600;
  margin:0 0 2px 0
}

.link-desc{
  font-size:12px;
  color:var(--muted);
  margin:0
}

.link-arrow{
  color:var(--muted);
  font-size:14px;
  opacity:0.7
}

.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.06)
}

.brand-logo{
  height:20px;
  width:auto;
  border-radius:4px;
  background:#ffffff;
  padding:2px
}

.brand-text{
  color:var(--muted);
  font-size:12px;
  font-weight:500
}

footer{
  margin-top:16px;
  text-align:center;
  color:var(--muted);
  font-size:11px
}

/* Timeline Styles */
.timeline-section{
  width:100%;
  max-width:800px;
  margin:40px auto;
  padding:20px;
}

.timeline-section h2{
  text-align:center;
  font-size:28px;
  margin-bottom:40px;
  color:var(--accent);
}

.timeline{
  position:relative;
  padding-left:30px;
}

.timeline::before{
  content:'';
  position:absolute;
  left:15px;
  top:0;
  bottom:0;
  width:2px;
  background:linear-gradient(180deg, var(--accent), rgba(20,184,166,0.3));
}

.timeline-item{
  position:relative;
  margin-bottom:40px;
  opacity:0;
  transform:translateX(-50px);
  transition:all 0.8s ease;
}

.timeline-item.animate{
  opacity:1;
  transform:translateX(0);
}

.timeline-marker{
  position:absolute;
  left:-22px;
  top:8px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--accent);
  border:3px solid var(--bg1);
  box-shadow:0 0 0 3px rgba(20,184,166,0.3);
  animation:pulse 2s infinite;
}

.timeline-content{
  background:linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  padding:20px;
  margin-left:20px;
  position:relative;
  transition:all 0.3s ease;
}

.timeline-content:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(20,184,166,0.2);
  border-color:var(--accent);
}

.timeline-content::before{
  content:'';
  position:absolute;
  left:-8px;
  top:20px;
  width:0;
  height:0;
  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
  border-right:8px solid rgba(255,255,255,0.05);
}

.timeline-content h3{
  color:var(--accent);
  font-size:18px;
  margin:0 0 8px 0;
}

.timeline-content p{
  color:var(--muted);
  margin:0 0 10px 0;
  line-height:1.5;
}

.timeline-date{
  color:var(--accent);
  font-size:12px;
  font-weight:600;
  background:rgba(20,184,166,0.1);
  padding:4px 8px;
  border-radius:6px;
  display:inline-block;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(20,184,166,0.7);}
  70%{box-shadow:0 0 0 10px rgba(20,184,166,0);}
  100%{box-shadow:0 0 0 0 rgba(20,184,166,0);}
}

@media(min-width:600px){
  .panel{
    padding:34px
  }
  
  .timeline{
    padding-left:50px;
  }
  
  .timeline::before{
    left:25px;
  }
  
  .timeline-marker{
    left:-32px;
    width:16px;
    height:16px;
  }
  
  .timeline-content{
    margin-left:30px;
  }
}
