@font-face {
  font-family: Noto Color Emoji Fallback;
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/NotoColorEmoji-flagsonly.woff2)format("woff2"), url(/assets/fonts/NotoColorEmoji-flagsonly.woff)format("woff"), url(/assets/fonts/NotoColorEmoji-flagsonly.ttf)format("truetype");
  unicode-range: U+1F1E6-1F1FF;
  font-display: swap
}

@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Regular.woff2)format("woff2"), url(/assets/fonts/Roboto-Regular.woff)format("woff"), url(/assets/fonts/Roboto-Regular.ttf)format("truetype");
  font-weight: 400;
  font-display: swap
}

@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Medium.woff2)format("woff2"), url(/assets/fonts/Roboto-Medium.woff)format("woff"), url(/assets/fonts/Roboto-Medium.ttf)format("truetype");
  font-weight: 500;
  font-display: swap
}

@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Bold.woff2)format("woff2"), url(/assets/fonts/Roboto-Bold.woff)format("woff"), url(/assets/fonts/Roboto-Bold.ttf)format("truetype");
  font-weight: 700;
  font-display: swap
}

@font-face {
  font-family: Famelack Country Flags;
  src: url(/assets/fonts/FamelackCountryFlags.woff2)format("woff2"), url(/assets/fonts/FamelackCountryFlags.woff)format("woff"), url(/assets/fonts/FamelackCountryFlags.ttf)format("truetype");
  font-display: swap
}

:root {
  --bottom-height: 65px;
  --global-header-height: 3.5rem;
  --navigation-drawer-width: 16rem;
  --sidebar-width: 21rem;
  --sidebar-entry-height-mobile: 3.5rem;
  --sidebar-entry-height-desktop: 4rem;
  --sidebar-header-height-mobile: 6rem;
  --sidebar-header-height-desktop: 5rem;
  --sidebar-header-border-radius: 20px;
  --primary-bg-color: #202124;
  --content-section-bg-color: #06080c;
  --nav-drawer-bg-color: #303134;
  --nav-drawer-item-hover-bg-color: #3c4043;
  --primary-border-color: #5f6368;
  --hover-highlight-bg-color: #36373a;
  --selected-item-bg-color: #ffffff;
  --selected-item-text-color: #24242b;
  --selected-item-text-color-secondary: #ff0606;
  --highlight-text-color: var(--selected-item-bg-color);
  --secondary-text-color: #86888a;
  --hover-secondary-text-color: #b4b8c1;
  --highlight-red: red;
  --brand-accent-color: #79c447;
  --brand-accent-hover-color: #d2ebc1;
  --scrollbar-thumb-color: #fff3;
  --search-bar-bg: var(--hover-highlight-bg-color);
  --overlay-background: #000;
  --modal-content-color: #fff;
  --destructive-button-color: #d32f2f;
  --destructive-button-hover-color: #e53935;
  --media-dock-h: 72px;
  --media-btn: 48px;
  --media-btn-radius: 14px;
  --media-stop-w: 64px;
  --media-tray-gap: 10px;
  --media-stop-peek: 16px;
  --media-stop-tap-slop: 18px;
  --eq-gap: 3px;
  --eq-bar-w: 3px;
  --eq-bar-width: 2px;
  --eq-bar-radius: 2px;
  --eq-height: 12px;
  --eq-min: .35;
  --eq-color-playing: var(--selected-item-bg-color);
  --eq-color-stopped: #78c8ffd9;
  --eq-opacity-playing: .95;
  --media-dock-bg: #18191c;
  --media-dock-bg-desktop: #0f0f0f94;
  --mode-menu-bg: var(--media-dock-bg);
  --media-control-bg: #ffffff29;
  --media-control-bg-hover: #ffffff38;
  --media-control-bg-active: #ffffff47
}

html:not(.app-ready) .navigation-drawer,
html:not(.app-ready) .sidebar-content {
  transition: none !important
}

html:not(.app-ready) .close-video,
html:not(.app-ready) .favorite-toggle--video,
html:not(.app-ready) .play-button-overlay {
  display: none !important
}

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

body,
html {
  height: 100%;
  overflow: hidden
}

body {
  background-color: var(--primary-bg-color);
  font-family: Roboto, Helvetica Neue, Arial Nova, Nimbus Sans, Arial, sans-serif
}

button {
  all: unset;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  line-height: 1
}

@supports ((-moz-appearance:none)) {
  .custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb-color) transparent
  }
}

.custom-scroll::-webkit-scrollbar {
  width: .5rem;
  height: 1rem
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb-color);
  border-radius: 9999px
}

.custom-scroll::-webkit-scrollbar-track {
  background: 0 0
}

.section-content {
  top: var(--global-header-height);
  width: 100%;
  height: calc(100% - var(--global-header-height));
  background-color: var(--content-section-bg-color);
  z-index: 2000;
  padding: 1rem;
  display: none;
  position: absolute;
  overflow-y: auto
}

.section-content.is-active {
  justify-content: center;
  display: flex
}

.global-header,
.sidebar-header,
.sidebar-items,
.sidebar-search-container {
  background-color: var(--primary-bg-color)
}

.global-header {
  z-index: 500;
  height: var(--global-header-height);
  border-bottom: 1px solid var(--primary-border-color);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  display: flex;
  position: relative
}

.navigation-drawer ul {
  list-style: none
}

.navigation-drawer li {
  list-style: none;
  display: block
}

.navigation-drawer {
  width: var(--navigation-drawer-width);
  height: calc(100% - var(--global-header-height) + 1px);
  background-color: var(--nav-drawer-bg-color);
  z-index: 3010;
  color: #fff;
  margin-top: calc(var(--global-header-height) - 1px);
  padding: 0 .75rem 0 0;
  transition: transform .3s ease-in-out;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  transform: translate(-100%)
}

.navigation-drawer.is-active {
  transform: translate(0)
}

.navigation-drawer-overlay {
  z-index: 3000;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed
}

.drawer-content {
  flex-direction: column;
  flex-grow: 1;
  display: flex
}

.drawer-divider {
  border: none;
  border-bottom: 1px solid var(--primary-border-color);
  margin-right: -.75rem
}

.navigation-drawer li.drawer-section-title {
  color: #fff;
  cursor: default;
  align-items: center;
  height: 3.5rem;
  padding: 0 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  display: flex
}

.navigation-drawer .icon {
  justify-content: center;
  align-items: center;
  margin-right: 1.5rem;
  display: flex
}

.logo {
  z-index: 500
}

.logo svg {
  width: auto;
  height: 2rem
}

.burger-menu {
  cursor: pointer;
  z-index: 500;
  flex-direction: column;
  gap: 5px;
  margin-right: .75rem;
  display: flex
}

.burger-bar {
  background-color: #fff;
  width: 25px;
  height: 3px;
  display: block
}

.burger-menu svg,
.drawer-back-button,
.header-button svg,
.search-back-button svg,
.clear-button svg {
  fill: #fff
}

.burger-menu svg {
  pointer-events: none;
  display: inherit;
  width: 100%;
  height: 100%
}

.sidebar-content {
  z-index: 20;
  width: 100svw;
  height: 100svh;
  max-height: 100%;
  transform: translateY(calc(100svh - (var(--sidebar-header-height-mobile) + var(--global-header-height))));
  flex-direction: column;
  transition: transform .3s ease-in-out;
  display: flex;
  position: absolute;
  top: 0;
  left: 0
}

.sidebar-content.expanded,
html.has-content-url .sidebar-content {
  transform: translateY(0)
}

.sidebar-content.expanded .sidebar-header,
html.has-content-url .sidebar-content .sidebar-header {
  border-radius: 0
}

.sidebar-header {
  --sidebar-header-content-height: 56px;
  height: var(--sidebar-header-height-mobile);
  border-bottom: 1px solid var(--primary-border-color);
  border-radius: var(--sidebar-header-border-radius) var(--sidebar-header-border-radius) 0 0;
  cursor: pointer;
  pointer-events: auto;
  z-index: 100;
  flex-shrink: 0;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 0;
  display: grid;
  position: relative;
  transform: translateZ(0)
}

.header-actions {
  align-items: center;
  gap: .25rem;
  margin-left: auto;
  padding-right: .5rem;
  display: flex;
  position: relative
}

.header-button {
  cursor: pointer;
  color: #fff;
  background: 0 0;
  border: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 6px;
  display: inline-flex
}

.random-button-header {
  z-index: 400
}

.search-button {
  z-index: 700;
  position: relative
}

.search-wrapper {
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0
}

.app-container {
  flex-direction: column;
  height: 100svh;
  display: flex
}

.search-button.active:after {
  content: "";
  background-color: var(--highlight-red);
  pointer-events: none;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  right: 6px
}

.search-input {
  color: #fff;
  background: 0 0;
  border: none;
  border-radius: 2rem;
  outline: none;
  flex-grow: 1;
  padding: .5rem 1rem;
  font-family: inherit;
  font-size: 1rem
}

.search-input:not(:placeholder-shown)~.clear-button {
  display: block
}

.search-input::placeholder {
  color: #fff9;
  opacity: 1
}

.search-form {
  background-color: var(--search-bar-bg);
  border: 1px solid #ffffff4d;
  border-radius: 2rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 2.5rem;
  max-height: 2.5rem;
  margin-right: .75rem;
  padding: .5rem;
  display: flex;
  position: relative
}

.search-toggle-content {
  background-color: var(--primary-bg-color);
  z-index: 600;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  right: 0
}

.search-back-button {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
  margin: 0 .75rem;
  padding: 0;
  display: flex
}

.video-container {
  background-color: var(--primary-bg-color);
  border-radius: 0;
  width: 100%;
  min-height: 56.25svw;
  display: none;
  position: static;
  transform: none
}

html.has-video-deeplink .video-container,
.sidebar-video {
  display: block
}

.video-player-wrapper {
  aspect-ratio: 16/9;
  background-color: #000;
  width: 100%;
  position: relative;
  overflow: hidden
}

#video-player,
#youtube-player {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0
}

#video-player.active,
#youtube-player.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.video-js {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto
}

.close-video {
  z-index: 1050;
  background-color: var(--highlight-red);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 1.625rem;
  height: 1.625rem;
  display: flex;
  position: absolute;
  top: 6.5rem;
  right: .5rem
}

.modal-button.destructive {
  background-color: var(--destructive-button-color);
  color: #fff
}

.modal-button.destructive:hover {
  background-color: var(--destructive-button-hover-color)
}

.sidebar-entry.unavailable {
  opacity: .5;
  cursor: pointer
}

.sidebar-entry.unavailable:hover {
  opacity: .65
}

.favorite-toggle {
  cursor: pointer;
  background-color: var(--media-control-bg);
  color: #fff;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  transition: background-color .15s, transform .12s;
  display: inline-flex
}

.favorite-toggle>span {
  justify-content: center;
  align-items: center;
  display: inline-flex
}

.favorite-toggle svg {
  fill: currentColor;
  width: 20px;
  height: 20px
}

.favorite-toggle:active {
  transform: scale(.92)
}

.favorite-toggle[data-favorited=true] .star-outline,
.favorite-toggle[data-favorited=false] .star-filled {
  display: none
}

.favorite-toggle[data-favorited=true] .star-filled,
.favorite-toggle[data-favorited=false] .star-outline {
  display: inline-block
}

.favorite-toggle--video {
  z-index: 1045;
  background-color: var(--primary-bg-color);
  position: absolute;
  top: 6.5rem;
  left: .5rem
}

.favorite-toggle--video[data-favorited=true],
.favorite-toggle--media[data-favorited=true] {
  background-color: var(--brand-accent-color)
}

.mobile-handle {
  z-index: 2000;
  background-color: #ffffff80;
  border-radius: 99px;
  place-self: end center;
  width: 1.5rem;
  height: 4px;
  display: block
}

.sidebar {
  color: #f1f1f1;
  flex-direction: column;
  width: 100svw;
  max-width: 100%;
  height: 100svh;
  max-height: 100%;
  display: flex
}

.emoji-flag {
  color: #000;
  width: 1rem;
  font-family: Apple Color Emoji, Noto Color Emoji, Famelack Country Flags, Noto Color Emoji Fallback, sans-serif
}

.scrub-wrap {
  flex-direction: column;
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  position: relative
}

.scrub-wrap>.custom-scroll {
  scrollbar-width: none
}

.scrub-wrap>.custom-scroll::-webkit-scrollbar {
  display: none
}

.sidebar-items {
  contain: layout style;
  flex: 1 1 0;
  min-height: 0;
  padding: 0 12px;
  position: relative;
  overflow: auto
}

.sidebar-skeleton {
  z-index: 1;
  background-color: var(--primary-bg-color);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 0 .5rem;
  position: absolute;
  inset: 0;
  overflow: hidden
}

.sidebar-skeleton.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.skeleton-row {
  height: var(--sidebar-entry-height-mobile);
  align-items: center;
  gap: .5rem;
  padding: 0 .75rem;
  display: flex
}

.skeleton-flag {
  background-color: #2a2a2e;
  border-radius: 50%;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem
}

.skeleton-text {
  background-color: #2a2a2e;
  border-radius: 6px;
  height: .875rem
}

.skeleton-row:nth-child(odd) .skeleton-text {
  width: 55%
}

.skeleton-row:nth-child(2n) .skeleton-text {
  width: 40%
}

.skeleton-row:nth-child(3n) .skeleton-text {
  width: 65%
}

.sidebar-items li {
  height: var(--sidebar-entry-height-mobile);
  border-radius: 10px;
  flex-shrink: 0;
  width: 100%;
  min-width: 40px;
  display: block;
  position: absolute
}

.sidebar-items div a {
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  display: flex
}

.hidden {
  clip-path: inset(50%);
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden
}

.sidebar-header-container {
  width: 100%;
  height: var(--sidebar-header-content-height);
  min-height: var(--sidebar-header-content-height);
  align-items: center;
  display: flex;
  position: relative
}

.back-to-country-list-button {
  z-index: 1000;
  background: var(--brand-accent-color);
  cursor: pointer;
  visibility: hidden;
  pointer-events: none;
  border: none;
  border-radius: 0 100% 100% 0;
  justify-content: flex-start;
  align-items: center;
  width: 2.5rem;
  height: 3rem;
  padding: 0;
  display: flex
}

.back-to-country-list-button svg {
  width: 2rem;
  height: 2rem;
  fill: var(--primary-bg-color)
}

html.boot-show-back-button .back-to-country-list-button {
  visibility: visible
}

.back-to-country-list-button.active {
  visibility: visible;
  pointer-events: auto
}

.header-content {
  grid-template-columns: 1fr auto;
  width: 100%;
  height: 100%;
  padding: 0 1.5rem 0 1rem;
  line-height: 1.5rem;
  display: grid;
  position: relative
}

.header-title {
  min-height: 2rem;
  color: var(--highlight-text-color);
  visibility: hidden;
  grid-column: 1/-1;
  align-self: flex-end;
  font-size: 1.5rem;
  line-height: 2rem
}

.header-subtitle,
.local-time {
  visibility: hidden;
  min-height: 1.5rem;
  line-height: 1.5rem
}

.local-time {
  text-align: right;
  min-width: 8ch
}

.header-content-skeleton {
  --pill-radius: 6px;
  --pill-optical-offset: 4px;
  inset: 0 calc(1.5rem - var(--pill-optical-offset)) 0 calc(1rem - var(--pill-optical-offset));
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  grid-template-rows: 2fr 1fr;
  grid-template-columns: 1fr auto;
  align-content: center;
  padding: 6px 0 5px;
  display: grid;
  position: absolute;
  overflow: hidden
}

.header-skeleton-title,
.header-skeleton-subtitle,
.header-skeleton-time {
  border-radius: var(--pill-radius);
  background-color: #2a2a2e
}

.header-skeleton-title {
  grid-area: 1/1;
  align-self: start;
  width: 7.5rem;
  height: 1.25rem
}

.header-skeleton-subtitle {
  grid-area: 2/1;
  align-self: end;
  width: 4.75rem;
  height: .875rem
}

.header-skeleton-time {
  grid-area: 2/2/span 2;
  align-self: end;
  width: 4.25rem;
  height: .875rem
}

html.boot-deeplink-loading .header-content-skeleton {
  opacity: 1;
  visibility: visible
}

html.boot-deeplink-loading :is(.header-title, .header-subtitle, .local-time) span {
  visibility: hidden
}

.header-prompt {
  pointer-events: none;
  visibility: hidden;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  padding: 0 1.5rem;
  line-height: 1.5rem;
  display: grid;
  position: absolute;
  inset: 0
}

.header-prompt-label {
  min-width: 0;
  transform: translateY(-1px)
}

.header-prompt-time {
  text-align: right;
  min-width: 8ch;
  transform: translateY(-1px)
}

html.boot-header-prompt .header-prompt,
.sidebar-header-container.is-prompt .header-prompt,
html.boot-header-content :is(.header-title, .header-subtitle, .local-time),
.sidebar-header-container.is-content :is(.header-title, .header-subtitle, .local-time) {
  visibility: visible
}

.clear-button {
  cursor: pointer;
  color: #fff;
  background: 0 0;
  border: none;
  grid-column: 1;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  display: none;
  position: relative;
  top: 0;
  right: 3rem;
  transform: translateY(0)
}

.globe-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden
}

.globe-viz {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0
}

.globe-interaction-blocker {
  z-index: 15;
  background: 0 0;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0
}

.loader-wrapper {
  width: 100%;
  height: calc(100% - var(--sidebar-header-height-desktop) + var(--sidebar-header-border-radius));
  z-index: 15;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  left: 0
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.loader-icon {
  border: 4px solid #ffffff4d;
  border-top-color: var(--highlight-text-color);
  will-change: transform;
  border-radius: 50%;
  width: 40px;
  height: 40px
}

.loader-wrapper .loader-icon,
.video-loading-overlay.active .loader-icon {
  animation: .8s linear infinite spin
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.video-loading-overlay {
  aspect-ratio: 16/9;
  z-index: 1010;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  width: 100%;
  position: absolute
}

.video-loading-overlay.is-initial {
  background: var(--overlay-background);
  -webkit-backdrop-filter: none;
  backdrop-filter: none
}

.video-loading-overlay.is-rebuffer {
  -webkit-backdrop-filter: blur(5px)saturate(110%);
  backdrop-filter: blur(5px)saturate(110%);
  background: #00000040
}

.video-loading-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible
}

.play-button-overlay {
  display: none
}

.play-button-overlay.active {
  background-color: var(--overlay-background);
  z-index: 1010;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute
}

.play-icon-wrapper {
  background: var(--brand-accent-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex
}

.play-icon-wrapper:hover {
  background: var(--brand-accent-hover-color);
  transform: scale(1.04)
}

.icon-wrapper {
  width: 1.5rem;
  height: 1.5rem
}

.play-icon {
  fill: var(--overlay-background);
  -webkit-user-select: none;
  user-select: none;
  transform: scale(1.5)
}

.text-content h1,
.text-content h2,
.text-content h3 {
  letter-spacing: .015625rem;
  margin: 3rem 0 .75rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4
}

.text-content h4 {
  letter-spacing: .01rem;
  margin: 1.75rem 0 .35rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.45
}

.text-content p+h3 {
  margin-top: 1.5rem
}

.text-content p+h4 {
  margin-top: 1.25rem
}

.text-content h1,
.text-content h2 {
  margin-top: 0
}

.text-content {
  letter-spacing: .0125rem;
  color: #fff;
  width: 100%;
  max-width: 73ch;
  padding: 0 0 3rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8
}

.text-content p {
  margin: 0 0 1.25rem;
  line-height: 1.7
}

.loading-indicator {
  background-color: var(--brand-accent-color);
  transform-origin: 0;
  z-index: 1000;
  width: 100%;
  height: 2px;
  transition: transform .5s ease-out;
  position: fixed;
  top: 0;
  left: 0;
  transform: scaleX(0)
}

.globe-country-label {
  color: #333;
  text-align: center;
  background-color: #ffffffb3;
  border-radius: 3px;
  padding: 2px 5px
}

.sidebar-items li.sidebar-entry.playing .indicator {
  color: var(--selected-item-text-color-secondary)
}

.drawer-menu-button {
  text-align: left;
  cursor: pointer;
  background-color: #0000;
  border: none;
  align-items: center;
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem;
  display: flex
}

.menu-logo-container {
  align-items: center;
  display: flex
}

.overlay {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0
}

.media-container {
  background-color: var(--content-section-bg-color);
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: flex;
  position: relative;
  overflow: hidden
}

.section-close {
  color: #fff;
  cursor: pointer;
  justify-self: end;
  font-size: 2.5rem;
  line-height: 1.5
}

.sidebar-search-container {
  display: none
}

.search-actions {
  align-items: center;
  display: flex
}

.overlay,
.nav-toggle,
.sidebar-items div.filtered-out {
  display: none
}

.main {
  flex-grow: 1;
  display: flex;
  position: relative;
  overflow: hidden
}

.main-content {
  flex-grow: 1;
  display: flex;
  overflow: auto
}

.video-link {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 .75rem;
  display: flex
}

.sidebar-items .no-channels-message {
  height: var(--sidebar-entry-height-mobile);
  align-items: center;
  width: 100%;
  min-width: 40px;
  padding-left: .75rem;
  display: flex
}

.channel-name-container {
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  max-height: 3rem;
  padding: 0 .75rem;
  line-height: 1.5rem;
  display: -webkit-box;
  overflow: hidden
}

.indicator-container .language-code {
  white-space: nowrap;
  width: 3ch;
  font-size: .75rem
}

.indicator-container {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
  display: flex
}

.sidebar-entry {
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden
}

.sidebar-entry a:focus {
  outline: none
}

.sidebar-entry.hover-active {
  background-color: #ebebeb
}

.sidebar-items li.sidebar-entry.playing {
  color: var(--selected-item-text-color);
  background-color: var(--selected-item-bg-color);
  letter-spacing: -.0109rem;
  font-weight: 700
}

.search-button.disabled {
  opacity: .1;
  cursor: not-allowed;
  pointer-events: none
}

.drawer-header {
  height: var(--global-header-height);
  align-items: center;
  display: flex
}

.content-container {
  grid-template-rows: auto 1fr;
  height: 100%;
  display: grid
}

.text-content a {
  color: var(--highlight-text-color)
}

.text-content ol,
.text-content ul {
  margin: 1rem 0;
  padding-left: 1rem
}

.text-content ol {
  list-style-type: decimal
}

.text-content ul {
  list-style-type: disc
}

.sidebar-items li.active {
  background-color: var(--hover-highlight-bg-color)
}

.sidebar-items li.active .indicator {
  color: var(--hover-secondary-text-color)
}

.indicator {
  color: var(--secondary-text-color);
  justify-content: center;
  align-items: center;
  width: auto;
  height: 1rem;
  font-size: .75rem;
  display: flex
}

.modal,
.backdrop {
  display: none
}

.backdrop.active {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 500;
  background-color: #00000080;
  width: 100svw;
  height: 100svh;
  display: block;
  position: fixed;
  top: 0;
  left: 0
}

.modal.active {
  z-index: 510;
  background-color: var(--primary-bg-color);
  border-radius: 25px;
  grid-template-rows: 3fr 1fr;
  width: 80svw;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  max-height: 450px;
  line-height: 1.5;
  display: grid;
  position: fixed;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px #00000040
}

.modal-header {
  background-color: var(--primary-bg-color);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  grid-template-rows: auto auto auto;
  place-items: center;
  padding: 20px;
  display: grid
}

.modal-icon-wrapper {
  justify-content: center;
  display: flex
}

.modal-icon {
  width: 4rem;
  height: 4rem;
  color: var(--modal-content-color)
}

.modal-icon svg {
  width: 100%;
  height: 100%
}

.modal-title {
  color: var(--modal-content-color);
  margin-top: .5rem;
  font-size: 1.625rem;
  font-weight: 500
}

.modal-message {
  color: var(--modal-content-color);
  max-width: 85%;
  margin: .5rem auto;
  font-size: 1rem;
  line-height: 1.45
}

.modal-footer {
  background-color: var(--hover-highlight-bg-color);
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  justify-content: center;
  align-items: center;
  display: flex
}

.modal-button {
  color: var(--modal-content-color);
  cursor: pointer;
  width: 100%;
  height: 100%;
  font-size: 1.5rem
}

.modal-button:focus {
  outline: none
}

.media-dock {
  flex: 0 0 var(--media-dock-h);
  z-index: 100;
  background-color: var(--media-dock-bg);
  border-top: 1px solid var(--primary-border-color);
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: visible
}

.media-dock-content {
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  padding-inline: 1rem;
  display: flex
}

.media-center {
  flex: auto;
  align-items: center;
  min-width: 0;
  display: flex
}

.media-info {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  display: flex
}

.visualizer-container {
  transform: translateY(-2px)
}

#media-display-name {
  grid-row: 1
}

#media-display-location {
  grid-row: 2
}

.media-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 1rem;
  line-height: 1.125rem;
  overflow: hidden
}

.media-subtitle {
  white-space: nowrap;
  text-overflow: ellipsis;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: .9rem;
  line-height: 1.125rem;
  display: flex;
  overflow: hidden
}

.media-location-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffffff80;
  min-width: 0;
  font-size: .82rem;
  overflow: hidden
}

.media-flag {
  opacity: .85;
  flex: none
}

.media-right {
  align-items: stretch;
  gap: .75rem;
  margin-left: auto;
  display: flex
}

.media-right-stack {
  grid-template-rows: 1fr 1fr;
  place-items: center end;
  min-width: 32px;
  display: grid
}

.media-left-stack {
  align-items: center;
  display: flex
}

.media-volume-btn {
  cursor: pointer;
  color: #fff;
  background: 0 0;
  border: none;
  padding: 0;
  display: none
}

.media-audio-cluster,
.audio-visualizer {
  align-items: flex-end;
  display: inline-flex
}

.audio-visualizer {
  gap: var(--eq-gap);
  height: var(--eq-height);
  pointer-events: none;
  opacity: 0;
  grid-row: 2;
  margin-bottom: 2px;
  transition: opacity .18s
}

.audio-visualizer .eq-bar {
  width: var(--eq-bar-width);
  border-radius: var(--eq-bar-radius);
  transform-origin: bottom;
  will-change: transform;
  opacity: .9;
  height: 100%;
  animation: famelack-eq-meter var(--eq-d, .8s) linear infinite both;
  background: currentColor
}

.audio-control-btn {
  align-self: center
}

#media-dock .eq-bar:first-child {
  --eq-d: .66s;
  animation-delay: -.11s
}

#media-dock .eq-bar:nth-child(2) {
  --eq-d: .82s;
  animation-delay: -.37s
}

#media-dock .eq-bar:nth-child(3) {
  --eq-d: .72s;
  animation-delay: -.23s
}

#media-dock .eq-bar:nth-child(4) {
  --eq-d: .94s;
  animation-delay: -.55s
}

#media-dock.is-stopped .audio-visualizer {
  opacity: .45;
  color: var(--eq-color-stopped)
}

#media-dock.is-playing .audio-visualizer {
  opacity: var(--eq-opacity-playing);
  color: var(--eq-color-playing)
}

#media-dock.is-playing {
  --eq-min: .2;
  --eq-a: .95;
  --eq-b: .55;
  --eq-c: .85;
  --eq-damp: 1
}

#media-dock.is-stopped .eq-bar {
  animation: none;
  transform: scaleY(.25)
}

#media-dock.is-playing .eq-bar {
  animation-play-state: running
}

#media-dock.is-loading .audio-visualizer {
  opacity: .45;
  color: var(--eq-color-stopped)
}

#media-dock.is-loading {
  --eq-min: .12;
  --eq-a: .28;
  --eq-b: .18;
  --eq-c: .24
}

#media-dock.is-loading .eq-bar {
  opacity: .65;
  animation-duration: 1.25s;
  animation-timing-function: ease-in-out;
  animation-play-state: running
}

@keyframes famelack-eq-meter {
  0% {
    transform: scaleY(var(--eq-min, .2))
  }
  10% {
    transform: scaleY(var(--eq-a, .9))
  }
  28% {
    transform: scaleY(var(--eq-b, .5))
  }
  46% {
    transform: scaleY(1)
  }
  64% {
    transform: scaleY(var(--eq-c, .7))
  }
  to {
    transform: scaleY(var(--eq-min, .2))
  }
}

#media-dock.is-loading .eq-bar:first-child {
  animation-delay: 0s
}

#media-dock.is-loading .eq-bar:nth-child(2) {
  animation-delay: .1s
}

#media-dock.is-loading .eq-bar:nth-child(3) {
  animation-delay: .2s
}

#media-dock.is-loading .eq-bar:nth-child(4) {
  animation-delay: .3s
}

.media-volume-slider-wrap {
  opacity: 0;
  pointer-events: none;
  width: 0;
  transition: width .16s, opacity .16s;
  display: none;
  overflow: hidden
}

.audio-control-btn {
  width: var(--media-btn);
  height: var(--media-btn);
  background: var(--media-control-bg);
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: transform .12s, background .12s;
  display: flex;
  position: relative
}

.audio-control-btn:before {
  content: "";
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
  inset: -10px
}

.audio-control-btn:hover {
  background: #ffffff12
}

.audio-control-btn:active {
  transform: scale(.94)
}

.audio-control-btn svg {
  fill: #ffffffeb;
  width: 26px;
  height: 26px;
  display: block
}

.audio-control-btn .icon {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  contain: paint;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0
}

.audio-control-btn[data-state=stopped] .icon-play,
.audio-control-btn[data-state=playing] .icon-stop,
.audio-control-btn[data-state=loading] .icon-loading {
  opacity: 1;
  visibility: visible
}

.audio-control-btn[data-state=loading] .icon-loading {
  transform-origin: 50%;
  will-change: transform;
  animation: 1s linear infinite mediaSpinner
}

@keyframes mediaSpinner {
  to {
    transform: rotate(360deg)
  }
}

@media (prefers-reduced-motion:reduce) {
  .audio-control-btn[data-state=loading] .icon-loading {
    animation: none
  }
}

.media-dock-right-tray {
  align-items: center;
  display: flex
}

.media-dock-right-tray #media-play-stop {
  margin-right: var(--media-tray-gap)
}

.media-dock-right-tray .stop-btn-wrapper {
  width: var(--media-stop-w);
  background: var(--destructive-button-color);
  border-left: 1px solid #ffffff1a;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex
}

.media-dock-right-tray .stop-btn-wrapper .stop-btn {
  width: var(--media-btn);
  height: var(--media-btn);
  border-radius: var(--media-btn-radius);
  background: 0 0;
  border: none
}

@media (hover:hover) and (pointer:fine) {
  .media-dock-right-tray .stop-btn:hover {
    background: #ffffff14
  }
}

#media-dock-stop {
  position: relative
}

#media-dock-stop:before {
  content: "";
  top: 0;
  bottom: 0;
  left: calc(var(--media-stop-tap-slop) * -1);
  position: absolute;
  right: 0
}

.media-dock.hidden {
  display: none
}

html.boot-mode-tv .mode-button .icon-tv {
  display: block
}

html.boot-mode-tv .mode-button .icon-radio {
  display: none
}

html.boot-mode-radio .mode-button .icon-radio {
  display: block
}

html.boot-mode-radio .mode-button .icon-tv {
  display: none
}

html.boot-mode-tv .mode-dock-segment[data-mode=tv],
html.boot-mode-radio .mode-dock-segment[data-mode=radio],
.mode-dock-segment.is-active {
  background: var(--selected-item-bg-color);
  color: var(--selected-item-text-color)
}

html.boot-mode-tv .mode-dock-segment[data-mode=radio],
html.boot-mode-radio .mode-dock-segment[data-mode=tv] {
  color: #ffffff9e;
  background: 0 0
}

.mode-button .mode-icon svg {
  display: none
}

.mode-button.mode-tv .icon-tv,
.mode-button.mode-radio .icon-radio,
.mode-button.mode-webcam .icon-webcam {
  display: block
}

.mode-button .icon-tv {
  margin-inline-end: 6px;
  transform: translateY(1px)scale(.95)
}

.mode-button .icon-radio {
  margin-inline-end: 5px;
  transform: translateY(1px)scale(1.05)
}

.mode-button svg {
  fill: #ffffffeb;
  color: #fff;
  transition: opacity .15s, filter .15s
}

.mode-button.is-playing svg {
  fill: var(--selected-item-bg-color);
  color: var(--selected-item-bg-color)
}

.mode-button.is-stopped svg {
  fill: #ffffff8c
}

.mode-picker {
  z-index: 400;
  flex-shrink: 0;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  position: relative
}

.mode-button {
  flex-shrink: 0;
  width: 100%;
  min-width: 0;
  height: 100%
}

.mode-menu {
  background: var(--mode-menu-bg);
  z-index: 9999;
  border: 1px solid #ffffff1a;
  border-radius: 14px;
  min-width: 140px;
  padding: 4px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 12px 32px #00000059
}

.mode-menu.hidden {
  display: none
}

.mode-menu-item {
  color: #ffffffeb;
  cursor: pointer;
  text-align: left;
  background: 0 0;
  border: 0;
  border-radius: 10px;
  align-items: center;
  width: 100%;
  height: 3.25rem;
  padding: 0;
  font-size: 1rem;
  display: flex
}

.mode-menu-icon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-left: .75rem;
  display: inline-flex;
  transform: translateY(-1px)
}

.mode-menu-icon svg {
  opacity: .85;
  width: 18px;
  height: 18px;
  display: block
}

.mode-menu-icon .icon-radio {
  transform: scale(1.15)
}

.mode-menu-label {
  flex: 1;
  margin-left: 10px
}

.mode-menu-item:hover {
  background: #ffffff0f
}

.mode-menu-check {
  opacity: 0;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-right: .5rem;
  display: inline-flex
}

.mode-menu-check svg {
  opacity: .9;
  width: 18px;
  height: 18px;
  display: block
}

.mode-menu-item.is-active .mode-menu-check {
  opacity: .9
}

.mode-dock {
  z-index: 20;
  pointer-events: auto;
  background: #18191ceb;
  border: 1px solid #ffffff1a;
  border-radius: 999px;
  align-items: center;
  gap: 2px;
  padding: 3px;
  transition: opacity .15s, transform .15s;
  display: inline-flex;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translate(-50%);
  box-shadow: 0 6px 20px #00000059
}

.mode-dock-segment {
  appearance: none;
  cursor: pointer;
  color: #ffffffb8;
  font: inherit;
  background: 0 0;
  border: none;
  border-radius: 999px;
  min-height: 2rem;
  padding: 7px 15px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1;
  transition: background-color .15s, color .15s
}

@media (hover:hover) and (pointer:fine) {
  .mode-dock-segment:hover {
    color: #ffffffe0
  }
}

.mode-dock-segment:focus-visible {
  outline: 2px solid var(--selected-item-bg-color);
  outline-offset: 2px
}

.mode-dock-segment.is-active {
  background: var(--selected-item-bg-color);
  color: var(--selected-item-text-color)
}

.mode-dock-label {
  display: inline-block
}

.video-overlay-error {
  z-index: 50;
  pointer-events: none;
  background: #000;
  display: none;
  position: absolute;
  inset: 0
}

.video-overlay-error.active {
  justify-content: flex-start;
  align-items: center;
  padding: clamp(14px, 3vw, 22px);
  display: flex
}

.video-overlay-error .error-content {
  align-items: center;
  gap: 12px;
  max-width: min(560px, 92%);
  display: flex
}

.video-overlay-error .error-icon-wrapper {
  background: #ffffff1a;
  border: 1px solid #ffffff24;
  border-radius: 999px;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  display: grid
}

.video-overlay-error .error-icon-wrapper svg {
  fill: #ffffffeb;
  width: 22px;
  height: 22px
}

.video-overlay-error p {
  color: #ffffffeb;
  letter-spacing: .2px;
  margin: 0;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.2
}

.video-overlay-error span {
  color: #ffffffb3;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.25;
  display: block
}

@media (width<=420px) {
  .video-overlay-error .error-content {
    gap: 10px
  }
  .video-overlay-error .error-icon-wrapper {
    flex-basis: 36px;
    width: 36px;
    height: 36px
  }
  .video-overlay-error p {
    font-size: 15px
  }
}

.video-js .vjs-error-display,
.video-js .vjs-modal-dialog,
.video-js .vjs-loading-spinner {
  display: none !important
}

.icon {
  justify-content: center;
  align-items: center;
  line-height: 0;
  display: flex
}

.icon svg {
  display: block
}

/* inicio personalizado */

	  textarea {
      width: 100%;
      height: 120px;
      font-size: 14px;
      padding: 10px;
      border: 1px solid #ccc;
      background-color: #fff;
      resize: none;
    }
    .embed-container {
      margin-top: 20px;
    }

        /* Overlay Estelar */
        .slot-machine-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            backdrop-filter: blur(8px);
        }
        
        /* Céu estrelado - CORRIGIDO */
        .slot-machine-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Ajustado para múltiplos background-image para um efeito de paralaxe e evitar sumiço */
            background-image: 
                radial-gradient(1.5px 1.5px at 15% 25%, rgba(255,255,255,0.9), transparent),
                radial-gradient(1.5px 1.5px at 85% 15%, rgba(255,255,255,0.7), transparent),
                radial-gradient(2.5px 2.5px at 45% 65%, rgba(255,255,255,0.8), transparent),
                radial-gradient(1.5px 1.5px at 12% 85%, rgba(255,255,255,0.6), transparent),
                radial-gradient(1.5px 1.5px at 35% 95%, rgba(255,255,255,0.9), transparent),
                radial-gradient(2.5px 2.5px at 65% 35%, rgba(255,255,255,0.7), transparent),
                radial-gradient(1.5px 1.5px at 95% 55%, rgba(255,255,255,0.8), transparent),
                radial-gradient(1.5px 1.5px at 75% 75%, rgba(255,255,255,0.6), transparent);
            background-repeat: repeat;
            /* Aumentamos o background-size para garantir que o padrão seja maior */
            background-size: 400px 240px; /* Dobramos o tamanho original */
            animation: sparkle 20s linear infinite; /* Aumentamos o tempo da animação */
            pointer-events: none;
        }
        
        /* Ajuste na keyframe para que o translate seja o mesmo que o background-size para repetição perfeita */
        @keyframes sparkle {
            from { background-position: 0 0; }
            to { background-position: 400px 0; } /* Deve ser o mesmo que background-size para horizontal */
        }
        
        .slot-machine-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        
        /* TV Vintage */
        .slot-machine {
            width: 85%;
            max-width: 600px;
            background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
            border-radius: 25px 25px 15px 15px;
            padding: 30px;
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.8),
                inset 0 2px 10px rgba(255, 255, 255, 0.1),
                0 0 0 8px #333,
                0 0 0 12px #444;
            text-align: center;
            position: relative;
            overflow: visible; /* Garante que elementos fora da TV não sejam cortados */
        }
        
        /* Tela da TV */
        .tv-screen {
            background: #000;
            border-radius: 15px;
            border: 6px solid #444;
            position: relative;
            overflow: hidden; /* Mantém o conteúdo do rolo dentro da tela */
            box-shadow: 
                inset 0 0 30px rgba(0, 0, 0, 0.8),
                inset 0 0 100px rgba(0, 100, 255, 0.1);
            margin-bottom: 20px;
        }
        
        /* Efeito de brilho da tela */
        .tv-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 70%
            );
            pointer-events: none;
            z-index: 10;
        }
        
        /* Controles da TV */
        .tv-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 15px;
        }
        
        .control-knob {
            width: 40px;
            height: 40px;
            background: linear-gradient(145deg, #555, #333);
            border-radius: 50%;
            border: 3px solid #666;
            position: relative;
        }
        
        .control-knob::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 4px;
            height: 15px;
            background: #888;
            border-radius: 2px;
        }
        
        /* Logo da TV */
        .tv-logo {
            position: absolute;
            bottom: 5px;
            right: 15px;
            color: #666;
            font-size: 12px;
            font-family: serif;
            font-weight: bold;
        }
        
        /* Antenas da TV */
        .tv-antenna {
            position: absolute;
            top: -25px;
            width: 3px;
            height: 40px;
            background: linear-gradient(to bottom, #666, #333);
            border-radius: 1px;
        }
        
        .tv-antenna.left {
            left: 25%;
            transform: rotate(-20deg);
        }
        
        .tv-antenna.right {
            right: 25%;
            transform: rotate(20deg);
        }
        
        .tv-antenna::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: linear-gradient(145deg, #888, #444);
            border: 2px solid #333;
        }
        
        /* Rolos do caça-níquel */
        .slot-reels {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 20px;
        }
        
        .reel {
            width: 30%;
            max-width: 140px;
            height: 180px; /* Altura fixa para alinhar os itens */
            background: linear-gradient(145deg, #111, #000);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            box-shadow: 
                inset 0 0 20px rgba(0, 255, 100, 0.3),
                0 0 10px rgba(0, 0, 0, 0.5);
            border: 2px solid #333;
            box-sizing: border-box; /* Garante que padding e border não aumentem a largura/altura total */
        }
        
        .reel-inner {
            position: absolute;
            width: 100%;
            /* A altura será definida dinamicamente via JS */
        }
        
        .reel-item {
            height: 180px; /* Altura fixa para cada item */
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 50px;
            font-weight: bold;
            color: white;
            text-shadow: 
                0 0 15px rgba(0, 255, 100, 0.8),
                0 0 30px rgba(255, 255, 255, 0.3);
            background: linear-gradient(180deg, 
                rgba(0, 255, 100, 0.1) 0%, 
                rgba(0, 100, 255, 0.05) 50%, 
                rgba(0, 255, 100, 0.1) 100%);
            box-sizing: border-box; /* Garante que padding e border não aumentem a largura/altura total */
        }
        
        /* Efeito de vitória */
        .win-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,215,0,0.4) 0%, rgba(255,140,0,0.2) 50%, transparent 100%);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s;
            z-index: 15;
            border-radius: 15px;
        }
        
        .win-effect.active {
            opacity: 1;
            animation: tvGlow 0.8s infinite alternate;
        }

        /* Animação de brilho mais intenso */
        @keyframes tvGlow {
            from {  
                box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 80px rgba(255, 140, 0, 0.6);
                transform: scale(1);
            }
            to {    
                box-shadow: 0 0 60px rgba(255, 215, 0, 1), 0 0 100px rgba(255, 140, 0, 0.8);
                transform: scale(1.03);
            }
        }

        /* Efeito de confete */
        .confetti-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 20; /* Acima do win-effect */
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: #f00; /* Cor padrão, será randomizada */
            opacity: 0;
            animation: fall 3s ease-out forwards;
        }

        @keyframes fall {
            0% {
                transform: translateY(-100px) rotateZ(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotateZ(720deg);
                opacity: 0;
            }
        }
    #share-btn-mobile {
        position: fixed;
        right: 1.5rem;
        bottom: 8rem;
        z-index: 9999;
        padding: 0;
        border: none;
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #share-btn-mobile svg {
        width: 32px;
        height: 32px;
        display: block;
        pointer-events: none;
    }
    #share-btn-mobile svg {
        display: block;
    }
	/* Botão de instalação do PWA - Design Moderno */
.pwa-install-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    display: none;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.pwa-install-btn {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    border: none;
    border-radius: 28px;
    padding: 8px 16px 8px 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.pwa-install-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #1e7be8, #0f5ac1);
}

.pwa-install-btn:active {
    transform: translateY(0);
}

.pwa-install-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.pwa-install-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pwa-install-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.pwa-install-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.pwa-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    margin-left: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    padding: 0;
}

.pwa-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.pwa-close-btn svg {
    width: 12px;
    height: 12px;
    fill: white;
}
               /* Responsividade */
        @media (max-width: 768px) {
            .slot-machine {
                width: 95%;
                padding: 20px;
            }
            
            .reel {
                height: 140px;
            }
            
            .reel-item {
                height: 140px;
                font-size: 30px;
            }
            
            .tv-antenna {
                top: -20px;
                height: 30px;
            }
            
            .control-knob {
                width: 35px;
                height: 35px;
            }
        }

   @media only screen and (width>=601px) {
    #share-btn-mobile {
         right: 360px;
    }
	    .pwa-install-btn {
        padding: 8px 14px 8px 10px;
    }
    
    .pwa-install-text {
        font-size: 0.8rem;
    }
    
    .pwa-install-icon svg {
        width: 16px;
        height: 16px;
    }
  .text-content {
    padding: 1rem;
    font-size: 1.25rem
  }
  .text-content h1,
  .text-content h2,
  .text-content h3 {
    margin: 4.375rem 0 1.25rem;
    font-size: 2.75rem
  }
  .text-content h1,
  .text-content h2 {
    margin-top: 0
  }
  .clear-button {
    cursor: pointer;
    color: #fff;
    background: 0 0;
    border: none;
    display: none;
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%)
  }
  .back-to-country-list-button {
    top: 1.25rem;
    right: calc(var(--sidebar-width) - 1.5rem);
    border-radius: 40% 0 0 40%;
    width: auto;
    height: 2.5rem;
    padding-left: .275rem;
    position: absolute
  }
  .back-to-country-list-button:hover {
    background: var(--brand-accent-hover-color)
  }
  .header-content,
  .header-prompt {
    padding: 0
  }
  .header-content-skeleton {
    inset: 0 calc(0px - var(--pill-optical-offset));
    padding: 17px 0
  }
  .sidebar-header-container {
    align-items: normal
  }
  .loader-wrapper {
    height: 100%
  }
  .mobile-handle {
    display: none
  }
  .close-video {
    z-index: 1020;
    width: 2rem;
    height: 2rem;
    top: -1.35rem;
    right: -1rem
  }
  .favorite-toggle {
    width: 2rem;
    height: 2rem;
    top: -1.35rem;
    left: auto;
    right: 1.45rem
  }
  .video-container {
    z-index: 1010;
    width: calc(80svw - var(--sidebar-width));
    pointer-events: auto;
    top: calc(50svh - var(--global-header-height) - (80svw * 9 / 32) + (var(--sidebar-width) * 9 / 32));
    left: calc((100svw - var(--sidebar-width)) / 2 - ((80svw - var(--sidebar-width)) / 2));
    min-height: calc((80svw - var(--sidebar-width)) * 9 / 16);
    background-color: #000000b3;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    display: none;
    position: absolute;
    box-shadow: 0 4px 6px #0000001a
  }
  .search-back-button {
    display: none
  }
  .search-toggle-content {
    width: 19rem
  }
  .search-form {
    margin-right: 0
  }
  .search-input {
    margin-right: 8px
  }
  .search-wrapper {
    position: relative
  }
  .header-actions {
    gap: .5rem
  }
  .mode-dock {
    top: 1.25rem
  }
  .mode-dock-segment {
    padding: 8px 18px
  }
  .mode-dock.is-hidden-for-video {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%)translateY(-4px)
  }
  .global-header {
    position: relative
  }
  .drawer-menu-button:hover {
    background-color: var(--nav-drawer-item-hover-bg-color);
    border-radius: 0 3.125rem 3.125rem 0
  }
  .sidebar-content {
    width: var(--sidebar-width);
    position: static;
    transform: none
  }
  .sidebar-content.expanded,
  html.has-content-url .sidebar-content {
    transform: none
  }
  .sidebar-header {
    --sidebar-header-content-height: 79px;
    height: var(--sidebar-header-height-desktop);
    cursor: default;
    pointer-events: none;
    border-radius: 0;
    grid-template-rows: none;
    align-items: stretch;
    gap: 10px;
    padding: 0 1.5rem
  }
  .sidebar-items li,
  .skeleton-row,
  .sidebar-items .no-channels-message {
    height: var(--sidebar-entry-height-desktop)
  }
  .scrub-wrap>.custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb-color) transparent
  }
  .scrub-wrap>.custom-scroll::-webkit-scrollbar {
    width: .5rem;
    display: block
  }
  .modal {
    width: 40svw;
    max-width: 500px;
    height: auto;
    max-height: 80svh
  }
  .modal-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 500
  }
  .modal-message {
    font-size: 1.25rem;
    line-height: 1.55
  }
  .modal-button:hover {
    background-color: var(--nav-drawer-item-hover-bg-color)
  }
  .media-dock {
    left: calc((100svw - var(--sidebar-width)) / 2);
    z-index: 1005;
    width: min(560px, calc(100svw - var(--sidebar-width) - 2rem));
    pointer-events: auto;
    background-color: initial;
    border: none;
    position: absolute;
    bottom: 48px;
    transform: translate(-50%)
  }
  .media-dock.hidden {
    display: none
  }
  .media-dock-content {
    background: var(--media-dock-bg-desktop);
    -webkit-backdrop-filter: blur(18px)saturate(160%);
    backdrop-filter: blur(18px)saturate(160%);
    border: 1px solid #ffffff24;
    border-radius: 18px;
    padding: .625rem 1.125rem
  }
  #media-display-name {
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden
  }
  .media-text-info {
    gap: 7px;
    padding-block: 3px
  }
  .audio-visualizer {
    opacity: .8
  }
  @media (hover:hover) and (pointer:fine) {
    .media-volume {
      justify-content: center;
      align-items: center;
      height: 32px;
      margin-top: 0;
      padding-top: 0;
      display: inline-flex;
      position: relative
    }
    .media-volume-btn {
      cursor: pointer;
      opacity: .8;
      z-index: 100;
      justify-content: center;
      align-items: center;
      width: 32px;
      height: 32px;
      transition: opacity .2s;
      display: flex
    }
    .media-volume-btn:hover {
      opacity: 1
    }
    .media-volume-btn svg {
      width: 16px;
      height: 16px
    }
    .media-right-stack {
      gap: 4px;
      padding-block: 6px
    }
    .media-volume,
    .media-volume-btn,
    .visualizer-container {
      height: 1.125rem
    }
    .media-volume-slider-wrap {
      opacity: 0;
      pointer-events: none;
      z-index: 100;
      align-items: center;
      width: 0;
      margin-left: 0;
      transition: width .22s cubic-bezier(.4, 0, .2, 1), opacity .16s, margin-left .22s cubic-bezier(.4, 0, .2, 1);
      display: flex;
      overflow: hidden
    }
    .media-volume:hover .media-volume-slider-wrap,
    .media-volume:focus-within .media-volume-slider-wrap {
      opacity: 1;
      pointer-events: auto;
      width: clamp(40px, 100svw - 633px, 92px);
      margin-left: 6px
    }
    .media-volume:after {
      content: "";
      background: 0 0;
      position: absolute;
      inset: -8px
    }
    .media-volume-slider {
      appearance: none;
      cursor: pointer;
      background: 0 0;
      outline: none;
      width: 100%;
      height: 12px
    }
    .media-volume-slider::-webkit-slider-runnable-track {
      background: linear-gradient(to right, var(--selected-item-bg-color) 0%, var(--selected-item-bg-color) var(--volume-percent, 100%), #ffffff1f var(--volume-percent, 100%), #ffffff1f 100%);
      border-radius: 2px;
      width: 100%;
      height: 4px
    }
    .media-volume-slider::-webkit-slider-thumb {
      appearance: none;
      background: #fff;
      border: none;
      width: 12px;
      height: 12px;
      margin-top: -4px;
      transition: transform .1s;
      box-shadow: 0 2px 4px #0000004d;
      border-radius: 50% !important
    }
    .media-info {
      gap: 4px
    }
    .media-volume-slider::-moz-range-track {
      background: #ffffff1f;
      border-radius: 2px;
      width: 100%;
      height: 4px
    }
    .media-volume-slider::-moz-range-progress {
      background: var(--selected-item-bg-color);
      border-radius: 2px;
      height: 4px
    }
    .media-volume-slider::-moz-range-thumb {
      background: #fff;
      border: none;
      width: 12px;
      height: 12px;
      box-shadow: 0 2px 4px #0000004d;
      border-radius: 50% !important
    }
  }
  .media-volume .icon-volume-muted,
  .media-volume.is-muted .icon-volume-high {
    display: none
  }
  .media-volume.is-muted .icon-volume-muted {
    display: inline
  }
  .media-status-lower {
    align-items: center;
    display: flex;
    transform: translateY(.125rem)
  }
  .visualizer-container {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 32px;
    display: flex
  }
  .audio-visualizer {
    transform: translate(-1px, 2px)
  }
  .media-right {
    gap: .5rem
  }
}