/* Font + Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Fira Code', monospace;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  min-height: 100vh;
}

/* Glassmorphism Container */
.container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 800px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Headers and Text */
header {
  text-align: center;
  margin-bottom: 2rem;
}
header h1 {
  font-size: 2.5rem;
  background: linear-gradient(to right, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subtitle {
  font-size: 1.1rem;
  color: #ccc;
}

section {
  margin-bottom: 2rem;
}
h2 {
  margin-bottom: 0.5rem;
  color: #ff8af1;
  font-size: 1.5rem;
}
p, li {
  line-height: 1.6;
  color: #ddd;
}

ul {
  list-style: none;
  padding-left: 0;
}
li {
  margin-bottom: 0.5rem;
}

/* Skills Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tags span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}
.profiles {
  text-align: center;
  margin: 2em 0;
}

.profile-links {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
  margin-top: 1em;
}

.profile-link {
  text-decoration: none;
  color: #fff;
  font-family: 'Fira Code', monospace;
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5em 1em;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.profile-link img {
  filter: invert(100%);
}

.profile-link:hover {
  background: rgba(255, 255, 255, 0.2);
}
