:root {
  --bg-dark: #03110d;
  --panel-bg: rgba(5, 37, 30, 0.88);
  --panel-border: rgba(255, 255, 255, 0.18);
  --text-main: #f7f3eb;
  --text-accent: #d8fbe8;
  --accent: #7de1b4;
  --accent-strong: #2fcf86;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(1, 10, 8, 0.8), rgba(3, 22, 17, 0.75)),
    url("../img/pexels-elijahsad-3473569.jpg") center/cover no-repeat;
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  color: var(--text-main);
}

.overall-section {
  width: min(92vw, 720px);
  background: var(--panel-bg);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px 32px;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.intro-block {
  width: 100%;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  color: var(--accent);
}

.name-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-copy {
  margin: 12px auto 0;
  max-width: 560px;
  line-height: 1.7;
  font-size: 1.02rem;
  color: var(--text-accent);
}

.line-break {
  width: min(100%, 420px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    transparent
  );
  border: 0;
  margin: 24px 0 18px;
}

.link-item-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.link-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.link-item:hover,
.link-item:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: rgba(125, 225, 180, 0.12);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  outline: none;
}

.link-label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.link-url {
  font-size: 0.95rem;
  color: var(--text-accent);
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  body {
    padding: 16px;
    align-items: flex-start;
  }

  .overall-section {
    padding: 32px 20px 24px;
    width: 100%;
  }

  .intro-copy {
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .overall-section {
    padding: 24px 16px 20px;
    border-radius: 16px;
  }

  .name-title {
    font-size: 1.8rem;
    letter-spacing: 0.12em;
  }

  .intro-copy {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .link-item {
    padding: 14px 14px;
  }

  .link-label {
    font-size: 0.95rem;
  }

  .link-url {
    font-size: 0.9rem;
  }
}
