/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

/* Container & Layout */
.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.content {
  text-align: center;
  max-width: 600px;
}

/* Profile Image */
.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: blur(2px);
}

/* Typography */
.name {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.tagline {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .name {
    font-size: 2.25rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .profile-image {
    width: 150px;
    height: 150px;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .name {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .profile-image {
    width: 130px;
    height: 130px;
  }

  .container {
    padding: 1.5rem;
  }
}
