body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #1a1a1a;
  color: #fff;
  overflow: hidden;
  cursor: none;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.profile-card {
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(0, 153, 255, 0.3);
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  max-width: 500px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 153, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.profile-card.visible {
  animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 30px)) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.profile-card:hover {
  border-color: rgba(0, 153, 255, 0.4);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(0, 153, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%) scale(1.02);
}

.terminal-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 153, 255, 0.3);
  background: rgba(15, 15, 15, 0.98);
}

.terminal-title {
  color: #0099FF;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Consolas', monospace;
  text-shadow: 0 0 5px rgba(0, 153, 255, 0.5);
  letter-spacing: 1px;
  text-transform: lowercase;
}

.profile-content {
  text-align: center;
}

.timezone-info {
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 153, 255, 0.15);
  border-radius: 8px;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: 'Consolas', monospace;
}

.info-item i {
  color: #0099FF;
  font-size: 20px;
}

.info-label {
  color: #8b8b8b;
  font-size: 16px;
}

.info-value {
  color: #0099FF;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 153, 255, 0.3);
}

.status-info {
  margin-bottom: 20px;
  padding: 15px 20px;
  background: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 153, 255, 0.15);
  border-radius: 8px;
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Consolas', monospace;
}

.status-item i {
  color: #0099FF;
  font-size: 18px;
}

.status-text {
  color: #8b8b8b;
  font-size: 14px;
  text-align: center;
}

.availability-section {
  margin-top: 30px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  font-family: 'Consolas', monospace;
  color: #8b8b8b;
  font-size: 16px;
}

.section-title i {
  color: #0099FF;
}

.time-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 15px;
  background: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 153, 255, 0.15);
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Consolas', monospace;
}

.time-slot:hover {
  background: rgba(35, 35, 35, 0.7);
  border-color: rgba(0, 153, 255, 0.4);
  transform: translateX(8px);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(0, 153, 255, 0.2);
}

.day-label {
  color: #8b8b8b;
  font-size: 16px;
}

.time-range {
  color: #0099FF;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 153, 255, 0.3);
}

.note-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: rgba(0, 153, 255, 0.05);
  border: 1px solid rgba(0, 153, 255, 0.2);
  border-radius: 8px;
  font-family: 'Consolas', monospace;
  color: #8b8b8b;
  font-size: 13px;
  margin-top: 10px;
}

.note-text i {
  color: #0099FF;
  font-size: 14px;
}

.cursor-dot {
  width: 16px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="20" viewBox="0 0 16 20"><path fill="%230099FF" d="M0,0 L16,8 L8,10 L14,18 L10,20 L4,12 L0,16 Z"/></svg>') no-repeat;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(0, 0);
  transition: transform 0.05s ease;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 10px;
  }
  
  .profile-card {
    max-width: 100%;
    transform: none;
    margin: 10px;
  }
  
  .time-slot {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .cursor-dot {
    display: none !important;
  }
  
  body {
    cursor: auto !important;
  }
}

