:root {
  --bg: #080b11;

  --surface: linear-gradient(
    180deg,
    rgba(25, 29, 38, 0.92),
    rgba(14, 17, 24, 0.95)
  );

  --text: #f4f7fb;
  --muted: #99a2b3;

  --border: rgba(255, 255, 255, 0.08);

  --accent: #8aa0ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  min-height: 100vh;
  background:
    linear-gradient(rgba(8, 11, 17, 0.75), rgba(8, 11, 17, 0.92)),
    url("../pics/background/eydooremake.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.card {
  width: min(760px, 100%);

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 30px;

  backdrop-filter: blur(24px);

  padding: 52px;

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.back {
  color: var(--muted);

  text-decoration: none;

  transition: 0.2s;
}

.back:hover {
  color: white;
}

.hero {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-top: 30px;

  margin-bottom: 30px;
}

.pfp {
  width: 120px;

  height: 120px;

  border-radius: 999px;

  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.08);

  flex-shrink: 0;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.pfp img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hero-info {
  display: flex;

  flex-direction: column;

  gap: 6px;
}

h1 {
  font-size: 3rem;

  letter-spacing: -0.05em;

  background: linear-gradient(90deg, #74b9ff, #9bd6ff, #bfa6ff);

  -webkit-background-clip: text;

  background-clip: text;

  -webkit-text-fill-color: transparent;

  color: transparent;
}

.subtitle {
  color: var(--accent);

  font-size: 1rem;
}

.country {
  display: flex;

  align-items: center;

  gap: 12px;

  color: #d6deeb;
}

.flag {
  width: 34px;

  border-radius: 6px;
}

section {
  margin-top: 34px;
}

h2 {
  margin-bottom: 12px;

  font-size: 1.2rem;

  color: white;
}

p {
  color: #d5dae5;

  line-height: 1.9;

  margin-bottom: 18px;
}

.tags {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 18px;
}

.tag {
  padding: 10px 16px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid var(--border);

  color: var(--muted);

  font-size: 0.92rem;
}

.goal {
  margin-top: 18px;
}

iframe {
  border: none;

  width: 100%;

  max-width: 430px;

  height: 60px;
}

.footer {
  margin-top: 44px;

  color: #687082;

  font-size: 0.9rem;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 75px;
  height: 75px;
}

@media (max-width: 850px) {
  body {
    justify-content: center;

    padding: 20px;
  }

  .hero {
    flex-direction: column;

    text-align: center;
  }

  .card {
    padding: 36px;
  }

  h1 {
    font-size: 2.3rem;
  }

  .country {
    justify-content: center;
  }
}
