<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #333;
}

.profile p {
  color: #666;
  margin-bottom: 10px;
}

.links {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  margin-bottom: 30px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: white;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.link-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
  background-color: #f8f8f8;
}

.link-button:active {
  transform: translateY(0);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icon {
  color: #555;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #000;
}

footer {
  margin-top: 20px;
  color: #888;
  font-size: 0.8rem;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .container {
      padding: 30px 15px;
  }
  
  .avatar {
      width: 80px;
      height: 80px;
  }
  
  .profile h1 {
      font-size: 1.5rem;
  }
  
  .link-button {
      padding: 14px;
  }
}</pre></body></html>