@font-face {
  font-family: 'Toxigenesis';
  src: url('assets/toxigenesis bd.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Counter-Strike';
  src: url('assets/cs_regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --olive: #556b2f;
  --army-green: #4b5320;
  --dark-gray: #181c1f;
  --black: #000;
  --accent: #8f9779;
  --white: #fff;
  --glass: rgba(24,28,31,0.92);
  --glass-border: rgba(85,107,47,0.32);
  --glass-shadow: 0 8px 32px #000a;
  --blur: blur(8px);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 100vh;
  color: var(--white);
  font-family: 'Toxigenesis', 'Counter-Strike', monospace;
  background: url('assets/bg.jpg') center/cover no-repeat, linear-gradient(120deg, var(--black) 60%, var(--army-green) 100%);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background: inherit;
  filter: blur(12px) brightness(0.7);
  pointer-events: none;
}

.bio-center {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bio-card {
  background: var(--glass);
  border-radius: 32px;
  border: 1.5px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 2.2rem 2.2rem 1.5rem 2.2rem;
  max-width: 340px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  margin-bottom: 2.5rem;
  border-top: 2.5px solid var(--olive);
  border-bottom: 2.5px solid var(--army-green);
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  animation: fadeInCard 0.8s cubic-bezier(.4,0,.2,1) 0.2s forwards;
  transition: box-shadow 0.2s, transform 0.2s;
}
@keyframes fadeInCard {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--olive);
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 12px #0008;
  transition: box-shadow 0.2s, transform 0.18s;
  cursor: pointer;
}
.avatar:hover, .avatar:focus {
  box-shadow: 0 4px 24px #000b, 0 0 0 4px var(--olive);
  transform: scale(1.06) rotate(-2deg);
}

.bio-name {
  font-size: 2.1rem;
  color: var(--white);
  letter-spacing: 0.13em;
  text-shadow: 0 2px 0 #000a, 0 0 8px #8f977988;
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 0.1em;
  text-align: center;
  border-radius: 18px;
  padding: 0.1em 0.5em;
}

.bio-desc {
  font-size: 1.08rem;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 0.2em;
  border-radius: 12px;
  padding: 0.2em 0.7em;
  background: rgba(85,107,47,0.10);
  box-shadow: 0 1px 4px #0002;
  animation: fadeInDesc 1.1s cubic-bezier(.4,0,.2,1) 0.5s backwards;
}
@keyframes fadeInDesc {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.social-row {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: var(--olive);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.7em 1.4em;
  font-size: 1.08rem;
  font-family: 'Toxigenesis', 'Counter-Strike', monospace;
  text-decoration: none;
  box-shadow: 0 2px 8px #0002;
  transition: background 0.2s, transform 0.1s, color 0.2s;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  outline: none;
}
.social-btn:hover, .social-btn:focus {
  background: var(--army-green);
  color: var(--accent);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px #0003;
}

.icon-steam::before {
  content: "\2699";
  font-size: 1.3em;
  margin-right: 0.2em;
  color: #c0c0c0;
}
.icon-soundcloud::before {
  content: "\266B";
  font-size: 1.3em;
  margin-right: 0.2em;
  color: #fff;
}

.enter-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
  opacity: 1;
  cursor: pointer;
  font-family: 'Toxigenesis', 'Counter-Strike', monospace;
  font-size: 2.2rem;
  color: var(--olive);
  letter-spacing: 0.12em;
  user-select: none;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px #000c;
  backdrop-filter: blur(2px);
}
.enter-overlay span {
  background: #000;
  padding: 1.2em 2.5em;
  border-radius: 24px;
  border: 1.5px solid var(--glass-border);
  box-shadow: 0 2px 12px #0008;
  color: var(--olive);
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 0 #000a, 0 0 8px #8f977988;
  font-family: 'Toxigenesis', 'Counter-Strike', monospace;
}
.enter-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .bio-card {
    max-width: 99vw;
    padding: 1.2rem 0.3rem 1rem 0.3rem;
    border-radius: 18px;
  }
  .bio-name {
    font-size: 1.2rem;
    border-radius: 10px;
  }
  .avatar {
    width: 64px;
    height: 64px;
  }
  .enter-overlay span {
    font-size: 1.1rem;
    border-radius: 12px;
    padding: 0.7em 1.2em;
  }
  .social-btn {
    font-size: 0.95rem;
    padding: 0.5em 0.7em;
    border-radius: 8px;
  }
} 