/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('https://static.vecteezy.com/system/resources/previews/046/120/286/non_2x/visually-dynamic-abstract-mesh-blur-backdrop-crafting-an-unforgettable-impression-as-a-website-hero-section-promotional-asset-or-digital-design-element-free-vector.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 40px 20px;
}

/* Glass container */
.container {
  max-width: 500px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Profile */
.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #4fd1c5;
  margin-bottom: 1rem;
}

.profile h1 {
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}

.profile p {
  font-size: 0.9rem;
  color: #f0f0f0;
  margin-bottom: 1.5rem;
}

/* Links */
.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(79, 209, 197, 0.9);
  color: #000;
  text-decoration: none;
  padding: 12px;
  margin: 10px 0;
  border-radius: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.links a i {
  font-size: 1.2rem;
}

.links a:hover {
  background: #38b2ac;
  transform: scale(1.03);
}

/* Mobile-first */
@media (max-width: 480px) {
  .profile img {
    width: 80px;
    height: 80px;
  }

  .container {
    padding: 1.2rem;
  }

  .links a {
    padding: 10px;
    font-size: 0.9rem;
  }

  .links a i {
    font-size: 1rem;
  }
}
