@import url('https://fonts.googleapis.com/css2?family=Nunito&family=Poppins&family=Comfortaa&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===================== Root Variables ===================== */
:root {
  --neon-fuchsia: rgba(255, 20, 147, 1.0);
  --hot-pink: rgba(255, 105, 180, 1.0);
  --bubblegum-pink: rgba(255, 182, 193, 1.0);
}

/* ===================== Base Layout ===================== */
body {
  margin: 0;
  padding: 0;
  background-image: url("./images/collage.png");
  background-size: cover;
  background-position: center;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

/* ===================== Card Layout ===================== */
.card {
  font-family: 'Nunito', 'Poppins', 'Comfortaa', sans-serif;
  background: rgba(19, 3, 16, 0.5);
  border: 2px solid #d1a8ff;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(209, 168, 255, 0.4);
  padding: 1.5rem;
  width: 100%;
  max-width: 300px;
  text-align: center;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.01);
  box-shadow: 0 0 40px rgba(209, 168, 255, 0.8);
}

/* ===================== Avatar ===================== */
.avatar-wrapper {
  width:60%;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  margin-top:20px;
}

.card-throne {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  z-index: 2;
}

.card-image {
  width: 100%;
  border-radius: 50%;
  border: 3px solid #99f6e4;
  object-fit: cover;
  background-color: #000;
  z-index: 1;
}

.card-throne:hover{
  filter: drop-shadow(0 0 15px var(--neon-fuchsia));
  transition: filter 0.2s, transform 0.2s;
}

/* ===================== Text ===================== */
.card-name {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.9rem;
  color: #ffaaff;
  margin-top: 0.5rem;
}

.card-username {
  font-size: 0.9rem;
  color: var(--hot-pink);
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.card-username:hover {
  filter: drop-shadow(0 0 15px var(--neon-fuchsia));
  transition: filter 0.2s, transform 0.2s;
}

.card-pronouns {
  font-size: 0.75rem;
  color: var(--bubblegum-pink);
  margin-bottom: 1rem;
  text-align: center;
}

.card-bio {
  font-size: 0.75rem;
  color: var(--bubblegum-pink);
  text-shadow: 1px 1px #000;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto;
}


/* ===================== Buttons ===================== */
.card-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.gg-btn {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 0.75rem;
  color: #000;
  background-color: #e3b8ff;
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 8px rgba(255, 204, 255, 0.5);
  text-decoration: none;
}

.gg-btn img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.gg-btn:hover {
  background-color: var(--neon-fuchsia);
  color: #fff;
  box-shadow: 0 0 12px rgba(238, 174, 255, 0.8);
}

/* ===================== Misc ===================== */
.mylinks {
  color: #e7faff;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top:1rem;
}

.mylinks img{
  height: 2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
  opacity: 50%;
}

.mylinks a {
  width:1rem;
  text-decoration: none;
  color: var(--hot-pink);
  margin: 0 10px;
}

.mylinks a:hover img {
  opacity: 100%;
  filter: drop-shadow(0 0 8px var(--neon-fuchsia));
  transform: scale(1.15);
  transition: filter 0.2s, transform 0.2s;
}

.neonsign {
  display: block;
  margin: 0 auto 20px;
  width: 50%;
  height: 90px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.82);
  padding-top: 10vh;
  box-shadow: 0 0 25px rgba(209, 168, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
