* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  background-color: #2e2a20;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px max(15px, env(safe-area-inset-right))
           calc(90px + env(safe-area-inset-bottom))
           max(15px, env(safe-area-inset-left));
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #2e2a20;
  background-image: url("https://freudiandeathdrive.com/src/sitebg.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: auto;
}

a, a:link, a:active, a:visited {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.container {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ededed;
  margin: 0 auto 16px;
  border: 1px solid #ababab;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.username {
  color: #fff;
  font-size: 18pt;
  font-weight: 600;
  margin-bottom: 15px;
}

.bio {
  color: #dedede;
  font-size: 12pt;
  margin-bottom: 30px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: #ffffff;
  color: #000;
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: bold;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.3;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, background 0.15s ease;
}

.contact-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  margin: 30px 0px;
}

.contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, background 0.15s ease;
}

.contact-icons svg {
  width: 20px;
  height: 20px;
  fill: #1a1a1a;
}

@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
  .link-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    text-decoration: none !important;
  }
  .contact-icons a:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
  }
}

.link-button:active,
.contact-icons a:active {
  background: #f0f0f0;
  transform: translateY(1px);
}

.site-logo {
    width: 100%;
    text-align: center;
    margin: 30px 0px 45px 0px;
}

.pyramid {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  max-width: 50px;
  width: 100%;
}

footer {
  margin: 30px 15px 60px 15px;
  font-size: 13px;
  line-height: 1.5;
}

footer, footer a, footer a:link {
  color: #eaeaea !important;
}

footer a:link {
  text-decoration: underline;
}

/* ADDITIONAL */

.box {
  background: #ffffff;
  color: #000;
  text-align: left;
  text-shadow: none;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  font-size: 16px;
  line-height: 1.55;
  font-weight: normal;
  margin: 0px 0px 30px 0px;
}

.box a,
.box a:link,
.box a:visited {
  color: #333;
  text-decoration: underline;
}

.box > * + * {
  margin-top: 12px;
}

.box {
  min-width: 0;
  overflow: hidden;
}

.embed {
  margin: 0 -20px -20px;
  border-radius: 0 0 11px 11px;
  overflow: hidden;
  line-height: 0;
}

.embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 0;
  background: #fff;
}

img, iframe, embed, object, video {
  max-width: 100%;
}

@media (max-width: 360px) {
  .embed {
    margin: 0 -16px -16px;
  }
}

@media (max-width: 360px) {
  .box {
    padding: 16px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .link-button:hover,
  .link-button:active,
  .contact-icons a:hover,
  .contact-icons a:active {
    transform: none;
  }
}

@media (max-width: 480px) {
  body {
    padding: 24px max(16px, env(safe-area-inset-right))
             calc(48px + env(safe-area-inset-bottom))
             max(16px, env(safe-area-inset-left));
  }
  .container {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .profile-pic {
    width: 80px;
    height: 80px;
  }
  .username {
    font-size: 19px;
  }
  .bio {
    font-size: 13px;
  }
  .link-button {
    padding: 12px 14px;
    font-size: 15px;
  }
}