html {
  cursor: url('/extra/cursor.png'), default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  color: #e4e3e3;
  text-decoration: none;
}

body,
input {
  color: #e4e3e3;
  background-color: #000;
}

@font-face {
  font-family: courier_regular;
  src: url('/extra/Consolas.html');
}

* {
  padding: 0;
  margin: 0;
  font-family: consolas, sans-serif;
}

body {
  overflow-x: hidden;
}

input {
  outline: 0;
  border: none;
}

td {
  padding: 3px;
}

hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border-style: dashed;
}

pre {
  font-size: 1.15em;
}

.box,
body,
input {
  background-color: #000;
}

.box {
  padding: 15px;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.container {
  position: fixed;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#description_block {
  margin-left: 0.65pc;
}

.emoticon {
  vertical-align: middle;
}

.main {
  overflow: hidden;
}

.background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -3;
}

#pattern {
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: -1;
  opacity: 1;
}

#pattern,
#background {
  position: absolute;
  width: 100%;
  height: 100%;
}

.start-block {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  z-index: 9999;

  opacity: 1;
  transition: opacity 0.8s ease;
}

.start-block.hidden {
  opacity: 0;
  pointer-events: none;
}

.start-btn {
  --color: #2990cb;
  --hover: #30aaf0;
}

.start-btn:hover, .start-btn:focus {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  transform: translateY(-0.25em);
}

.mobile-top {
    width: 420px;
    display: flex;
    position: relative;
}

button {
  color: var(--color);
  transition: 0.25s;
}

button:hover, button:focus {
  border-color: var(--hover);
  color: #fff;
}

button {
  cursor: url('/extra/cursor.png'), default;
  background: none;
  border: 2px solid;
  font: inherit;
  line-height: 1;
  margin: 0.5em;
  padding: 1em 2em;
}

#background {
  z-index: -2;
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 135%;
  min-height: 110%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  overflow: hidden;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.footer {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: small;
}

::-webkit-scrollbar {
  width: 0;
}
.profile-card {
    position: relative;
    height: 350px;
    margin: auto;
    margin-top: 10vh;
    border-radius: 28px;

    background: linear-gradient(
        135deg,
        rgba(32, 8, 8, 0.90),
        rgba(67, 16, 16, 0.90),
        rgba(107, 25, 24, 0.92)
    );

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 25px rgba(107,25,24,.25),
        inset 0 0 30px rgba(255,255,255,.03);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    animation: fadeIn 1s ease;
}

.on-pc {
    width: 700px;
}

.profile-card::before {
    background: rgba(107,25,24,.22);
}

.profile-card::after {
    background: rgba(155,45,44,.18);
}

.pfp {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.08);

    margin-bottom: 20px;
    z-index: 2;

    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.username {
    color: #ffb2b0;
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
    position: relative;

    text-shadow:
        0 0 8px rgba(255,180,180,.9),
        0 0 18px rgba(220,70,70,.85),
        0 0 36px rgba(107,25,24,.9),
        0 0 60px rgba(107,25,24,.65);
}

.username::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 170%;
    height: 180%;

    background: radial-gradient(
        circle,
        rgba(107,25,24,.45) 0%,
        rgba(107,25,24,.22) 45%,
        transparent 75%
    );

    filter: blur(35px);
    z-index: -1;
}

.bio {
    margin-top: 10px;
    color: #dca0a0;
    font-size: 15px;
    z-index: 2;
}

.socials {
    display: flex;
    gap: 28px;
    margin-top: 30px;
    z-index: 2;
}

.socials a {
    color: white;
    font-size: 36px;
    transition: 0.25s ease;

    text-shadow: 0 0 10px rgba(255,255,255,0.35);
}

.socials a:hover {
    transform: translateY(-4px) scale(1.1);
    color: #ff8b8b;

    text-shadow:
        0 0 12px rgba(255,120,120,.7);
}

.views {
    position: absolute;
    bottom: 18px;
    left: 20px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #cc7777;
    font-size: 16px;
    z-index: 2;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 99999;
    border-radius: 18px;
    border: 3px solid rgba(107,25,24,.45);

    box-shadow:
        0 0 20px rgba(107,25,24,.30),
        0 0 45px rgba(107,25,24,.18),
        inset 0 0 20px rgba(107,25,24,.12);

    overflow: hidden;
}

body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: 100000;
    border-radius: 999px;
    background: #ffd9d9;

    box-shadow:
        0 0 8px rgba(255,215,215,1),
        0 0 16px rgba(255,120,120,.95),
        0 0 28px rgba(180,45,45,.90),
        0 0 50px rgba(107,25,24,.80);

    animation: rgbBorder 8s linear infinite;
}

@keyframes rgbBorder {

    /* TOP */
    0% {
        top: 0;
        left: -140px;

        width: 140px;
        height: 3px;
    }

    24.99% {
        top: 0;
        left: 100%;
        
        width: 140px;
        height: 3px;
    }

    /* RIGHT */
    25% {
        top: -140px;
        left: calc(100% - 3px);

        width: 3px;
        height: 140px;
    }

    49.99% {
        top: 100%;
        left: calc(100% - 3px);

        width: 3px;
        height: 140px;
    }

    /* BOTTOM */
    50% {
        top: calc(100% - 3px);
        left: 100%;

        width: 140px;
        height: 3px;
    }

    74.99% {
        top: calc(100% - 3px);
        left: -140px;

        width: 140px;
        height: 3px;
    }

    /* LEFT */
    75% {
        top: 100%;
        left: 0;

        width: 3px;
        height: 140px;
    }

    100% {
        top: -140px;
        left: 0;

        width: 3px;
        height: 140px;
    }
}