@font-face {
  font-family: "Aptos Rounded";
  src: url("./fonts/aptos-rounded.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Aptos Rounded", sans-serif;

  /* Dein edler Schwarz/Grau/Gold Verlauf */
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(212, 175, 55, 0.20) 0%,
      rgba(26, 26, 26, 0.85) 42%,
      #0c0c0c 100%
    ),
    linear-gradient(160deg, #0c0c0c 0%, #1a1a1a 45%, #2a2a2a 100%);

  color: #ffffff;
}

.page-wrapper {
  width: 100%;
  max-width: 480px;
  padding: 18px;
}

.card {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 0 35px rgba(0, 0, 0, 0.65),
    0 0 22px rgba(212, 175, 55, 0.18);
}

.profile {
  margin-bottom: 14px;
}

.avatar {
  width: 200px;
  height: 200px;
  border-radius: 12%;
  margin-bottom: 15px;
  border: 3px solid #d4af37;
  background: #2a2a2a;
  padding: 8px;
  object-fit: cover;
}

h1 {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 6px;
}

p {
  font-size: 1.00rem;
  color: #bcbcbc;
  line-height: 1.45;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

/* Button mit Icon links & zentriertem Text */
.link-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #4D4D4D;
  border: 1px solid #d4af37;
  padding: 14px 18px;
  border-radius: 999px;

  font-size: 1.00rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
}

/* Unsichtbarer Button, behält Platz im Layout */
.link-button.hidden-btn {
  visibility: hidden;
}

.link-button:hover {
  background: #d4af37;
  color: #000000;
  transform: translateY(-2px);
}

/* Icon links, unabhängig vom Text */
.link-button img.icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Text wirklich mittig */
.link-button span {
  display: block;
  width: 100%;
  text-align: center;
}

.footer {
  margin-top: 22px;
  font-size: 0.8rem;
  color: #9d9d9d;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
}

.modal-content {
  background: #1a1a1a;
  padding: 32px;
  border-radius: 14px;
  border: 1px solid #d4af37;
  text-align: center;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.35);
}

.modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 0.95rem;
  color: #cccccc;
}

.modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.modal-button {
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
}

.modal-button.yes {
  background: #d4af37;
  color: #000000;
}

.modal-button.no {
  background: #2a2a2a;
  color: #ffffff;
  border: 1px solid #d4af37;
}
