/* ============================= */
/* RESET */
/* ============================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a1a1a, #0d0d0d 70%);
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
}

/* ============================= */
/* LAYOUT */
/* ============================= */

.hub {
  width: 100%;
  max-width: 520px;
  padding: 32px 28px;
  text-align: center;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ============================= */
/* PROFILE */
/* ============================= */

.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 88px;
  border-radius: 50%;
  margin-bottom: 10px;
  
}

.brand {
  width: 280px;
  opacity: 0.92;
  image-rendering: auto;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 28px;
}

/* ============================= */
/* CTA - GAMER ANIMATION */
/* ============================= */

.btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  color: #fff;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 28px;
  overflow: hidden;
  transition: all 0.25s ease;
}

/* Glow animated layer */
.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(
    120deg,
    #6c5ce7,
    #00cec9,
    #6c5ce7
  );
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 0.6;
  animation: glowMove 3s linear infinite;
}

@keyframes glowMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.btn:hover {
  transform: translateY(-2px);
  border-color: transparent;
}

.btn:focus-visible {
  outline: 2px solid #8ab4ff;
  outline-offset: 3px;
}

/* ============================= */
/* BIO */
/* ============================= */

.bio {
  text-align: left;
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.bio p {
  margin-bottom: 14px;
}

.bio a {
  color: #8ab4ff;
  text-decoration: none;
  font-weight: 500;
}

.bio a:hover {
  text-decoration: underline;
}

/* ============================= */
/* SOCIALS */
/* ============================= */

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* ICON BUTTON */

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #262626;
  border: 1px solid #333;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.socials a:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(255,255,255,0.08);
}

.socials a:focus-visible {
  outline: 2px solid #8ab4ff;
  outline-offset: 3px;
}

/* SVG */

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: #fff;
}

/* ============================= */
/* ACCESSIBILITY */
/* ============================= */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================= */
/* MOBILE HEIGHT FIX */
/* ============================= */

@media (max-height: 700px) {
  body {
    align-items: flex-start;
    padding-top: 40px;
  }
}
