@font-face {
  font-family: fontFamilyMedium;
  src: url("/media/fonts/SanukRound-Medium.woff2");
  font-display: swap;
}
@font-face {
  font-family: fontFamilyRegular;
  src: url("/media/fonts/SanukRound-Regular.woff2");
  font-display: swap;
}
@font-face {
  font-family: fontFamilyBold;
  src: url("/media/fonts/SanukRound-Bold.woff2");
  font-display: swap;
}
@font-face {
  font-family: fontFamilyUltra;
  src: url("/media/fonts/SanukRound-Ultra.woff2");
  font-display: swap;
}
@font-face {
  font-family: puzzleGamesMainFont;
  src: url("/media/fonts/LilitaOne-Regular.woff2");
  font-display: swap;
}
:root {
  --remote-mascot: #2bb6f0;
  --remote-mascot-shadow: #084b76;
  --remote-green: #3ec74b;
  --remote-green-hi: #6cdf60;
  --remote-green-shadow: #0e5a20;
  --remote-red: #e83838;
  --remote-red-shadow: #6e0d0d;
  --remote-yellow: #ffd62e;
  --remote-purple: #8a3df0;
  --remote-dpad-size: 82px;
  --remote-dpad-center: 108px;
  --remote-mic-size: 110px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  overscroll-behavior: none;
  touch-action: none;
  font-family: fontFamilyMedium;
  letter-spacing: 1px;
  -webkit-text-size-adjust: 100%;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  background: url("/media/images/background-motif.webp") repeat #031c35;
  background-size: 1000px;
  background-position: -20% 50%;
  color: #e8f4ff;
}

#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: manipulation;
}

#SOG-controller-ok {
  width: 100px;
  min-width: 110px !important;
  min-height: 110px !important;
}

button, button:focus, button:active {
  outline: none;
}

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

#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: 58%;
  z-index: 2;
  cursor: pointer;
}
#SOG-controller #SOG-controller-header #SOG-controller-login {
  height: 58%;
  position: absolute;
  right: 16px;
  border-radius: 10px;
  cursor: pointer;
}
#SOG-controller #SOG-controller-header #SOG-controller-off {
  position: absolute;
  left: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, #ff6f6f, var(--remote-red));
  box-shadow: 0 4px 0 var(--remote-red-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 90ms, box-shadow 90ms;
}
#SOG-controller #SOG-controller-header #SOG-controller-off svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
#SOG-controller #SOG-controller-header #SOG-controller-off:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 var(--remote-red-shadow);
}
#SOG-controller #SOG-controller-content {
  color: white;
  width: 100%;
  height: calc(100% - 80px);
  position: absolute;
  top: 80px;
  left: 0;
  overflow: hidden;
}
#SOG-controller #SOG-controller-content #SOG-controller-error {
  color: #ff8080;
  font-size: 1.2em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
}
#SOG-controller #SOG-controller-content #SOG-controller-remote {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 14px 18px 0;
}
#SOG-controller #SOG-controller-content #SOG-nowplaying {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(43, 182, 240, 0.1);
  border: 1.5px solid rgba(95, 208, 255, 0.25);
  border-radius: 14px;
  padding: 8px 12px;
  width: 100%;
  max-width: 400px;
}
#SOG-controller #SOG-controller-content #SOG-nowplaying .nowplaying-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--remote-green);
  box-shadow: 0 0 10px var(--remote-green);
  flex-shrink: 0;
  animation: livepulse 1.4s ease-in-out infinite;
}
#SOG-controller #SOG-controller-content #SOG-nowplaying .nowplaying-meta {
  flex: 1;
  min-width: 0;
}
#SOG-controller #SOG-controller-content #SOG-nowplaying .nowplaying-meta small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(43, 182, 240, 0.8);
  font-weight: 700;
}
#SOG-controller #SOG-controller-content #SOG-nowplaying .nowplaying-meta b {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#SOG-controller #SOG-controller-content #SOG-nowplaying .nowplaying-code {
  font-family: puzzleGamesMainFont;
  font-size: 13px;
  color: var(--remote-yellow);
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 9px;
  border-radius: 8px;
  flex-shrink: 0;
  text-transform: uppercase;
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows {
  position: relative;
  width: calc(var(--remote-dpad-size) * 3 + 8px);
  height: calc(var(--remote-dpad-size) * 3 + 8px);
  flex-shrink: 0;
  pointer-events: none;
  margin: 18px 0;
  position: absolute;
  top: calc( 50% - 70px);
  transform: translateY(-50%);
  z-index: 10;
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-btn {
  position: absolute;
  width: var(--remote-dpad-size);
  height: var(--remote-dpad-size);
  border-radius: 22px;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  background: linear-gradient(180deg, #a8e2ff 0%, #74c8f7 45%, #44aee8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.75), inset 0 -6px 0 rgba(30, 100, 160, 0.35), 0 8px 16px rgba(0, 0, 0, 0.38);
  transition: transform 80ms, filter 80ms;
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-btn svg {
  width: 30px;
  height: 30px;
  color: #fff;
  filter: drop-shadow(0 2px 0 rgba(30, 100, 160, 0.55));
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-btn:hover {
  filter: brightness(1.06);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-btn:active {
  filter: brightness(0.92);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-up {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-up:active {
  transform: translateX(-50%) scale(0.91);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-down {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-down:active {
  transform: translateX(-50%) scale(0.91);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-left {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-left:active {
  transform: translateY(-50%) scale(0.91);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-right {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows .dpad-right:active {
  transform: translateY(-50%) scale(0.91);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows #SOG-controller-ok {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  background: radial-gradient(circle at 40% 30%, #fff07a 0%, #ffd62e 48%, #c98e00 100%);
  box-shadow: inset 0 5px 0 rgba(255, 255, 255, 0.7), inset 0 -9px 0 rgba(140, 90, 0, 0.4), 0 12px 24px rgba(0, 0, 0, 0.45), 0 0 0 5px rgba(255, 214, 46, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: puzzleGamesMainFont;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 0 rgba(140, 90, 0, 0.6);
  transition: transform 80ms, filter 80ms;
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows #SOG-controller-ok:hover {
  filter: brightness(1.06);
}
#SOG-controller #SOG-controller-content #SOG-controller-arrows #SOG-controller-ok:active {
  transform: translate(-50%, -50%) scale(0.91);
  filter: brightness(0.94);
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  flex-shrink: 0;
  position: absolute;
  top: 100%;
  transform: translateY(-150%);
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder .mic-loader {
  display: none;
  position: absolute;
  width: calc(var(--remote-mic-size) / 2);
  height: calc(var(--remote-mic-size) / 2);
  left: 50%;
  top: calc(var(--remote-mic-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: #b070ff;
  border-radius: 50%;
  animation: mic-spin 0.7s linear infinite;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder .talk-rings {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--remote-mic-size);
  height: var(--remote-mic-size);
  pointer-events: none;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder .talk-rings .ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 3px solid rgba(176, 112, 255, 0.8);
  opacity: 0;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder .talk-btn {
  position: relative;
  z-index: 1;
  width: var(--remote-mic-size);
  height: var(--remote-mic-size);
  border-radius: 28px;
  border: none;
  cursor: pointer;
  background: linear-gradient(160deg, #c070ff 0%, #8a3df0 50%, #5a10b0 100%);
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.45), inset 0 -8px 0 rgba(40, 0, 100, 0.45), 0 10px 0 #30087a, 0 16px 28px rgba(100, 20, 200, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 100ms, box-shadow 100ms, filter 100ms;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder .talk-btn::before {
  content: "";
  position: absolute;
  inset: 5px 8px auto 8px;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent);
  border-radius: 22px 22px 60% 60%/22px 22px 80% 80%;
  pointer-events: none;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder .talk-btn svg {
  width: 44px;
  height: 44px;
  color: #fff;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 0 rgba(40, 0, 100, 0.55));
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder .talk-btn:hover {
  filter: brightness(1.08);
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder p {
  margin: 0;
  font-weight: 900;
  font-size: 15px;
  color: rgba(232, 244, 255, 0.75);
  letter-spacing: 0.06em;
  position: absolute;
  top: 105%;
  z-index: 2;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder #sog-speech-wave {
  width: 100vw;
  height: 34px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(1);
  top: 50%;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder #sog-speech-wave #sogSpeechWaveCanvas {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
}
#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 .talk-btn {
  opacity: 0.55;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder.is-active .talk-btn {
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.45), inset 0 -8px 0 rgba(40, 0, 100, 0.45), 0 10px 0 #30087a, 0 0 24px rgba(176, 112, 255, 0.6), 0 16px 28px rgba(100, 20, 200, 0.4);
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder.is-active .talk-rings .ring {
  animation: ringOut 1.1s ease-out infinite;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder.is-active .talk-rings .ring.r2 {
  animation-delay: 0.36s;
}
#SOG-controller #SOG-controller-content #SOG-controller-micro-holder.is-active .talk-rings .ring.r3 {
  animation-delay: 0.72s;
}
#SOG-controller #SOG-controller-content #SOG-controller-search-keyboard {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 26, 0.92);
  backdrop-filter: blur(8px);
  padding: 24px;
}
#SOG-controller #SOG-controller-content #SOG-controller-search-keyboard #SOG-search-kb-title {
  font-family: puzzleGamesMainFont;
  font-size: 26px;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(calc(-50% - 56px));
}
#SOG-controller #SOG-controller-content #SOG-controller-search-keyboard #SOG-controller-search-input {
  width: 100%;
  max-width: 400px;
  height: 54px;
  border-radius: 16px;
  border: 2px solid rgba(43, 182, 240, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 18px;
  font-family: fontFamilyMedium;
  padding: 0 18px;
  outline: none;
  letter-spacing: 1px;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(calc(-50% - 4px));
}
#SOG-controller #SOG-controller-content #SOG-controller-search-keyboard #SOG-controller-search-input:focus {
  border-color: var(--remote-mascot);
  box-shadow: 0 0 0 3px rgba(43, 182, 240, 0.2);
}
#SOG-controller #SOG-controller-content #SOG-controller-search-keyboard #SOG-search-kb-close {
  height: 48px;
  padding: 0 32px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-family: fontFamilyMedium;
  cursor: pointer;
  letter-spacing: 1px;
  display: block;
  margin: 16px auto 0;
  position: relative;
  top: 50%;
  transform: translateY(calc(-50% + 52px));
}
#SOG-controller #SOG-controller-content #SOG-controller-search-keyboard #SOG-search-kb-close:active {
  opacity: 0.7;
}

@keyframes livepulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}
@keyframes ringOut {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
@keyframes mic-spin {
  to {
    transform: rotate(360deg);
  }
}
#header-glowing-bar {
  width: 100%;
  height: 7%;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: transparent;
}
#header-glowing-bar.no-actif {
  background: #dc2626;
  box-shadow: 0 0 8px 2px rgba(239, 68, 68, 0.5);
}
#header-glowing-bar.actif {
  background: #38bdf8;
  box-shadow: 0 0 8px 2px rgba(56, 189, 248, 0.5);
}

#SOG-remote-input-code {
  position: fixed;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#SOG-remote-input-code #connect-header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #023359;
}
#SOG-remote-input-code #SOG-remote-logo {
  height: 70%;
  user-select: none;
  pointer-events: none;
}
#SOG-remote-input-code #connect-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px 28px;
  gap: 0;
  overflow-y: auto;
  width: 100%;
  max-width: 460px;
}
#SOG-remote-input-code #connect-tv-wrap {
  margin-bottom: 12px;
  flex-shrink: 0;
}
#SOG-remote-input-code #connect-tv-wrap svg {
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 30px rgba(43, 182, 240, 0.22));
}
#SOG-remote-input-code .connect-title {
  font-family: puzzleGamesMainFont;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  margin: 0 0 6px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
}
#SOG-remote-input-code .connect-title .connect-title-hi {
  color: var(--remote-mascot);
  text-shadow: 0 3px 0 var(--remote-mascot-shadow);
}
#SOG-remote-input-code .connect-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(232, 244, 255, 0.55);
  text-align: center;
  margin: 0 0 18px;
  line-height: 1.5;
  width: 100%;
  letter-spacing: 2px;
}
#SOG-remote-input-code .connect-sub::before, #SOG-remote-input-code .connect-sub::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12));
}
#SOG-remote-input-code .connect-sub::after {
  background: linear-gradient(270deg, transparent, rgba(255, 255, 255, 0.12));
}
#SOG-remote-input-code .code-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
#SOG-remote-input-code .code-row {
  display: flex;
  justify-content: center;
  gap: 7px;
}
#SOG-remote-input-code .code-row .code-box {
  width: 46px;
  height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: puzzleGamesMainFont;
  font-size: 24px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 0;
  outline: none;
  transition: border-color 120ms, box-shadow 120ms, background 120ms, transform 120ms;
  caret-color: transparent;
}
#SOG-remote-input-code .code-row .code-box.active {
  background: rgba(43, 182, 240, 0.14);
  border-color: var(--remote-mascot);
  box-shadow: 0 0 0 3px rgba(43, 182, 240, 0.25);
}
#SOG-remote-input-code .code-row .code-box.filled:nth-child(1) {
  background: linear-gradient(180deg, #ffe97a, #ffd62e);
  color: #3d2a00;
  border-color: #ffd62e;
  box-shadow: 0 5px 0 #7a5d00;
}
#SOG-remote-input-code .code-row .code-box.filled:nth-child(2) {
  background: linear-gradient(180deg, #6cdf60, #3ec74b);
  color: #0a2e0e;
  border-color: #3ec74b;
  box-shadow: 0 5px 0 #0e5a20;
}
#SOG-remote-input-code .code-row .code-box.filled:nth-child(3) {
  background: linear-gradient(180deg, #5fd0ff, #2bb6f0);
  color: #042a40;
  border-color: #2bb6f0;
  box-shadow: 0 5px 0 #084b76;
}
#SOG-remote-input-code .code-row .code-box.filled:nth-child(4) {
  background: linear-gradient(180deg, #ffb455, #ff9320);
  color: #3a1800;
  border-color: #ff9320;
  box-shadow: 0 5px 0 #8a3a00;
}
#SOG-remote-input-code .code-row .code-box.filled:nth-child(5) {
  background: linear-gradient(180deg, #ff5f5f, #e83838);
  color: #fff;
  border-color: #e83838;
  box-shadow: 0 5px 0 #6e0d0d;
}
#SOG-remote-input-code .code-row .code-box.filled:nth-child(6) {
  background: linear-gradient(180deg, #b070ff, #8a3df0);
  color: #fff;
  border-color: #8a3df0;
  box-shadow: 0 5px 0 #340a66;
}
#SOG-remote-input-code .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;
}
#SOG-remote-input-code .code-error.is-hidden {
  opacity: 0;
  pointer-events: none;
  padding: 0;
  border: 0;
  background: transparent;
  min-height: 0;
}
#SOG-remote-input-code .connect-btn {
  width: 100%;
  height: 60px;
  border: none;
  cursor: pointer;
  border-radius: 18px;
  font-family: puzzleGamesMainFont;
  font-size: 25px;
  letter-spacing: 2px;
  color: #fff;
  background: linear-gradient(180deg, var(--remote-green-hi), var(--remote-green));
  box-shadow: 0 7px 0 var(--remote-green-shadow), 0 12px 22px rgba(62, 199, 75, 0.3), inset 0 3px 0 rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 100ms, box-shadow 100ms, filter 100ms;
}
#SOG-remote-input-code .connect-btn svg {
  width: 20px;
  height: 20px;
}
#SOG-remote-input-code .connect-btn:hover {
  filter: brightness(1.05);
}
#SOG-remote-input-code .connect-btn:active {
  transform: translateY(5px);
  box-shadow: 0 2px 0 var(--remote-green-shadow), 0 4px 10px rgba(62, 199, 75, 0.2), inset 0 3px 0 rgba(255, 255, 255, 0.35);
}
#SOG-remote-input-code .connect-clear {
  width: 100%;
  height: 48px;
  font-family: puzzleGamesMainFont;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  background: linear-gradient(180deg, #ff6060, var(--remote-red));
  box-shadow: 0 5px 0 var(--remote-red-shadow), inset 0 2px 0 rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  gap: 8px;
  transition: transform 90ms, box-shadow 90ms, filter 90ms;
}
#SOG-remote-input-code .connect-clear svg {
  width: 15px;
  height: 15px;
}
#SOG-remote-input-code .connect-clear:hover {
  filter: brightness(1.06);
}
#SOG-remote-input-code .connect-clear:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 var(--remote-red-shadow), inset 0 2px 0 rgba(255, 255, 255, 0.25);
}

#SOG-browser-unsupported {
  position: fixed;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#SOG-browser-unsupported .unsupported-logo {
  height: 52px;
  user-select: none;
  pointer-events: none;
  margin-bottom: 28px;
}
#SOG-browser-unsupported .code-card {
  width: 90%;
  max-width: 480px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0d1e3d 0%, #060f20 100%);
  border: 1px solid rgba(43, 182, 240, 0.15);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
#SOG-browser-unsupported .code-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 220px at 50% 0%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}
#SOG-browser-unsupported .code-card h1 {
  position: relative;
  z-index: 1;
  font-size: 26px;
  text-align: center;
  margin: 0;
  color: #ff6b6b;
  font-weight: 900;
  line-height: 1.2;
}
#SOG-browser-unsupported .code-card p {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 14px 0 0;
  line-height: 1.5;
}

#SOG-controller-profile {
  padding: 20px;
  margin-top: 70px;
  left: 50%;
  position: relative;
  max-width: 530px;
  transform: translateX(-50%);
  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: 0;
  position: relative;
  transform: none;
  margin-top: 5px;
}
#SOG-controller-profile #header-profile-rank p {
  margin-left: 10px;
  font-weight: 100;
  font-size: 28px;
  font-family: fontFamilyRegular;
  white-space: nowrap;
  margin: 0;
}
#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;
  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;
  white-space: nowrap;
  font-family: fontFamilyBold;
  margin-top: -10px;
  color: #facd29;
  margin-bottom: 0;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 0;
}
#SOG-controller-profile ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 40px;
  margin-top: 20px;
  padding: 0;
}
#SOG-controller-profile ul li {
  cursor: pointer;
  transition: 0.2s;
}
#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;
  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: 0 4px 0 #001d34;
}
#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-tv-qrcode {
  width: 100%;
  height: 100vh;
  background: rgba(6, 46, 82, 0.42);
  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;
  width: auto;
  height: 800px;
  aspect-ratio: 0.75;
  padding: 35px 0;
  border-bottom: 10px solid rgba(1, 50, 88, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.178);
}
#SOG-tv-qrcode #SOG-tv-qrcode-content .qr-modal-title {
  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: 0 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: 0 0.6vh 0 #0f6701;
  text-transform: uppercase;
  font-size: 4.5vh;
  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);
}

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