body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #1a1a1a;
  color: #fff;
  overflow: hidden;
  cursor: none;
}

.windows-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  z-index: -1;
}

.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: #2d2d2d;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.profile-card.visible {
  animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 50px));
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.terminal-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #444;
}

.terminal-buttons {
  display: flex;
  gap: 8px;
  margin-right: 15px;
}

.terminal-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f56;
}

.terminal-buttons span:nth-child(2) {
  background: #ffbd2e;
}

.terminal-buttons span:nth-child(3) {
  background: #27c93f;
}

.terminal-title {
  color: #8b8b8b;
  font-size: 14px;
  font-family: 'Consolas', monospace;
}

.profile-content {
  text-align: center;
}

.profile-header {
  margin-bottom: 30px;
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #444;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.profile-image:hover {
  transform: scale(1.05);
  border-color: #666;
}

.typing-text {
  font-family: 'Consolas', monospace;
  font-size: 18px;
  margin: 10px 0;
  color: #8b8b8b;
  min-height: 24px;
}

.prompt {
  color: #27c93f;
  margin-right: 10px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  background: #2d2d2d;
  border: 1px solid #444;
  border-radius: 5px;
  color: #8b8b8b;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Consolas', monospace;
}

.social-link:hover {
  background: #3d3d3d;
  border-color: #555;
  color: #fff;
  transform: translateX(5px);
}

.social-link i {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.console {
  background: #1a1a1a;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  height: 400px;
  position: fixed;
  right: -600px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.console-header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: #2d2d2d;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #444;
}

.console-buttons {
  display: flex;
  gap: 8px;
  margin-right: 15px;
}

.console-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f56;
}

.console-buttons span:nth-child(2) {
  background: #ffbd2e;
}

.console-buttons span:nth-child(3) {
  background: #27c93f;
}

.console-title {
  color: #8b8b8b;
  font-size: 14px;
  font-family: 'Consolas', monospace;
}

.console-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  font-family: 'Consolas', monospace;
  font-size: 14px;
  color: #8b8b8b;
}

.command-line {
  margin-bottom: 10px;
}

.command {
  color: #fff;
}

.command-output {
  color: #27c93f;
  margin: 10px 0;
  white-space: pre-line;
}

.console-input {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: #27c93f;
  margin-left: 5px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}

#enter-text {
  font-family: 'Consolas', monospace;
  font-size: 24px;
  color: #27c93f;
  animation: blink 1s infinite;
}

.cursor-dot {
  width: 32px;
  height: 32px;
  background: url('./assets/cursor/pointer.cur') no-repeat center center;
  background-size: contain;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 10px;
  }
  
  .profile-card {
    max-width: 100%;
    transform: none;
  }
  
  .console {
    position: fixed;
    right: -100%;
    width: 100%;
    height: 50vh;
    top: auto;
  bottom: 0;
    transform: none;
    border-radius: 10px 10px 0 0;
}

  .console.active {
  right: 0;
}

  .social-link {
    padding: 10px 15px;
  }
  
  .profile-image {
    width: 120px;
    height: 120px;
  }
  
  .typing-text {
    font-size: 16px;
  }
}

#audio-background {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.play-button {
  background: #2d2d2d;
  border: 1px solid #444;
  color: #8b8b8b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: #3d3d3d;
  border-color: #555;
  color: #fff;
}

.credits {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #666;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.credits:hover {
  opacity: 1;
}

.source-link {
  background: #2d2d2d;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

.source-link:hover {
  background: #3d3d3d;
  border-color: #555;
}

.source-link i {
  color: #8b8b8b;
}


