/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Inter Placeholder, sans-serif;
  background-color: white;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Container layout */
.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.content {
  max-width: 32rem;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header section */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out 0.1s forwards;
}

.name-section h1 {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

.location {
  color: rgb(148, 148, 148);
  font-size: 16px;
  font-weight: 400;
}

/* Social buttons */
.social-buttons {
  display: flex;
  gap: 0.25rem;
  text-decoration: none;
}

.social-buttons a {
  text-decoration: none;
}

.visitor-info {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 4px;
  font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
  font-size: 12px;
  line-height: 1.4;
}

.info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
}

.info-item:last-child {
  margin-bottom: 0;
}

.label {
  color: #6b7280;
  font-weight: 500;
}

.visitor-info span:not(.label) {
  color: #111827;
  font-weight: 400;
}

.social-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 0px solid #d1d5db;
  background-color: rgb(237, 237, 237);
  color: rgb(148, 148, 148);
  font-size: 20pt;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.social-btn:hover {
  background-color: #e5e7eb;
  border-color: #9ca3af;
  color: #374151;
  transform: rotate(15deg);
}

/* Emoji cursor hover effects */
.emoji-hover {
  cursor: pointer;
  transition: all 0.2s ease;
}

.emoji-hover:hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><text x="0" y="12" font-size="16">%F0%9F%8C%8A</text></svg>'), auto;
}

.emoji-hover[data-emoji="✌️"]:hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><text x="12" y="18" font-size="16" text-anchor="middle" dominant-baseline="central">%E2%9C%8C%EF%B8%8F</text></svg>') 12 12, auto;
}

.emoji-hover[data-emoji="📷"]:hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><text x="12" y="18" font-size="16" text-anchor="middle" dominant-baseline="central">%F0%9F%93%B7</text></svg>') 12 12, auto;
}

/* Content sections */
.description, .experience {
  margin-bottom: 1.5rem;
  color: #111827;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
}

.description:nth-child(2) {
  animation: fadeInUp 0.5s ease-out 0.2s forwards;
}

.description:nth-child(3) {
  animation: fadeInUp 0.5s ease-out 0.3s forwards;
}

.experience {
  animation: fadeInUp 0.5s ease-out 0.4s forwards;
}

.experience {
  color: #6b7280;
}

/* Responsive design */
@media (max-width: 640px) {
  .container {
    padding: 1rem;
  }
  
  .header {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .name-section {
    flex: 1;
  }
  
  .social-buttons {
    flex-shrink: 0;
  }
  
  .content {
    max-width: 100%;
  }
} 