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

/* --------------------
   BODY
-------------------- */

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #2b2d31;
  color: white;
}

/* --------------------
   ENTER
-------------------- */

#enter {
  font-size: 36px;
  cursor: pointer;
  position: absolute;
  color: white;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  outline: none;
  text-shadow: 0 0 10px white;
}

/* --------------------
   MAIN / VIDEO
-------------------- */

#main {
  display: none;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
}

#bgvid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* --------------------
   BASE
-------------------- */

.base {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  z-index: 1;
}

/* --------------------
   PROFILE CARD
-------------------- */

.profile {
  width: 250px;
  min-height: 335px;
  padding-bottom: 20px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: transform 0.3s ease;
}

.profile:hover {
  transform: scale(1.05);
}

/* --------------------
   IMAGE
-------------------- */

.image {
  width: 200px;
  height: 200px;
  margin-top: 20px;
  margin-bottom: 6px;

  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

/* --------------------
   NAME
-------------------- */

.name {
  font-size: 24px;
  margin-top: 6px;
  color: white;
  text-decoration: none;

  text-shadow:
    0 0 5px white,
    0 0 10px white,
    0 0 20px white;

  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.name:hover {
  transform: scale(1.2);
  text-shadow:
    0 0 10px white,
    0 0 20px white,
    0 0 40px white;
}

/* --------------------
   VIEW COUNTER
-------------------- */

#views {
  margin-top: 4px;
  margin-bottom: 10px;

  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;

  opacity: 0.85;
  text-shadow:
    0 0 6px rgba(255,255,255,0.6),
    0 0 12px rgba(255,255,255,0.4);
}

#views i {
  font-size: 13px;
}

/* --------------------
   ICONS
-------------------- */

.icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 2px;
}

.icons a {
  color: white;
  font-size: 22px;
  transition: transform 0.25s ease;
}

.icons a i {
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,0.6))
    drop-shadow(0 0 8px rgba(255,255,255,0.4))
    drop-shadow(0 0 14px rgba(255,255,255,0.25));
}

.icons a:hover {
  transform: scale(1.25);
}

.icons a:hover i {
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.9))
    drop-shadow(0 0 14px rgba(255,255,255,0.8))
    drop-shadow(0 0 28px rgba(255,255,255,0.6));
}
