
:root {
  --font-links: 'Barlow Condensed', sans-serif;
  --font-header: 'Cherry Bomb One';
  --font-title: 'Titan One';
  --font-body: 'Montserrat';
  

  --bg:        #0f0a0a;
  --accent:    #61F21D;
  --accent-dim: #45C00B;
  --purple:    #AE1DF2;


  --grey-light: #C9D3CC;
  --grey-mid:   #7A857E;
  --grey-dark:  #333333;
  --text:       #FFFFFF;

}

.avatar-stack {
  position: relative;
  width: 60%;
  max-width: 300px;
  margin: 0.5rem auto;
  aspect-ratio: 1;
}

.avatar-photo {
  position: relative;
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 30%;
  align-items: center;
  border: 3px solid var(--grey-dark);
  transition: transform 0.4s ease;
  display: block;
  margin: 0 auto;
}

.avatar-photo:hover {
  border-color: var(--accent);
  transform: scale(1.2);
}

.avatar-logo {
  width: 40%;
  position: absolute;
  bottom: 5px;
  right: 5px;
  object-fit: contain;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  width: 100%;
  align-items: center;
  padding-bottom: 1rem;
}

.main-link {
display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  border-radius: 4px 16px 4px 16px;
  border: 2px solid var(--accent-dim);
  background: var(--grey-dark);
  color: var(--text);
  align-items: center;
  min-width: 50%;
  text-decoration: none;
  
}

.main-link-title {
  font-size: 1.5rem;
  font-family: var(--font-title);
}

.main-link-sub {
  font-size: 0.85rem;
  color: var(--grey-light);
}

.main-link:hover {
  border-color: var(--purple);
  color: var(--accent);
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid var(--accent-dim);
  text-decoration: none;
  font-family: var(--font-links);
  font-size: 18px;
}

.pill:hover {
  transform: scale(1.05);
  border-color: var(--purple);
  transition: transform 0.2s ease;
}

.pill-icon {
  padding: 0.3rem 0.3rem 0.3rem 0.4rem; 
  color: #fff;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  background: var(--brand);
}

.pill-label {
  padding: 0.15rem 0.4rem 0.17rem 0.2rem;
  background: var(--grey-dark);
  color: var(--text);
  margin: auto;
  align-items: center;
  justify-content: center;
}

.pill.bluesky   { --brand: #0085ff; }
.pill.twitch    { --brand: #9146ff; }
.pill.instagram { --brand: #e1306c; }
.pill.youtube   { --brand: #ff0000; }
.pill.xtwitter  { --brand: #000000; }
.pill.tiktok    { --brand: #000000; }

main {
  flex: 1;
}
header {
  font-family: var(--font-header);
  text-align: center;
  font-size: 32px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
  z-index: 9999;


  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 3px
  );
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;

  background: radial-gradient(
    ellipse at center,
    transparent 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

h1 {
  color: var(--accent);
  margin: 1rem;
}

footer {
  text-align: center;
  vertical-align: bottom;
  margin-top: 3rem;
  padding: 0.5rem;
  color: var(--accent-dim);
  background-color: var(--grey-dark);
}

#matrix {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.10;
}