@font-face {
  font-family: fontFamilyMedium;
  src: url("/media/fonts/SanukRound-Medium.woff2");
  font-display: swap;
}
:root {
  --screen-padding: 20px;
  --button-size: 90px;
  --mic-holder-size: 130px;
}

html, body {
  height: 100%;
  margin: 0;
  overscroll-behavior: none;
  touch-action: none;
  font-family: fontFamilyMedium;
  letter-spacing: 2px;
  -webkit-text-size-adjust: 100%;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

#SOG-controller, #SOG-controller * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

#SOG-controller-micro-holder,
#SOG-controller-ok,
.SOG-controller-arrow {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
}

button, button:focus, button:active {
  outline: none;
  box-shadow: none;
}

a, p, svg {
  -webkit-user-select: none;
  user-select: none;
}

body {
  background: url("/media/images/background-motif.webp") repeat #031c35;
  background-size: 1000px;
  background-position: -20% 50%;
}

#SOG-controller {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  inset: 0;
  overflow: hidden;
}
#SOG-controller #SOG-controller-header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 99;
  background: #023359;
}
#SOG-controller #SOG-controller-header #SOG-controller-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 70%;
  z-index: 2;
}
#SOG-controller #SOG-controller-header #SOG-controller-login {
  height: 70%;
  position: absolute;
  right: 5%;
}
#SOG-controller #SOG-controller-header #SOG-controller-off {
  position: absolute;
  left: 5%;
  height: 70%;
  border-radius: 100px;
}
#SOG-controller #SOG-controller-content {
  color: white;
  width: calc(100% - var(--screen-padding));
  height: calc(100% - var(--screen-padding));
  max-width: 1200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
#SOG-controller #SOG-controller-content #SOG-controller-error {
  color: #ff8080;
  font-size: 1.2em;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#SOG-controller #SOG-controller-content #SOG-controller-ok {
  width: 130px;
  height: 130px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  user-select: none;
  pointer-events: auto;
  touch-action: none;
  transition: 0.2s;
}
#SOG-controller #SOG-controller-content #SOG-controller-ok:active {
  transform: translate(-50%, -50%) scale(0.95);
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder {
  width: auto;
  height: calc(var(--mic-holder-size) + 30px);
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 5%;
  transform: translateX(-50%);
  text-align: center;
  user-select: none;
  pointer-events: auto;
  touch-action: none;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder img {
  max-width: calc(var(--mic-holder-size));
  max-height: calc(var(--mic-holder-size));
  border-radius: calc( var(--mic-holder-size) / 2.9);
  transition: 0.2s;
  cursor: pointer;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder img:active {
  transform: scale(0.9);
  filter: brightness(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.192);
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder .mic-loader {
  display: none;
  position: absolute;
  width: calc(var(--mic-holder-size) / 2);
  height: calc(var(--mic-holder-size) / 2);
  left: 50%;
  top: calc(var(--mic-holder-size) / 4);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder .mic-loader::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: #2affff;
  border-radius: 50%;
  animation: mic-spin 0.7s linear infinite;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder.is-loading .mic-loader {
  display: block;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder.is-loading img {
  opacity: 0.45;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder.is-active img {
  box-shadow: 0 0 18px rgba(42, 255, 255, 0.45);
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder p {
  margin-top: 10px;
  background: #031c35;
  border-radius: 100px;
  padding: 5px 20px;
  position: relative;
  width: auto;
  text-wrap: nowrap;
  white-space: nowrap;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder #sog-speech-wave {
  width: 100vw;
  height: 34px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(1);
  bottom: -17px;
  opacity: 0;
  visibility: hidden;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder #sog-speech-wave #sogSpeechWaveCanvas {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes mic-spin {
  to {
    transform: rotate(360deg);
  }
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows {
  position: absolute;
  left: 50%;
  top: calc( 50% - var(--mic-holder-size) / 2.5);
  width: calc(var(--button-size)* 3 + 10px);
  height: calc(var(--button-size)* 3 + 10px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .SOG-controller-arrow {
  position: absolute;
  width: var(--button-size);
  height: var(--button-size);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  pointer-events: auto;
  touch-action: none;
  transition: 0.2s;
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows #SOG-controller-arrow-up {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows #SOG-controller-arrow-up:active {
  transform: translateX(-50%) scale(0.95);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows #SOG-controller-arrow-down {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows #SOG-controller-arrow-down:active {
  transform: translateX(-50%) scale(0.95);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows #SOG-controller-arrow-left {
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows #SOG-controller-arrow-left:active {
  transform: translateY(-50%) scale(0.95);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows #SOG-controller-arrow-right {
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows #SOG-controller-arrow-right:active {
  transform: translateY(-50%) scale(0.95);
}
#SOG-controller #SOG-controller-content #SOG-audioInfo-word {
  width: calc( 100% - 10px );
  height: 60px;
  background: linear-gradient(0deg, #04243e, #083c69);
  border: 4px solid #2affff;
  border-radius: 2vw;
  position: absolute;
  overflow: hidden;
  bottom: 0;
}
#SOG-controller #SOG-controller-content #SOG-audioInfo-word .speech-loader-lottie {
  position: absolute;
  top: -20px;
  z-index: 9999;
  width: 100%;
  height: 100px;
  left: 50%;
  transform: translateX(-50%) scale(2);
  display: none;
}
#SOG-controller #SOG-controller-content #SOG-audioInfo-word p {
  padding: 0;
  width: 90%;
  text-align: center;
  text-transform: capitalize;
  text-wrap: normal;
  overflow-wrap: break-word;
  letter-spacing: 2px;
  height: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -2px;
  font-size: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
  left: 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#SOG-tv-qrcode {
  width: 100%;
  height: 100vh;
  background: #062e5242;
  backdrop-filter: blur(10px);
  left: 0;
  top: 0;
  position: fixed;
  z-index: 9999999;
  display: none;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #044276;
  border-radius: 50px;
  background-size: cover;
  width: auto;
  height: 800px;
  aspect-ratio: 0.75;
  padding: 35px 0;
  border-bottom: 10px solid #013258cc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.178);
}
#SOG-tv-qrcode #SOG-tv-qrcode-content h1 {
  font-size: 50px;
  text-align: center;
  margin: 0;
  color: #20e2f0;
  font-weight: bolder;
  margin-bottom: 15px;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content p {
  text-align: center;
  font-size: 18px;
  padding: 0 4%;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content .qr-box {
  width: auto;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  height: 49% !important;
  width: auto !important;
  aspect-ratio: 1/1;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2vh;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content .qr-box canvas {
  border-radius: 30px;
  box-shadow: 0 0 18px rgba(42, 255, 255, 0.274);
  background: white;
  height: 100% !important;
  width: 100% !important;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #quit-qr-code {
  position: absolute;
  left: calc(100% - 64px);
  top: 20px;
  cursor: pointer;
  display: none;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #quit-qr-code img {
  width: 80px;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #quit-qr-code div {
  width: 79px;
  height: 50px;
  position: absolute;
  left: 2px;
  top: 0;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #qr-code-or {
  width: 100%;
  margin-top: -10px;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #qr-code-or p {
  text-transform: uppercase;
  font-size: 40px;
  background: #044276;
  padding: 0 10px;
  width: 90px;
  z-index: 2;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #qr-code-or img {
  position: absolute;
  width: 85%;
  left: 7.5%;
  margin-top: 32px;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #qr-manual {
  width: 80%;
  text-align: center;
  background: #022441;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #094e82;
  border-radius: 25px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  margin-top: -10px;
  height: auto;
  overflow: hidden;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #qr-manual p {
  padding: 0;
  margin: 0;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #qr-manual p:nth-child(1) {
  width: 100%;
  padding: 2% 0;
  font-size: 25px;
  background: #023359;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #qr-manual p:nth-child(2) {
  padding: 2% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #qr-manual p:nth-child(2) span {
  opacity: 0.5;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content #qr-manual p:nth-child(2) .span-code, #SOG-tv-qrcode #SOG-tv-qrcode-content #qr-manual p:nth-child(2) .SOG-qr-code-txt {
  background: #fcc000;
  color: #023359;
  border-radius: 1000px;
  padding: 0px 30px;
  padding-top: 2px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.185);
  font-weight: bolder;
  letter-spacing: 0;
  font-size: 30px;
  opacity: 1;
  letter-spacing: 1px;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content button {
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 0;
  background: url("/media/images/buttons/green-button.webp");
  background-size: cover;
  border: none;
  outline: none;
  width: auto;
  height: 15%;
  aspect-ratio: 3/1;
  border-radius: 35px;
  transition: 0.2s;
  transform: translateY(-60%) translateX(-50%) scale(0.8);
  margin-left: 0;
  cursor: pointer;
  display: none;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content button p {
  color: white;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  justify-content: center;
  font-weight: bolder;
  font-family: fontFamilyUltra;
  text-shadow: 0px 0.6vh 0 #0f6701;
  text-transform: uppercase;
  font-size: 4.5vh;
  text-wrap: nowrap;
  white-space: nowrap;
  flex-wrap: wrap;
  position: absolute;
  display: flex;
  align-items: center;
  line-height: 10px;
  height: 100%;
  top: 50%;
  margin-top: -2%;
  transform: translateY(-50%);
  letter-spacing: 3px;
}
#SOG-tv-qrcode #SOG-tv-qrcode-content button:hover {
  filter: brightness(1.1);
}

#firetv-bar-header {
  width: 100%;
  height: 7%;
  background-size: 300% 100%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.02);
}
#firetv-bar-header.actif-no-mic {
  background: linear-gradient(90deg, #7f1d1d, #b91c1c, #dc2626, #ef4444, #dc2626, #b91c1c, #7f1d1d);
  background-size: 300% 100%;
  box-shadow: 0 0 12px 2px rgba(239, 68, 68, 0.55), 0 0 24px 6px rgba(239, 68, 68, 0.25) inset;
  filter: saturate(1.2);
}
#firetv-bar-header.actif {
  background: linear-gradient(90deg, #0ea5e9, #38bdf8, #7dd3fc, #bae6fd, #7dd3fc, #38bdf8, #0ea5e9);
  background-size: 300% 100%;
  box-shadow: 0 0 10px 2px rgba(56, 189, 248, 0.65), 0 0 15px 6px rgba(56, 189, 248, 0.35) inset;
  filter: saturate(1.2);
}

#SOG-remote-input-code {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
#SOG-remote-input-code #SOG-remote-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 72px;
  top: 24px;
  user-select: none;
  pointer-events: none;
}
#SOG-remote-input-code .code-card {
  width: 90%;
  max-width: 600px;
  border-radius: 36px;
  background: linear-gradient(180deg, #07508a 0%, #044276 55%, #033a66 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
  padding: 28px 0;
  position: absolute;
  overflow: hidden;
  top: 50dvh;
  left: 50%;
  transform: translate(-50%, -50%);
}
#SOG-remote-input-code .code-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 220px at 50% 0%, rgba(255, 255, 255, 0.12), transparent 60%);
  pointer-events: none;
}
#SOG-remote-input-code .code-card h1 {
  position: relative;
  z-index: 1;
  font-size: 40px;
  text-align: center;
  margin: 0;
  color: #20e2f0;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 0 20px;
  line-height: 1.2;
}
#SOG-remote-input-code .code-card p {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 18px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.92);
  margin: 12px 0 0;
  line-height: 1.35;
}
#SOG-remote-input-code .code-card .code-form {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#SOG-remote-input-code .code-card .code-row {
  display: flex;
  justify-content: center;
  width: 90%;
  position: relative;
  left: 5%;
  gap: 0 3%;
}
#SOG-remote-input-code .code-card .code-row .code-box {
  width: 13%;
  aspect-ratio: 0.9;
  padding: 0;
  line-height: 1;
  text-indent: 0;
  letter-spacing: 0;
  font-kerning: none;
  font-variant-ligatures: none;
  font-size: 28px;
  font-weight: 800;
  font-family: system-ui, -apple-system, "SF Pro Display", "SF Pro Text", Arial, sans-serif;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(255, 255, 255, 0);
  outline: none;
  text-align: center;
  color: #023359;
  text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}
#SOG-remote-input-code .code-card .code-row .code-box:focus {
  border-color: rgba(32, 226, 240, 0.95);
  box-shadow: 0 0 0 4px rgba(32, 226, 240, 0.18), 0 10px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}
#SOG-remote-input-code .code-card .code-error {
  min-height: 22px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 64, 64, 0.16);
  border: 1px solid rgba(255, 64, 64, 0.2);
  border-radius: 14px;
  padding: 10px 12px;
  margin: 0 10px;
}
#SOG-remote-input-code .code-card .code-error.is-hidden {
  opacity: 0;
  pointer-events: none;
  padding: 0;
  border: 0;
  background: transparent;
  min-height: 0;
  margin: 0;
}
#SOG-remote-input-code .code-card .code-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 10px;
  margin-top: 2px;
}
#SOG-remote-input-code .code-card .code-actions .btn {
  height: 54px;
  border-radius: 18px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
#SOG-remote-input-code .code-card .code-actions .btn:active {
  transform: scale(0.98);
}
#SOG-remote-input-code .code-card .code-actions .btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #eaf6ff 100%);
  color: #022a44;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}
#SOG-remote-input-code .code-card .code-actions .btn-primary:hover {
  filter: brightness(1.02);
}
#SOG-remote-input-code .code-card .code-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

#SOG-controller-profile {
  padding: 10px 0;
  margin-top: 50px;
  left: 50%;
  position: relative;
  max-width: 530px;
  padding: 20px 20px;
  transform: translateX(-50%) scale(1);
  margin-bottom: 0px;
  display: none;
}
#SOG-controller-profile p {
  background: none;
  color: white;
  padding: 5px 20px;
  text-align: center;
  margin: 0;
  font-family: fontFamilyMedium;
  letter-spacing: 1px;
  font-size: 1.2rem;
  border-radius: 15px;
  z-index: 2;
  position: relative;
}
#SOG-controller-profile #header-profile-nb-coins, #SOG-controller-profile #header-profile-rank {
  display: flex;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  background: #013257;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  margin-top: 15px;
  padding-top: 5px;
}
#SOG-controller-profile #header-profile-nb-coins p, #SOG-controller-profile #header-profile-rank p {
  font-size: 25px;
  font-family: fontFamilyRegular;
  letter-spacing: 2px;
  font-weight: bold;
  text-align: center;
  margin-left: 30px;
}
#SOG-controller-profile #header-profile-nb-coins img, #SOG-controller-profile #header-profile-rank img {
  height: 50px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 2px;
}
#SOG-controller-profile #header-profile-rank {
  background: none;
  display: flex;
  margin-top: 5px;
  justify-content: center;
  width: 100%;
}
#SOG-controller-profile #header-profile-rank img {
  height: 65px;
  margin-left: 0px;
  position: relative;
  transform: none;
  margin-top: 5px;
}
#SOG-controller-profile #header-profile-rank p {
  margin-left: 50px;
  font-weight: 100;
  font-size: 28px;
  font-family: fontFamilyRegular;
  text-wrap: nowrap;
  white-space: nowrap;
  margin: 0;
  margin-left: 10px;
}
#SOG-controller-profile #header-user-icon {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 25px;
  width: 100px;
  margin-bottom: 15px;
}
#SOG-controller-profile #header-profile-username {
  text-align: center;
  background: none;
  font-size: 30px;
  text-wrap: nowrap;
  white-space: nowrap;
  font-family: fontFamilyBold;
  padding-left: 0;
  padding-right: 0;
}
#SOG-controller-profile #header-profile-email {
  text-align: center;
  background: none;
  font-size: 20px;
  text-wrap: nowrap;
  white-space: nowrap;
  font-family: fontFamilyBold;
  margin-top: -10px;
  color: #facd29;
  margin-bottom: 0px;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 0px;
}
#SOG-controller-profile ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 40px;
  margin-top: 20px;
}
#SOG-controller-profile ul li {
  cursor: pointer;
  transition: 0.2s;
}
#SOG-controller-profile ul li:nth-child(1) {
  margin: 0 0px;
}
#SOG-controller-profile ul li:nth-child(1) a {
  color: skyblue;
}
#SOG-controller-profile ul li a {
  text-align: center;
  width: 100%;
  color: white;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 17px;
  text-wrap: nowrap;
  white-space: nowrap;
}
#SOG-controller-profile ul li img {
  height: 20px;
  margin-top: -2px;
  margin-right: 6px;
}
#SOG-controller-profile ul li:hover {
  opacity: 0.8;
}
#SOG-controller-profile #header-sep-line {
  width: 100%;
}
#SOG-controller-profile #header-social-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 15px;
  gap: 30px;
}
#SOG-controller-profile #header-social-links a {
  cursor: pointer;
  border-radius: 1000px;
  width: 15%;
  transition: 0.2s;
}
#SOG-controller-profile #header-social-links a img {
  width: 100%;
  border-radius: 1000px;
  box-shadow: 0px 4px 0 #001d34;
}

#SOG-controller-search-keyboard {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  text-align: center;
  z-index: 10;
}
#SOG-controller-search-keyboard #SOG-search-kb-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
#SOG-controller-search-keyboard #SOG-controller-search-input {
  width: 100%;
  box-sizing: border-box;
  background: #0c5489;
  border: 2px solid rgba(42, 255, 255, 0.3);
  outline: none;
  padding: 14px 20px;
  color: white;
  border-radius: 1000px;
  font-size: 18px;
  letter-spacing: 2px;
  font-family: fontFamilyMedium;
  transition: 0.2s;
  -webkit-user-select: text;
  user-select: text;
}
#SOG-controller-search-keyboard #SOG-controller-search-input:focus {
  border-color: rgba(42, 255, 255, 0.7);
  box-shadow: 0 0 12px rgba(42, 255, 255, 0.25);
}
#SOG-controller-search-keyboard #SOG-controller-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#SOG-controller-search-keyboard #SOG-search-kb-close {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 40px;
  border-radius: 1000px;
  font-size: 16px;
  font-family: fontFamilyMedium;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.2s;
}
#SOG-controller-profile #header-social-links a:hover {
  filter: brightness(1.1);
}
#SOG-controller-profile #header-social-links a:active {
  transform: scale(0.95);
}
#SOG-controller-profile .arrow-up {
  margin-top: -12px;
}

/*# sourceMappingURL=style.css.map */
