* { margin: 0; padding: 0; box-sizing: border-box; cursor: url('cursor.cur') 16 16, auto !important;}
.corner-icon {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  z-index: 1000;
  transition: transform 0.2s ease;
  margin-left: 10px;
}

.corner-icon:hover {
  transform: scale(1.1);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f1117;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
  background-image: url('wallpaper.gif');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.card {
  background: rgba(30, 30, 30, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  
h1 { font-size: 24px; font-weight: 600; }
p { color: #bbb; margin: 5px 0 15px; font-size: 14px; }
.tags {
  background: #222222;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 20px;
}
.tags span { margin: 0 5px; }
.learning-tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #222222;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 20px;
}

.learning {
  position: relative;
  padding-left: 12px;
  color: white;
  font-weight: 500;
  font-family: inherit;
}

.learning::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.buttons .btn {
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;

  background-color: #222222;
  color: white;
  font-weight: 600;
  border: 0.0px solid #6e6e6e;
  border-radius: 10px;
  cursor: pointer;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  transition: transform 0.25s ease, background-color 0.25s ease;  
}

/* Hover effect */
.buttons .btn:hover {
  transform: scale(1.05);
  background-color: #647b8a;
}

#skillsContainer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 1s ease, opacity 1s ease;
}

#skillsContainer.open {
  max-height: 1000px;
  opacity: 1;
}

.skill-bar {
  display: flex;
  align-items: center;
  background: #222222;
  border-radius: 12px;
  padding: 6px 12px;
  margin-bottom: 10px;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.skill-name {
  flex: 1;
  font-weight: 600;
  font-size: 13px;
  color: #e0e0e0;
  text-align: left;
}

.progress {
  flex: 5;
  background: #1b1b1b;
  border-radius: 12px;
  overflow: hidden;
  height: 12px;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

.progress-fill {
  background: linear-gradient(90deg, #ffffff 0%, #647b8a 100%);
  height: 100%;
  border-radius: 12px 12px 12px 12px; 
  transition: width 0.6s ease-in-out;
  box-shadow: 0 1px 4px 647b8a(0, 0, 0, 0.6);
}

.skill-percent {
  flex: 0.5;
  font-weight: 600;
  font-size: 12px;
  color: #aaa;
  text-align: right;
  min-width: 35px;
}

.divider {
  margin: 20px auto;
  width: 80%;
  height: 1px;
  background-color: #868686;
  opacity: 0.5;
  margin-top: 5%;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  font-size: 18px;
}
.socials a {
  color: #bbb;
  transition: 0.2s;
}
.socials a:hover {
  color: #ffffff;
}

.status-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background-color: #1f1f1f;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00ff00;
  margin-right: 8px;
  animation: blink 1s infinite;
}

.status-text {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

#overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 1500;
}

.mini-music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(40, 40, 40, 0.9);
  border-radius: 30px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.mini-music-player:hover {
  background-color: rgba(50, 50, 50, 0.95);
  transform: translateY(-2px);
}

.mini-player-controls {
  display: flex;
  margin-right: 10px;
}

.mini-player-btn {
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  padding: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mini-player-btn:hover {
  color: #647b8a;
  transform: scale(1.1);
}

.mini-player-info {
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
}

.mini-player-info i {
  color: #647b8a;
  margin-right: 8px;
}

.corner-music-player {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background-color: #222;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.corner-music-player.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.player-header {
  background: linear-gradient(to right, #647b8a, #000000);
  padding: 15px;
  color: white;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.player-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.corner-close {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.corner-close:hover {
  opacity: 1;
}

.main-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  gap: 20px;
}

.control-btn {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.control-btn:hover {
  color: #647b8a;
  transform: scale(1.1);
}

.control-btn.play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #647b8a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.control-btn.play-btn:hover {
  background-color: #647b8a;
  color: white;
}

.volume-control {
  display: flex;
  align-items: center;
  padding: 0 15px 15px;
  gap: 10px;
}

.volume-icon {
  color: #aaa;
  font-size: 14px;
  min-width: 20px;
}

.volume-slider {
  flex-grow: 1;
  height: 4px;
  background-color: #555;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.volume-slider-fill {
  height: 100%;
  width: 70%;
  background-color: #647b8a;
  border-radius: 2px;
  position: relative;
}

.volume-slider-handle {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
}

.playlist-header {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  color: #aaa;
  font-size: 12px;
  border-top: 1px solid #333;
}

.playlist {
  max-height: 200px;
  overflow-y: auto;
}

.playlist::-webkit-scrollbar {
  width: 5px;
}

.playlist::-webkit-scrollbar-track {
  background: #222;
}

.playlist::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 5px;
}

.playlist-item {
  display: flex;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s;
  align-items: center;
}

.playlist-item:hover {
  background-color: #333;
}

.playlist-item.active {
  background-color: #647b8a;
}

.playlist-item.active .track-title {
  color: #8fa8b9;
}

.track-number {
  width: 20px;
  text-align: center;
  margin-right: 10px;
  color: #aaa;
  font-size: 12px;
}

.track-info {
  text-align: center;
  flex-grow: 1;
}

.track-title {
  font-weight: 600;
  font-size: 14px;
  color: white;
}

.track-artist {
  font-size: 12px;
  color: #aaa;
}

.now-playing {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #111;
  color: #647b8a;
  font-size: 14px;
  text-align: center;
}

.now-playing i {
  font-size: 12px;
}