:root {
  --fullscreen-blur: 0px;
  --background-opacity: 1;
}

@media only screen and (max-width: 600px) {
  .fullsceenView .platformsContent {
    width: 100%;
  }
}

.fullscreenButton {
  font-size: 24px;
  position: absolute;
  top: 26px;
  right: 52px;
  color: #f5f5f5;
  cursor: pointer;
}

.fullsceenView {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.fullsceenView .fullsceenViewAgreementText {
  text-align: center;
  max-width: 290px;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 16px;
  margin-top: 12px;
}

.fullsceenView .fullWidthBlur {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-backdrop-filter: blur(var(--fullscreen-blur));
  backdrop-filter: blur(var(--fullscreen-blur));
  padding-top: 60px;
}

.fullsceenView .powerByLogo {
  color: #ffffff;
  font-size: 0.775rem;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.fullsceenView .powerByLogo .powerByLogoImage {
  width: 100px;
  margin-left: 8px;
}

.fullsceenView .platformsContent {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 375px;
}

.fullsceenView .platformsContent .platformsCover {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 375px;
  width: 375px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.fullsceenView .platformsContent .platformsCover .platformsCoverPlayIcon {
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.platformHeader {
  background: #000000;
  min-height: 40px;
  box-sizing: border-box;
  padding: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.platformHeader .platformHeaderTitle {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ffffff;
  width: 100%;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.platformHeader .platformHeaderDescription {
  font-size: 0.75rem;
  color: #ffffff;
  opacity: 0.8;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.platformsListContent {
  overflow: auto;
  max-height: 372px;
}

.platformsListItem {
  background: #f6f6f6;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  padding: 22px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.platformsListItem .platformsListItemIcon {
  width: 100px;
}

.platformsListItem .platformsListItemName {
  font-size: 0.775rem;
  color: #000000;
  text-align: left;
  width: 100px;
  padding-left: 50px;
}

.platformsListItemButtonWrapper {
  width: 95px;
}

.platformsListItem .platformsListItemButton .nostyle {
  border: 1px solid #000000;
  border-radius: 3px;
  padding: 4px 11px;
  color: #000000;
  cursor: pointer;
  font-size: 0.75rem;
  text-align: center;
  display: block;
  min-width: 75px;
}

a.nostyle:link {
  text-decoration: inherit;
  color: inherit;
}

a.nostyle:visited {
  text-decoration: inherit;
  color: inherit;
}

.backgroundWithOpactiy {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  z-index: -1000;
  opacity: var(--background-opacity);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.campaign-toast {
  --campaign-toast-bg: #1565c0;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -10px);
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--campaign-toast-bg);
  color: #fff;
  font-size: 0.875rem;
  font-family: 'Roboto', sans-serif;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.campaign-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.campaign-toast.success {
  --campaign-toast-bg: #2e7d32;
}
.campaign-toast.error {
  --campaign-toast-bg: #c62828;
}
.campaign-toast.info {
  --campaign-toast-bg: #1565c0;
}
.campaign-toast.warning {
  --campaign-toast-bg: #ef6c00;
}

@media (prefers-reduced-motion: reduce) {
  .campaign-toast,
  .campaign-toast.visible {
    transform: translate(-50%, 0);
    transition: opacity 0.15s linear;
  }
}
