.NewsTickerTop {
  display: none !important;
}

.GameStickyBlock {
  position: sticky !important;
  top: 64px;
  z-index: 500;
  background: #fff;
}

.PlayToEarnStickyHeader {
  background: #fff;
  border-bottom: 1px solid #e2e2e2;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}
.PlayToEarnStickyHeader.Visible {
  max-height: 80px;
  opacity: 1;
}
.PlayToEarnStickyHeader .GameStickyInner {
  max-width: 1370px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}
.PlayToEarnStickyHeader .GameStickyLeft {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.PlayToEarnStickyHeader .GameStickyLeft img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
}
.PlayToEarnStickyHeader .GameStickyLeft .GameStickyName {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.PlayToEarnStickyHeader .GameStickyRight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.PlayToEarnStickyHeader .GameStickyRight .GameStickyButton {
  cursor: pointer;
  text-decoration: none !important;
  color: #000;
  height: 40px;
  background: #f2f2f1;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}
.PlayToEarnStickyHeader .GameStickyRight .GameStickyButton.PlayNow {
  padding: 0 0.8rem;
}
.PlayToEarnStickyHeader .GameStickyRight .GameStickyButton.Blues {
  font-weight: 600;
  background: #0012ff !important;
  color: #fff !important;
}
.PlayToEarnStickyHeader .GameStickyRight .GameStickyButton.Follow {
  padding: 0;
}
.PlayToEarnStickyHeader .GameStickyRight .GameStickyButton.Follow span {
  display: inline-flex;
  align-items: center;
  padding: 0 0.75rem;
}
.PlayToEarnStickyHeader .GameStickyRight .GameStickyButton.Follow span:nth-child(2) {
  height: 40px;
  border-left: 1px solid #e2e2e2;
}
.PlayToEarnStickyHeader .GameStickyRight .GameStickyButton.White {
  background: #fff !important;
  border: 1px solid #e2e2e2;
  width: 40px;
  padding: 0 !important;
  justify-content: center;
  transition: background 0.15s ease;
}
.PlayToEarnStickyHeader .GameStickyRight .GameStickyButton.White:hover {
  background: #f7f7f7 !important;
}

.GameLightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
}
.GameLightbox.Open {
  display: flex;
}
.GameLightbox[hidden] {
  display: none !important;
}
.GameLightbox .GameLightbox__Close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.GameLightbox .GameLightbox__Close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.GameLightbox .GameLightbox__Counter {
  position: absolute;
  top: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
}
.GameLightbox .GameLightboxSwiper {
  width: 100%;
  height: 100%;
}
.GameLightbox .GameLightboxSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5rem;
}
.GameLightbox .GameLightboxSwiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.GameLightbox .GameLightboxSwiper .swiper-button-prev,
.GameLightbox .GameLightboxSwiper .swiper-button-next {
  --swiper-navigation-color: #fff !important;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
  transition: background 0.15s ease;
}
.GameLightbox .GameLightboxSwiper .swiper-button-prev:hover,
.GameLightbox .GameLightboxSwiper .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.22);
}
.GameLightbox .GameLightboxSwiper .swiper-button-prev.swiper-button-disabled,
.GameLightbox .GameLightboxSwiper .swiper-button-next.swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none !important;
}
.GameLightbox .GameLightboxSwiper .swiper-button-prev::after,
.GameLightbox .GameLightboxSwiper .swiper-button-next::after {
  font-size: 18px !important;
  font-weight: 700;
}
.GameLightbox .GameLightboxSwiper .swiper-button-prev {
  left: 1rem;
}
.GameLightbox .GameLightboxSwiper .swiper-button-next {
  right: 1rem;
}
.GameLightbox .GameLightboxSwiper .GameLightbox__Pagination {
  display: none !important;
}

.GameAboutText p {
  margin: 0 0 1rem 0 !important;
}
.GameAboutText p:last-child {
  margin-bottom: 0 !important;
}

.__TitleBar.SponsoredBar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 0.5rem;
}
.__TitleBar.SponsoredBar .__SponsoredLabel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #888;
  font-weight: 500;
}
.__TitleBar.SponsoredBar .__SponsoredLabel svg {
  flex-shrink: 0;
}
.__TitleBar.SponsoredBar .__CreateAdLink {
  color: #0012ff !important;
  text-decoration: none !important;
  font-weight: 500;
  transition: opacity 0.15s ease;
}
.__TitleBar.SponsoredBar .__CreateAdLink:hover {
  opacity: 0.75;
}

.PlayToEarnGameSocial > h2.__SocialTitle,
.PlayToEarnTagItems > h2.__Title {
  margin: 0 !important;
}

.GameInsightList {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0.4rem 0 !important;
}
.GameInsightList .__InsightRow {
  display: flex !important;
  align-items: center !important;
  gap: 0.9rem !important;
  padding: 0.65rem 0.6rem !important;
  border-radius: 8px;
  transition: background 0.12s ease;
  cursor: default;
}
.GameInsightList .__InsightRow:hover {
  background: #f4f4f3;
}
.GameInsightList .__InsightRow .__InsightIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #555;
  flex-shrink: 0;
}
.GameInsightList .__InsightRow .__InsightIcon svg {
  width: 30px !important;
  height: 30px !important;
}
.GameInsightList .__InsightRow .__InsightContent {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.GameInsightList .__InsightRow .__InsightContent dt {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #111 !important;
  line-height: 1.3;
}
.GameInsightList .__InsightRow .__InsightContent dd {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.35;
}
.GameInsightList .__InsightRow .__InsightContent .__InsightBadges a {
  color: #000 !important;
  text-decoration: none !important;
}
.GameInsightList .__InsightRow .__InsightContent .__InsightBadges a:hover {
  text-decoration: underline !important;
}
.GameInsightList .__InsightRow .__InsightContent .__InsightDevices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.15rem;
}
.GameInsightList .__InsightRow .__InsightContent .PlayerSupportItems {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.GameInsightList .__InsightRow .__InsightContent .PlayerSupportItems .__InfoItem {
  font-size: 12px;
  background: #f2f2f1;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.PlayToEarnTagItems dl.__InsightItems,
.PlayToEarnTagItems dl.PlayToEarnDetailsItems {
  margin: 0 !important;
  padding: 0 !important;
}
.PlayToEarnTagItems dl.__InsightItems .__Item dt, .PlayToEarnTagItems dl.__InsightItems .__Item dd,
.PlayToEarnTagItems dl.PlayToEarnDetailsItems .__Item dt,
.PlayToEarnTagItems dl.PlayToEarnDetailsItems .__Item dd {
  margin: 0 !important;
  padding: 0 !important;
  font-weight: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
}
.PlayToEarnTagItems a.__GameTokenHolder {
  display: flex;
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer;
}
.PlayToEarnTagItems a.__GameTokenHolder:hover {
  opacity: 0.95;
}
.PlayToEarnTagItems.Collapsible button.__Title.__Toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  gap: 0.75rem !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
  text-align: left !important;
  color: inherit !important;
}
.PlayToEarnTagItems.Collapsible button.__Title.__Toggle h2 {
  margin: 0 !important;
  padding: 0 !important;
  font: inherit;
  line-height: 1.3;
}
.PlayToEarnTagItems.Collapsible button.__Title.__Toggle .__ToggleIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #444;
  transition: transform 0.25s ease, background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}
.PlayToEarnTagItems.Collapsible button.__Title.__Toggle .__ToggleIcon svg {
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}
.PlayToEarnTagItems.Collapsible button.__Title.__Toggle:hover .__ToggleIcon {
  background: #e2e2e2;
  color: #000;
}
.PlayToEarnTagItems.Collapsible .__CollapseContent {
  overflow: hidden;
  max-height: 4000px;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.2s ease, margin-top 0.2s ease;
}
.PlayToEarnTagItems.Collapsible.Collapsed button.__Title.__Toggle .__ToggleIcon svg {
  transform: rotate(0deg);
}
.PlayToEarnTagItems.Collapsible.Collapsed .__CollapseContent {
  max-height: 0 !important;
  opacity: 0;
  margin-top: 0 !important;
}

.GameFaqWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.GameFaqWrapper .GameFaqItem {
  display: block;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.GameFaqWrapper .GameFaqItem:hover {
  border-color: #d0d0d0;
}
.GameFaqWrapper .GameFaqItem.Active {
  border-color: #0012ff;
}
.GameFaqWrapper .GameFaqItem .GameFaqHeading {
  margin: 0 !important;
  padding: 0 !important;
}
.GameFaqWrapper .GameFaqItem .GameFaqQuestion {
  display: flex !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  padding: 1rem 1.25rem !important;
  background: transparent !important;
  border: 0 !important;
  cursor: pointer !important;
  text-align: left !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #000 !important;
  line-height: 1.4 !important;
}
.GameFaqWrapper .GameFaqItem .GameFaqQuestion:focus {
  outline: none;
}
.GameFaqWrapper .GameFaqItem .GameFaqQuestion .GameFaqIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #666;
  transition: transform 0.25s ease;
}
.GameFaqWrapper .GameFaqItem.Active .GameFaqQuestion .GameFaqIcon {
  transform: rotate(180deg);
  color: #0012ff;
}
.GameFaqWrapper .GameFaqItem .GameFaqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.GameFaqWrapper .GameFaqItem .GameFaqAnswer .GameFaqAnswerInner {
  padding: 0 1.25rem 1.1rem 1.25rem;
  font-size: 14px;
  color: #444;
  line-height: 1.55;
}
.GameFaqWrapper .GameFaqItem .GameFaqAnswer .GameFaqAnswerInner p {
  margin: 0 0 0.75rem 0;
}
.GameFaqWrapper .GameFaqItem .GameFaqAnswer .GameFaqAnswerInner p:last-child {
  margin-bottom: 0;
}
.GameFaqWrapper .GameFaqItem .GameFaqAnswer .GameFaqAnswerInner a {
  color: #0012ff;
  text-decoration: underline;
}

.GameSimilarItems article {
  display: block;
}
.GameSimilarItems article > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.GameSimilarItems .__Item .__TextView h3 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
}

.ContractsBlock {
  background: #fff;
  margin-bottom: 1.5rem;
}
.ContractsBlock .ContractsToolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e2e2;
  background: #fff;
}
.ContractsBlock .ContractsToolbar .ContractsSearch {
  position: relative;
  flex: 1;
  max-width: 420px;
}
.ContractsBlock .ContractsToolbar .ContractsSearch svg {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}
.ContractsBlock .ContractsToolbar .ContractsSearch input {
  width: 100%;
  height: 38px;
  border: 1px solid #e2e2e2 !important;
  border-radius: 8px;
  padding: 0 0.75rem 0 2.2rem;
  background: #fff !important;
  font-size: 14px;
  color: #000;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ContractsBlock .ContractsToolbar .ContractsSearch input:focus {
  border-color: #0012ff !important;
  box-shadow: 0 0 0 3px rgba(0, 18, 255, 0.08);
}
.ContractsBlock .ContractsToolbar .ContractsSearch input::placeholder {
  color: #aaa;
}
.ContractsBlock .ContractsToolbar .ContractsSearch input::-webkit-search-cancel-button {
  cursor: pointer;
}
.ContractsBlock .ContractsToolbar .ContractsCount {
  font-size: 13px;
  color: #666;
  white-space: nowrap;
}
.ContractsBlock .ContractsToolbar .ContractsCount span {
  font-weight: 600;
  color: #000;
}
.ContractsBlock .ContractsTableWrap {
  overflow-x: auto;
}
.ContractsBlock .ContractsTable {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.ContractsBlock .ContractsTable thead th {
  background: #fff;
  border-bottom: 1px solid #e2e2e2;
  padding: 0.7rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  color: #666;
}
.ContractsBlock .ContractsTable thead th:first-child {
  width: 48px;
  text-align: center;
}
.ContractsBlock .ContractsTable thead th:last-child {
  width: 48px;
}
.ContractsBlock .ContractsTable tbody tr {
  transition: background 0.1s ease;
}
.ContractsBlock .ContractsTable tbody tr:hover {
  background: #fafafa;
}
.ContractsBlock .ContractsTable tbody td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #f2f2f2;
  font-size: 14px;
  color: #000;
  vertical-align: middle;
}
.ContractsBlock .ContractsTable tbody td.__Num {
  text-align: center;
  color: #999;
  font-size: 13px;
}
.ContractsBlock .ContractsTable tbody td.__Chain {
  font-weight: 600;
  white-space: nowrap;
}
.ContractsBlock .ContractsTable tbody td.__Address .ContractAddress {
  font-size: 13px;
  color: #333;
  word-break: break-all;
}
.ContractsBlock .ContractsTable tbody td.__Action {
  text-align: right;
}
.ContractsBlock .ContractsTable tbody tr:last-child td {
  border-bottom: 0;
}
.ContractsBlock .ContractsTable .ContractCopy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: #f0f0f0;
  color: #444;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.ContractsBlock .ContractsTable .ContractCopy:hover {
  background: #e2e2e2;
  color: #000;
}
.ContractsBlock .ContractsTable .ContractCopy.Copied {
  background: #16a34a;
  color: #fff;
}
.ContractsBlock .ContractsShowAll {
  text-align: center;
  padding: 0.85rem 1rem;
  border-top: 1px solid #e2e2e2;
  background: #fff;
  cursor: pointer;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.1s ease;
}
.ContractsBlock .ContractsShowAll:hover {
  background: #fafafa;
}
.ContractsBlock .ContractsEmpty {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  color: #888;
  font-size: 14px;
}

.SupportedCryptoTokens article {
  display: block;
}
.SupportedCryptoTokens article > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.SupportedCryptoTokens .__TokenItem .__TextView h3 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: #000 !important;
}
.SupportedCryptoTokens .__TokenItem .__TextView .__Meta {
  display: flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  margin-top: 0.2rem !important;
  font-size: 13px !important;
  color: #666 !important;
}
.SupportedCryptoTokens .__TokenItem .__TextView .__Meta b {
  font-size: 14px !important;
  color: #000 !important;
}

.NewsHeader {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 1rem;
}
.NewsHeader h2 {
  margin: 0 !important;
}
.NewsHeader .__ShowAllLink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px !important;
  color: #0012ff !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.NewsHeader .__ShowAllLink:hover {
  opacity: 0.7;
}
.NewsHeader .__ShowAllLink i {
  font-size: 12px;
}

.NewsItems article {
  display: flex !important;
  height: 100% !important;
}
.NewsItems article > a {
  display: flex;
  flex: 1;
  color: inherit;
  text-decoration: none;
}
.NewsItems article .__Item {
  display: flex !important;
  flex: 1 !important;
  height: 100% !important;
}
.NewsItems article .__TextView {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}
.NewsItems article .__TextView h3 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  color: #000 !important;
}
.NewsItems article .__TextView .__Meta {
  display: flex !important;
  gap: 0.5rem !important;
  margin-top: auto !important;
  padding-top: 0.5rem !important;
  font-size: 12px !important;
  color: #888 !important;
}
.NewsItems article .__TextView .__Meta div {
  display: inline-flex;
  align-items: center;
}
.NewsItems article .__TextView .__Meta time {
  font-style: normal;
}

.HeaderLayout {
  background: #fff !important;
}

.HeaderLayout::before {
  backdrop-filter: unset !important;
}

.ButtonBlockPromote {
  background: #000;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  align-items: center;
  display: inline-flex;
  padding: 0 1rem;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.ButtonBlockPromote:hover {
  background: #181818;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
}
.ButtonBlockPromote {
  font-weight: 600;
  font-size: 16px;
}

.PlayToEarnGameViewLayout .__Middle {
  width: calc(1040px - 2rem) !important;
  min-width: calc(1040px - 2rem) !important;
}

.PlayToEarnGameSocial {
  border-radius: 20px;
}
.PlayToEarnGameSocial .__SocialTitle {
  padding: 0;
  line-height: 2.5rem;
  letter-spacing: -0.5px;
  font-weight: 600;
  font-size: 30px;
}
.PlayToEarnGameSocial .__SocialContent {
  padding: 0.5rem 0 0 0;
  position: relative;
}
.PlayToEarnGameSocial .__SocialContent .PlayToEarnSocialSwiper {
  position: relative;
  overflow: hidden;
}
.PlayToEarnGameSocial .__SocialContent .PlayToEarnSocialSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}
.PlayToEarnGameSocial .__SocialContent .PlayToEarnSocialSwiper .__SocialIcon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  transition: opacity 0.2s ease;
  opacity: 0.9;
}
.PlayToEarnGameSocial .__SocialContent .PlayToEarnSocialSwiper .__SocialIcon:hover {
  opacity: 1;
}
.PlayToEarnGameSocial .__SocialContent .PlayToEarnSocialSwiper .__SocialIcon svg, .PlayToEarnGameSocial .__SocialContent .PlayToEarnSocialSwiper .__SocialIcon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}
.PlayToEarnGameSocial .__SocialContent > .swiper-button-prev,
.PlayToEarnGameSocial .__SocialContent > .swiper-button-next {
  position: absolute !important;
  top: calc(50% + 3px) !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
  --swiper-navigation-size: 12px !important;
  --swiper-navigation-color: #444 !important;
  background: #f0f0f0 !important;
  border: 0 !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 20 !important;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.PlayToEarnGameSocial .__SocialContent > .swiper-button-prev:hover,
.PlayToEarnGameSocial .__SocialContent > .swiper-button-next:hover {
  background: #e2e2e2 !important;
  --swiper-navigation-color: #000 !important;
}
.PlayToEarnGameSocial .__SocialContent > .swiper-button-prev.swiper-button-disabled,
.PlayToEarnGameSocial .__SocialContent > .swiper-button-next.swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none !important;
}
.PlayToEarnGameSocial .__SocialContent > .swiper-button-prev.swiper-button-lock,
.PlayToEarnGameSocial .__SocialContent > .swiper-button-next.swiper-button-lock {
  display: flex !important;
  opacity: 0 !important;
  pointer-events: none;
}
.PlayToEarnGameSocial .__SocialContent > .swiper-button-prev::after,
.PlayToEarnGameSocial .__SocialContent > .swiper-button-next::after {
  font-size: 10px !important;
  font-weight: 700;
  font-family: swiper-icons !important;
}
.PlayToEarnGameSocial .__SocialContent > .swiper-button-prev {
  left: -17px !important;
}
.PlayToEarnGameSocial .__SocialContent > .swiper-button-next {
  right: -17px !important;
}

.GameTopContentLayout {
  min-height: unset !important;
}

.GameTopContentLayout .__GalleryContent {
  height: 520px !important;
  position: relative;
}
.GameTopContentLayout .__GalleryContent .GameGallerySlider {
  height: 100% !important;
}
.GameTopContentLayout .__GalleryContent .GameGallerySlider .swiper-button-prev,
.GameTopContentLayout .__GalleryContent .GameGallerySlider .swiper-button-next {
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
}
.GameTopContentLayout .__GalleryContent .GameGallerySlider .swiper-button-prev.swiper-button-disabled,
.GameTopContentLayout .__GalleryContent .GameGallerySlider .swiper-button-next.swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none !important;
}

.GameSimilarItems .__Item .__ImageView .__ImageSocialScore {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(2px);
  color: #000 !important;
  font-size: 14px !important;
}

.PlayToEarnGameViewLayout .__Left {
  border-right: 0 !important;
  overflow: unset !important;
  padding: 0 !important;
  top: calc(63px + 1.25rem) !important;
}

.PlayToEarnMiddleContentViewer {
  padding: 1.5rem 0 1.5rem 0 !important;
}

.PlayToEarnGameTabLayout .__LeftSideBar {
  padding: 0 !important;
}

.PlayToEarnGameViewLayout {
  gap: 2.5rem !important;
}

.PlayToEarnGameHeader {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 200px;
  padding: 2rem 0;
}
.PlayToEarnGameHeader .__Right img {
  width: 192px;
  border-radius: 40px;
}
.PlayToEarnGameHeader .__Left .CtaButtons {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button {
  cursor: pointer;
  text-decoration: none !important;
  color: #000;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button:hover {
  background: #ebebea !important;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.White:hover {
  background: #f2f2f1 !important;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.White {
  transition: all 0.2s ease;
  background: #fff !important;
  gap: 0.5rem;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.PlayNow {
  padding: 0 2rem;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.IconOnly {
  width: 50px;
  padding: 0 !important;
  justify-content: center;
  color: rgba(0, 0, 0, 0.6);
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.IconOnly img {
  display: block;
  filter: brightness(0) !important;
  opacity: 0.55;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.IconOnly svg {
  display: block;
  width: 24px;
  height: 24px;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.IconOnly:hover {
  color: #000;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.Follow {
  padding: 0;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.Follow span {
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.Follow span:nth-child(2) {
  height: 50px;
  border-left: 1px solid #e2e2e2;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button {
  transition: all 0.1s ease-in-out;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.Blues {
  background: #0012ff !important;
  color: #fff !important;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.Blues:hover {
  box-shadow: 0 0 0 4px rgba(0, 18, 255, 0.1);
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.GameMenuToggle {
  position: relative !important;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.GameMenuToggle .__DropdownMenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 0.4rem 0;
  z-index: 1000;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.GameMenuToggle .__DropdownMenu.Open {
  display: block;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.GameMenuToggle .__DropdownMenu .__MenuItem {
  display: block;
  padding: 0.6rem 1rem;
  color: #000 !important;
  font-size: 14px;
  text-decoration: none !important;
  cursor: pointer;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button.GameMenuToggle .__DropdownMenu .__MenuItem:hover {
  background: #f2f2f1;
}
.PlayToEarnGameHeader .__Left .CtaButtons .Button {
  height: 50px;
  background: #f2f2f1 !important;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  font-size: 18px;
}
.PlayToEarnGameHeader .__Left .__InfoItemBlocks {
  display: flex !important;
  padding: 0.5rem 0 0.5rem;
  margin: 0 !important;
}
.PlayToEarnGameHeader .__Left .__InfoItemBlocks .BlockItem:first-child {
  padding-left: 0;
}
.PlayToEarnGameHeader .__Left .__InfoItemBlocks .BlockItem {
  padding: 0 1.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  border-right: 1px solid #e2e2e2;
}
.PlayToEarnGameHeader .__Left .__InfoItemBlocks .BlockItem:last-child {
  border-right: 0;
}
.PlayToEarnGameHeader .__Left .__InfoItemBlocks .BlockItem dt, .PlayToEarnGameHeader .__Left .__InfoItemBlocks .BlockItem dd {
  margin: 0 !important;
  padding: 0 !important;
}
.PlayToEarnGameHeader .__Left .__InfoItemBlocks .BlockItem dd {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}
.PlayToEarnGameHeader .__Left .__InfoItemBlocks .BlockItem dd .TrendChange {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-weight: 600;
}
.PlayToEarnGameHeader .__Left .__InfoItemBlocks .BlockItem dd .TrendChange.Up {
  color: #16a34a !important;
}
.PlayToEarnGameHeader .__Left .__InfoItemBlocks .BlockItem dd .TrendChange.Down {
  color: #dc2626 !important;
}
.PlayToEarnGameHeader .__Left .__InfoItemBlocks .BlockItem dd .TrendChange svg {
  width: 18px;
  height: 18px;
}
.PlayToEarnGameHeader .__Left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.PlayToEarnGameHeader .__Left h1 {
  font-weight: 800;
  font-size: 50px;
}

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