canvas#line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
}

/* .main-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
} */

.main-container {
  display: flex;
  gap: 130px;  
  max-width: 1200px;              
  margin: 40px auto;              
  padding: 30px;                  
  border-radius: 12px;        
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); 
}


.sidebar {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
}

.profile-pic {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.content {
  flex: 2 1 600px;
  max-width: 800px;
}

.badge {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 90%;
}

.badge.grey {
  background: #eee;
  color: #333;
}

.badge.blue {
  background: #54AEFF;
  color: white;
}

.badge.green {
  background: #28a745;
  color: white;
}

.badge.dark {
  background: #333;
  color: white;
}

.windmill-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
}

.windmill {
  width: 100%;
  height: 100%;
  position: relative;
  animation: spin 3s linear infinite;
}

.blade {
  position: absolute;
  width: 8px;
  height: 30px;
  background-color: #4CAF50;
  top: 0;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 3px;
}

.blade1 { transform: rotate(0deg) translateX(-50%); }
.blade2 { transform: rotate(90deg) translateX(-50%); }
.blade3 { transform: rotate(180deg) translateX(-50%); }
.blade4 { transform: rotate(270deg) translateX(-50%); }

.center {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #555;
  border-radius: 50%;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  z-index: 10;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
