/* =========================================
   GMET3 — CLEAN MASTER STYLES (No Duplicates)
   ========================================= */

/* ----------------------
   GLOBAL / RESET
---------------------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 65px;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;

  color: #3c4043;
  background: #ffffff;
  text-align: left;

  font: 400 16px/22px Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.page-home { overflow-y: scroll; }
.noScroll { overflow: hidden; }

.display-none, .displayNone, .displaynone { display: none; }

.no-select, .noSelect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

code, tt,
.markdown-body code, .markdown-body tt {
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 85%;
  white-space: break-spaces;
  background-color: rgba(175, 184, 193, 0.2);
  border-radius: 6px;
}

li + li,
.markdown-body li + li { margin-top: 0.25em; }

.clear { clear: both; }
.text-center { text-align: center; }

.flex-row { display: flex; flex-direction: row; }
.flex-column { display: flex; flex-direction: column; }

/* Divider */
.divider {
  width: 90%;
  border: 1px solid rgb(0 0 0 / 10%);
  margin: 2rem auto;
}

/* Links */
a, a:link, a:visited, a:active {
  text-decoration: none;
  color: #039BE5;
}
a:hover, a:active { color: #039BE5; }

/* ----------------------
   BUTTONS
---------------------- */
.button, a.button {
  background-color: #4285f4;
  color: #fff;

  border: 0;
  border-radius: 2px;
  outline: none;

  font-family: Roboto, sans-serif;
  font-size: .9rem;
  font-weight: 500;

  min-width: 76px;
  min-height: 40px;
  padding: .8rem 2rem;

  cursor: pointer;
  text-align: center;
  white-space: nowrap;

  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.15);
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}

.button:hover { box-shadow: 0 3px 12px 0 rgba(0,0,0,0.4); }

.button.primary { background-color: #4285f4; }
.button.primary:hover,
.button.primary:focus { background-color: #1c6fdb; }

/* Outline Button */
.button-outline, a.button-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 6px 12px;

  background: transparent;
  border: 2px solid #000;
  border-radius: 3px;

  color: #000;
  font-weight: 500;

  box-shadow: none;
  min-width: 79px;
  min-height: 40px;
}

.button-outline:not(:last-child) { margin-right: 8px; }
.topBar.sticky .button-outline:hover,
.button-outline:hover { box-shadow: none; }

/* ----------------------
   LAYOUT WRAPPERS
---------------------- */
.body-container.bodyTopSpacer { margin-top: 66px; }
.streamProfileInner { text-align: center; min-height: 348px; }

/* ----------------------
   PROMO BAR + TOP BAR
---------------------- */
.promoBar {
  width: 100%;
  text-align: center;
  background-color: #000;
  color: #fff;
}

.dark-promoBar { background-color: #3f314b; }
.blackFriday-promoBar { background-color: #000; }

.promoBar-wrapper { margin: 0 1.5rem; }
.promoBar-wrapper .promo-text {
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  padding: 14px 0;
}
.promo-text .learn-more {
  color: #fff;
  padding-left: 5px;
  text-decoration: underline;
}

/* Top bar */
.topBar {
  height: 66px;
  transition: box-shadow .218s;
}

.topBar.sticky {
  position: fixed;
  z-index: 999999;
  top: 0; left: 0; right: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.15);
}

.topBar.sticky .selected-nav {
  box-shadow: none;
  background-color: #fafafa;
}

.topBar-wrapper { padding: .5rem 1.5rem; }

/* Bottom bar */
.topBar.bottomBar {
  position: fixed;
  z-index: 999999;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: 56px;
  background: #fff;
  box-shadow: 0 -2px 10px 0 rgba(0,0,0,0.15);
}

.topBar.bottomBar .price-desccription {
  text-align: left;
  line-height: normal;
}

/* Logo */
a.topBarLogo { width: 50px; height: 50px; display: inline-block; }
.logo-img { width: 100%; height: auto; border-radius: 50%; }

/* Flex items in bar */
.flex-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.flex-item:last-child { justify-content: flex-end; }

.flex-middle { width: 100%; }
.flex-middle a {
  border: 0 solid transparent;
  border-radius: 16px;
  color: #3c4043;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  padding: 8px 12px;
  transition: all 0.2s cubic-bezier(0.4,0,1,1);
}

.not-flex-middle { width: 50%; }
.tfm-wrapper { margin: 0 auto; }

/* Price mini text */
.price-desccription { margin-right: 1rem; text-align: right; }
.is-price {
  color: #3c4043;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}
.additional-desccription { white-space: nowrap; }
.additional-price-txt {
  color: #3c4043;
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

/* Sticky bar buttons shadow tweak */
.topBar.sticky .button {
  box-shadow: 0 2px 10px 0 rgba(255,255,255,0.15);
}
.topBar.sticky .button:hover {
  box-shadow: 0 3px 12px 0 rgba(0,0,0,0.4);
}

/* ----------------------
   MOBILE NAV
---------------------- */
.menuIcon {
  display: none;
  width: 26px;
  height: 26px;
  background: center/contain no-repeat url(../images/icons/menu-24px.svg);
  margin-right: 12px;
}

.mobileNavContainer {
  position: relative;
  min-width: 92px;
  display: none;
}

.mobileSelectedNav {
  width: 100%;
  text-align: center;
  white-space: nowrap;

  font-size: 14px;
  color: #3c4043;

  padding: .3rem 1rem;
  border-radius: 16px;

  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.15);
}

.mobileSelectedNav:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  margin-right: -4px;
  vertical-align: text-top;
  background: center/contain no-repeat url(../images/icons/arrow_drop_down-24px.svg);
}

.mobileNav {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;

  background: #fff;
  border-radius: 4px;
  z-index: 2;

  box-shadow:
    0 8px 10px 1px rgba(0,0,0,0.14),
    0 3px 14px 2px rgba(0,0,0,0.12),
    0 5px 5px -3px rgba(0,0,0,0.2);

  transform: scale(.2) translate3d(0,0,0);
  transform-origin: 60% 0;
  transition: opacity .3s cubic-bezier(.175,.885,.22,1.105),
              transform .3s cubic-bezier(.175,.885,.22,1.105);

  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  backface-visibility: hidden;
}

.mobileNav.showMenu {
  transform: scale(1) translate3d(0,0,0);
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.mobileNav a {
  display: block;
  padding: .6rem 1rem;
  color: #3c4043;
  font-size: 14px;
}

.mobileNav-item.selected-mobileNav {
  background-color: #eeeeee;
  pointer-events: none;
}

/* ----------------------
   BODY SECTIONS
---------------------- */
.body-header { margin-top: 2rem; min-height: 356px; }
.body-content { margin: 3rem 0; }

.section-title {
  color: #828286;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
h1.section-title { font-size: 2.5rem; }

/* Anchor buttons */
.anchor-buttons { margin-bottom: 12px; }
.anchor-buttons span:before {
  content: "\002022";
  margin-left: 6px;
  margin-right: 10px;
  vertical-align: bottom;
  color: #3c4043;
}
.anchor-buttons span:first-child:before { display: none; }

.anchor-btn,
.youtubeLink {
  color: #039BE5;
  cursor: pointer;
  white-space: nowrap;
}

.anchor-btn:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: center/contain no-repeat url(../images/icons/arrow_downward-24px.svg);
}

.youtubeLink:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background: center/contain no-repeat url(https://lh3.googleusercontent.com/c0R2Zq2cLW9z0oqy6GfmPat898UoFvaTBVQI7UByq_737wNeaOQ-TqvxCx-5Grm7wLg=w14);
}

/* Card */
.card {
  display: flex;
  width: auto;
  max-width: 21rem;

  padding: .5rem 1rem;
  border-radius: .625rem;

  cursor: pointer;
  transition: all 80ms ease-out;

  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30),
              0 1px 3px 1px rgba(60, 64, 67, .15);
}

.card:hover { box-shadow: 0 2px 11px 0 rgba(0,0,0,0.2); }

.theme-container .card {
  margin: 0 auto;
  max-width: 28rem;
  background-color: #f4f4f4;
}

.card-icon {
  width: 30px;
  height: 50px;
  background-color: #1a73e8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.card-icon.video {
  background-color: transparent;
  background-image: url(https://lh3.googleusercontent.com/c0R2Zq2cLW9z0oqy6GfmPat898UoFvaTBVQI7UByq_737wNeaOQ-TqvxCx-5Grm7wLg=w470);
}

.card-description { margin-left: 1rem; }
.card-title {
  margin-top: .9rem;
  margin-bottom: 0;
  color: #828286;
  font-weight: 500;
}
.card-text { margin-top: .2rem; font-size: .875rem; }

/* Notice */
.notice {
  display: block;
  padding: 1rem 3rem 1rem 5rem;
  font-size: 14px;
  background-color: #e1f5fe;
  color: #01579b;
}
.notice-danger { background: #feefe3; color: #bf360c; }

.notice:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: top;
  margin-left: -2.4rem;
  margin-right: .5rem;
  background: center/contain no-repeat url(../images/icons/error-24px.svg);
}
.notice-danger:before {
  background-image: url(../images/icons/error-24px_red.svg);
}

/* Content sizing */
.contentSqueezer { margin: 0 4rem; }

/* Split content */
.splitContent {
  margin: 4rem 0;
  padding: 4rem;
}

.splitContent:nth-child(even) { background-color: #f4f4f4; }

.splitLeft {
  width: 50%;
  float: left;
  padding: 0 2rem;
}
.splitRight {
  width: 50%;
  float: right;
  padding: 0 2rem;
}

/* alternate flip */
.splitContent:nth-child(even) .splitLeft { float: right; }
.splitContent:nth-child(even) .splitRight { float: left; }

.split-title {
  margin-top: 0;
  color: #7e7e7e;
  line-height: normal;
}

.split-text {
  font-size: 1.25rem;
  line-height: 2rem;
}

/* Split images */
.splitContent-image {
  position: relative;
  overflow: hidden;
  padding-bottom: 55%;
  border-radius: 18px;
}

.splitContent-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: auto;
  max-width: 200% !important;
  transform: translate(-50%, -50%);
}

.splitContent-image .splitImage-full { width: 100%; }

.split-fullImage.vertical-imageDisplay { text-align: center; }
.vertical-imageDisplay img {
  width: auto;
  height: 100%;
  border-radius: 18px;
}

/* Lazy appear (global images/videos) */
img, video { opacity: 0; }

@-moz-document url-prefix() {
  img:-moz-loading { opacity: 0; }
}

img[src], img.lazyimg[data-src],
video[src], video.lazyvideo[data-src] {
  opacity: 0;
  animation: lazyLoadAppear .7s forwards;
}

@keyframes lazyLoadAppear { from {opacity: 0;} to {opacity: 1;} }

/* Loading screen */
.loadsite {
  opacity: 0;
  animation: lazyLoadAppear .5s reverse;
  background: #fff;

  position: fixed;
  inset: 0;
  z-index: 999999;
  width: 100vw;
  height: 100vh;

  pointer-events: none;
}

/* Screenshots section */
#screenshots { margin: 8rem 0; }

.textLoadScreenshots {
  display: block;
  width: 100%;
  padding: 4rem;
  cursor: pointer;
  color: #fff;
}

.striped-bar {
  background: url(../images/other/striped-bar.svg) top repeat-x;
  background-size: auto 15px;
  width: 100%;
  height: 15px;
  margin-bottom: 5px;
}

.feedback-discuss {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
}

/* ----------------------
   NAVIGATION
---------------------- */
.selected-nav {
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.15);
  font-weight: 500;
  pointer-events: none;
}

.nav-item:not(:last-child) { margin-right: 8px; }

.nav-item:hover {
  background-color: #fafafa;
  transition: all 0.2s cubic-bezier(0,0,0.2,1);
}

/* ----------------------
   AVATAR (PROFILE)
---------------------- */
.spAvatar {
  width: 200px;
  height: 200px;

  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spAvatar-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  background-color: rgb(0 0 0 / 80%);
}

/* Profile header text */
.spHeader h3 {
  color: #3c3c3c;
  font-size: 30px;
  margin: 1rem 0 0;
  font-weight: 400;
}

.spHeader a {
  display: block;
  margin: 0 0 0 18px;
  padding: 6px 15px;

  background-color: #3ca773;
  color: #fff;

  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  position: relative;
}

/* Mail me */
a.mail-me { padding: 6px 10px; margin-left: 6px; }
a.mail-me i { font-size: 1.1rem; vertical-align: middle; }

/* Meta list */
ul.spMeta {
  list-style: none;
  padding: 12px 0 15px;
  margin: 0;
}
.spMeta li {
  display: inline-block;
  margin: 0 14px 0 0;
  padding: 0 18px 0 0;

  text-transform: uppercase;
  position: relative;
  font-size: 14px;
}
.spMeta li:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 2px;
  margin-top: -1px;
  border-radius: 50%;
  background: #545454;
}
.spMeta li:last-child:before { display: none; }
.spMeta b { font-weight: bold; }

.spBio {
  color: #828286;
  max-width: 520px;
  margin: 0 auto;
}

/* ----------------------
   GALLERY
---------------------- */
.streamGalleryWrapper {
  max-width: 935px;
  margin: 0 auto;
  text-align: center;
}

.sgGroup { min-height: 534px; }

.sgCell {
  display: inline-block;
  position: relative;

  width: 30%;
  max-width: 300px;
  overflow: hidden;
}
.sgCell a { display: flex; }
.sgCell img, .sgCell video {
  width: 100%;
  height: auto;
  transition: transform .4s;
}

.sgCell:hover img,
.sgCell:hover video { transform: scale(1.3); }

.mask {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: #000;
  transition: opacity .4s;
}
.sgCell:hover .mask { opacity: 0.9; }

.description {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(2);
  opacity: 0;

  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: .8rem;
  line-height: initial;
  white-space: nowrap;

  transition: opacity .4s, transform .4s;
}
.sgCell:hover .description {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ----------------------
   SOCIAL OVERLAY
---------------------- */
.followContainer {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background-color: #fff;

  opacity: 0;
  visibility: hidden;
  transition: all .2s cubic-bezier(.4,0,.2,1);
}

.followContainer.show { opacity: 0.9; visibility: visible; }

.followWrapper {
  position: absolute;
  inset: 0;
  transform: scale(.3);
  opacity: 0;
  transition: all .2s cubic-bezier(.4,0,.2,1);
}
.followContainer.show .followWrapper {
  transform: scale(1);
  opacity: 1;
}

.followMe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.socialCell {
  width: 25%;
  max-width: 100px;
  display: inline-flex;
  padding: 6px;
  border-radius: 45px;
  transition: box-shadow .2s ease-out;
}
.socialCell:hover {
  box-shadow:
    0 2px 4px 0 rgb(60 64 67 / 30%),
    0 3px 7px 5px rgb(60 64 67 / 15%);
}
.socialCell a { display: inline-flex; }
.socialCell img { width: 100%; }

/* ----------------------
   TABS
---------------------- */
ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #efefef;
}
ul.tabs li {
  display: inline-block;
  padding: 15px;
  cursor: pointer;

  background: none;
  color: #9e9e9e;

  text-transform: uppercase;
  font-size: 14px;
}
ul.tabs li.current {
  border-top: 1px solid #262626;
  color: #262626;
}

#tabs-container { overflow: hidden; }

#tabsContent {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.tab-content { width: 100%; flex-shrink: 0; }
.slide-tab-1 { transform: translateX(0); }
.slide-tab-2 { transform: translateX(-100%); }

/* ----------------------
   DOWNLOAD AVATAR ANIM
---------------------- */
img.lazyimg1[data-src] {
  opacity: 0;
  animation: avatarZoomAppear .5s forwards var(--all-delay, 2.8s);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform, opacity;
}

@keyframes avatarZoomAppear {
  0%   { opacity: 0; transform: scale(0); }
  50%  { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.spaWrapper {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 230px;
  height: 230px;
  margin: 0 auto;
}

.daWrapper {
  font-family: Roboto, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 auto;

  animation: zoomDownloadAvatar 0.3s ease forwards var(--all-delay, 2.8s);
  transition: opacity 0.2s ease 0.6s, transform 0.3s ease 0.6s;

  pointer-events: none;
  will-change: opacity, transform;
}

.downloadAvatar {
  --default: rgb(0 0 0 / 20%);
  --active: #000000;

  position: relative;
  border: none;
  outline: none;
  background: none;
  padding: 0;

  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;

  cursor: pointer;
  transform: scale(var(--s, 1));
  transition: transform 0.2s;
  will-change: transform;
}

.downloadAvatar:active { --s: 0.96; }

.downloadAvatar svg {
  display: block;
  fill: none;
  stroke-width: var(--sw, 3px);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.downloadAvatar .circle {
  width: 76px;
  height: 76px;
  transform: rotate(-90deg);
  will-change: transform;
}

.downloadAvatar .circle circle.default { stroke: var(--default); }
.downloadAvatar .circle circle.active {
  stroke: var(--active);
  stroke-dasharray: 227px;
  stroke-dashoffset: var(--active-offset, 227px);
  transition: stroke-dashoffset var(--all-transition, 1.8s) ease var(--all-delay, 0.6s);
}

.downloadAvatar span {
  position: absolute;
  left: 0; right: 0;
  bottom: 13px;

  text-align: center;
  font-weight: 500;
  font-size: 10px;
  color: var(--active);

  opacity: var(--count-opacity, 0);
  transform: translateY(var(--count-y, 4px));

  animation: var(--count, none) 0.3s ease forwards var(--all-delay, 2.2s);
  transition: opacity 0.2s ease 0.6s, transform 0.3s ease 0.6s;
  will-change: opacity, transform;
}

.downloadAvatar .icon {
  --sw: 2px;
  width: 24px;
  height: 40px;

  position: absolute;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -12px;
}

.downloadAvatar .icon svg.line {
  width: 4px;
  height: 37px;

  stroke: var(--active);
  position: absolute;
  left: 10px;
  top: 0;

  stroke-dasharray: 0 33px var(--line-array, 33px) 66px;
  stroke-dashoffset: var(--line-offset, 33px);

  transform: translateY(var(--line-y, 0));
  opacity: var(--line-opacity, 1);

  transition: stroke-dasharray 0.2s, stroke-dashoffset 0.2s, transform 0.32s ease var(--all-delay, 0.25s);
  will-change: transform;
}

.downloadAvatar .icon div {
  width: 40px;
  height: 32px;

  position: absolute;
  overflow: hidden;
  left: 50%;
  bottom: 1px;

  margin-left: -20px;

  transform: translate(var(--icon-x, 0), var(--icon-y, 0));
  transition: transform 0.3s ease var(--all-delay, 2.2s);
  animation: var(--overflow, none) 0s linear forwards var(--all-delay, 2.2s);
  will-change: transform;
}

.downloadAvatar .icon div:before,
.downloadAvatar .icon div:after {
  content: '';
  position: absolute;
  z-index: 1;

  height: 2px;
  left: var(--l, 0);
  top: 15px;
  width: var(--w, 16px);

  background: var(--active);
  border-radius: 1px;

  transform-origin: var(--tx, 15px) 1px;
  transform: rotate(var(--before-rotate, 0deg));
  opacity: var(--tick-opacity, 0);

  transition: transform 0.4s ease var(--all-delay, 2.2s),
              opacity 0s linear var(--all-delay, 2.2s);
  will-change: transform, opacity;
}

.downloadAvatar .icon div:after {
  --l: 14px;
  --w: 26px;
  --tx: 1px;
  transform: rotate(var(--after-rotate, 0deg));
}

.downloadAvatar .icon div svg { stroke: var(--active); }

.downloadAvatar .icon div svg.arrow {
  width: 40px;
  height: 32px;
  opacity: var(--arrow-opacity, 1);
  transition: opacity 0s linear var(--all-delay, .8s);
  will-change: opacity;
}

.downloadAvatar .icon div svg.progress {
  width: 444px;
  height: 10px;

  position: absolute;
  left: 0;
  top: 11px;

  transform: translateX(var(--progress-x, 0));
  opacity: var(--progress-opacity, 0);

  transition: transform var(--all-transition, 2s) ease var(--all-delay, 0.4s),
              opacity 0s linear var(--all-delay, .8s);

  animation: var(--hide, none) 0s linear forwards var(--all-delay, 2.2s);
  will-change: transform, opacity;
}

.downloadAvatar.loading:not(.reset) {
  --line-y: -36px;
  --line-array: 0;
  --line-offset: 15px;
  --active-offset: 0;
  --arrow-opacity: 0;
  --progress-opacity: 1;
  --progress-x: -400px;
  --tick-opacity: 1;
  --before-rotate: 47deg;
  --after-rotate: -46deg;
  --hide: hide;
  --overflow: overflow;
  --icon-x: 2px;
  --icon-y: 7px;
  --count-opacity: 1;
  --count-y: 0;
  --count: count;
}

.downloadAvatar.reset {
  --all-delay: 0s;
  --all-transition: 0.3s;
}

@keyframes hide { to { opacity: 0; } }
@keyframes count { to { transform: translateY(4px); opacity: 0; } }
@keyframes overflow { to { overflow: visible; } }

@keyframes zoomDownloadAvatar {
  from { transform: scale(1); opacity: 1; }
  to   { transform: scale(1.5); opacity: 0; }
}

.spcWrapper { margin-top: 2rem; }

/* ----------------------
   SHOP / CAROUSEL
---------------------- */
.body-container img { max-width: 100%; height: auto; }

.slider-container {
  overflow: hidden;
  background: #191919;
  padding: 1rem 0 4rem;
  margin: 0 auto;
}

.page-reviews .slider-container {
  min-height: 498px;
  padding-top: 1rem;
}

.swiper-wrapper { will-change: transform; }

.carousel {
  margin: 0 1rem;
  text-align: left;
}

.carousel-slide {
  display: inline-block;
  width: 100%;
  max-width: 240px;

  vertical-align: middle;
  text-align: initial;

  color: #727276;
  font-weight: 500;

  margin: 1rem 0.6rem;
  border-radius: 8px;
  overflow: hidden;

  transition: box-shadow 80ms ease-out;

  box-shadow:
    0 1px 2px 0 rgb(60 64 67 / 30%),
    0 2px 6px 2px rgb(60 64 67 / 15%);
}

.carousel-slide:hover {
  box-shadow:
    0 2px 4px 0 rgb(60 64 67 / 30%),
    0 7px 14px 7px rgb(60 64 67 / 15%);
}

.carousel-slide a { color: inherit; }

.carousel-thumbnail {
  background-color: #f6f5f8;
  width: 100%;
  height: 0;
  padding-bottom: 82%;

  position: relative;
  overflow: hidden;

  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.carousel-thumbnail img {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.sinote {
  position: absolute;
  left: 1rem;
  bottom: 1rem;

  background-color: #000;
  color: #fff;

  font-size: .75rem;
  line-height: normal;

  padding: 5px 10px;
  border-radius: 5px;
}
.sinote ~ .sinote { bottom: 2.5rem; }

.sitxt { padding: 1rem; }

.carousel-title {
  color: #039BE5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.siContent { margin: .3rem 0; }

.carousel-price {
  float: left;
  font-weight: bold;
  color: #000;
}

.was-price { opacity: 0.6; text-decoration: line-through; }

.sidate {
  float: right;
  margin-top: -6px;

  color: #727276;
  font-size: .75rem;
  line-height: normal;
  text-align: right;
}
.sidate span { display: block; }

.sidescription {
  font-size: 13px;
  border-top: 1px solid #e0e0e0;
  padding-top: 0.5rem;
}

/* product page spacing */
.product-page .body-content { margin-top: 0; }
.propRate { display: none; }

.viewThemeBanner {
  height: 400px;
  position: relative;
  background-color: #f4f4f4;
}

.bannerInfo {
  position: absolute;
  left: 10rem;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 1;
}

.bannerInfo * { text-align: left; }

.body-container.shopping-item .body-content { margin-top: 0; }

.viewThemeBanner .section-title {
  margin-top: 0;
  margin-bottom: 1.4rem;
}

.deprecated-theme { margin-top: 2rem; color: #ed0000; }

/* Video overlay */
.videoContainer {
  position: fixed;
  inset: 0;
  z-index: 2;

  max-height: 100vh;
  overflow-y: auto;

  visibility: hidden;
  opacity: 0;

  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}

.videoContainer.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.videoWrapper {
  max-width: 700px;
  margin: 80px auto 3rem;
  text-align: center;
  z-index: 1;
}

.vgContainer { position: relative; z-index: 1; }

.videoDarkPane {
  position: fixed;
  inset: 0;
  background-color: #000;
  opacity: .7;
}

.closeDarkPane {
  position: fixed;
  z-index: 1;
  top: 10px;
  right: 30px;

  color: #fff;
  padding: .3rem .6rem;

  cursor: pointer;
  pointer-events: none;
}

.main-video {
  position: relative;
  margin: 0 auto 25px;
  box-shadow: 0 2px 5px rgba(0,0,0,.26);
}

.main-video img { display: block; margin: auto; cursor: pointer; }

.yt-wrapper {
  position: relative;
  height: 0;
  padding-top: 25px;
  padding-bottom: 53.15%;

  background-color: #050117;
  background: center/contain no-repeat url(../images/other/aed11d69.gif);
}

.yt-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.themeVideo {
  width: 50%;
  max-width: 200px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  color: #fff;
}

.main-video .md-icon,
.themeVideo .md-icon {
  position: absolute;
  z-index: 1;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100px;
  height: 100px;

  background: center/contain no-repeat url(../images/icons/play_circle_filled-24px.svg);
  background-color: rgb(84 64 255 / 65%);

  border-radius: 70px;
  pointer-events: none;

  box-shadow:
    0 2px 3px 0 rgb(60 64 67 / 30%),
    0 6px 10px 4px rgb(60 64 67 / 15%);
}

.themeVideo .md-icon {
  margin-top: -16px;
  width: 50px;
  height: 50px;
}

/* Banner BG image */
.bannerbg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.bannerbg img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* ----------------------
   PRODUCT PAGE — CARD LAYOUT
---------------------- */
.product-page .contentSqueezer{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-page .splitContent{
  background: #ffffff;
  border-radius: 18px;
  padding: 3rem;
  margin: 2.5rem 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all .25s ease;
}

.product-page .splitContent:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.product-page .splitContent:nth-child(even){
  background: #fff !important;
}

.product-page .splitLeft,
.product-page .splitRight{
  width: 50%;
  padding: 0 1.5rem;
}

.product-page .splitContent-description{ max-width: 520px; }

.product-page .split-title{
  font-size: 28px;
  margin-bottom: 1rem;
}

.product-page .splitContent-image{
  padding-bottom: 65%;
  border-radius: 16px;
  overflow: hidden;
}

.product-page .splitContent-image img{
  width: 115%;
  max-width: none !important;
}

.product-page .split-fullImage.vertical-imageDisplay img{
  max-height: 360px;
  border-radius: 16px;
}

.product-page .notice{
  max-width: 1100px;
  margin: 1.5rem auto 0;
  border-radius: 12px;
}

.product-page .bannerInfo{
  left: 4rem;
  max-width: 520px;
}

.product-page #screenshots{
  max-width: 1100px;
  margin: 5rem auto 0;
  padding: 0 24px;
}

.product-page .splitContent + .splitContent{ margin-top: 3rem; }

/* ----------------------
   BETTER SLIDER
---------------------- */
.better-slider { max-width: 1000px; margin: 0 auto; }

.mySwiper { padding: 16px 0 40px; }

.mySwiper .swiper-slide{
  display:flex;
  justify-content:center;
  align-items:center;
}

.mySwiper .swiper-slide a{
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  max-width: 780px;
  width: 100%;
}

.mySwiper .swiper-slide img{
  display:block;
  width: 100%;
  height: 420px;
  object-fit: contain; /* يمنع القص */
  background: #111;
  padding: 20px;

  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.mySwiper .swiper-slide a:hover img{
  transform: scale(1.01);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

/* Swiper UI */
.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev { color: #000; }

.mySwiper .swiper-pagination-bullet { opacity: .35; }
.mySwiper .swiper-pagination-bullet-active { opacity: 1; }

/* Zoom badge */
.zoomBadge{
  position:absolute;
  right:10px;
  bottom:10px;
  background: rgba(0,0,0,.6);
  color:#fff;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 12px;
}

/* ----------------------
   LIGHTBOX (Single Definition)
---------------------- */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: none;
}
.lightbox.is-open{ display:block; }

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.75);
}

.lightbox-content{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
}

.lightbox-content img{
  max-width: min(900px, 92vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  background:#111;
}

.lightbox-close{
  position:absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;

  border:0;
  border-radius: 10px;

  font-size: 28px;
  line-height: 42px;
  cursor:pointer;

  background: rgba(255,255,255,.15);
  color:#fff;
}
.lightbox-close:hover{ background: rgba(255,255,255,.25); }

/* ----------------------
   HERO — STYLE UPDATE
---------------------- */
.body-header{
  position: relative;
  overflow: hidden;

  /* الشكل */
  background: #a19b9b;
  border-radius: 20px;

  /* حجم المربع */
  width: 500px;
  aspect-ratio: 1 / 1;

  /* توسيط */
  margin: 40px auto;

  /* وسط المحتوى داخله */
  display: flex;
  align-items: center;
  justify-content: center;
}

.body-header .heroFX{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#heroMesh{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.body-header .heroDots{
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: radial-gradient(rgba(255,255,255,.55) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: overlay;
}

.body-header .heroVignette{
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.10), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,.08), transparent 45%),
    radial-gradient(circle at 50% 60%, rgba(0,0,0,.35), transparent 55%),
    linear-gradient(135deg, rgba(200,109,215,.25), rgba(48,35,174,.18), rgba(15,32,39,.35));
  filter: blur(22px);
  opacity: .95;
}

.body-header .streamProfileWrapper{
  position: relative;
  z-index: 2;
}

.body-header .spContent,
.body-header .spContent p,
.body-header .spHeader h3 { color:#fff; }
.body-header .spBio p { opacity: .9; }

/* ----------------------
   RESPONSIVE
---------------------- */
@media (min-width: 1024px) {
  .spAvatar { width: 230px; height: 230px; }
  .splitContent:nth-child(even) {
    background-color: #f4f4f4;
    margin: 4rem -4rem;
    padding: 4rem 8rem;
  }
  .slider-container { min-height: 558px; }
  .textLoadScreenshots {
    min-height: 430px;
    vertical-align: middle;
    line-height: 431px;
    padding: 0;
    background-color: rgb(255 255 255 / 4%);
  }
  .carousel { text-align: center; }
}

@media (max-width: 1024px) {
  .splitContent { padding: 4rem 0; }
  .splitContent-image, .vertical-imageDisplay { margin-bottom: 2rem; }
  .notice { padding: 1rem 1rem 1rem 3rem; }
}

@media (min-width: 769px) {
  .notDesktop { display: none; }
}

@media (max-width: 768px) {
  .notMobile { display: none; }

  .mobileNavContainer { display: block; }
  .menuIcon { display: inline-block; }
  .nav.tfm-wrapper { display: none; }

  .carousel-slide { width: 33%; }

  .contentSqueezer { margin: 0 .5rem; }
  .splitContent { margin: 2rem 0; padding: 2rem; }

  .splitLeft, .splitRight {
    width: 100%;
    float: none;
    padding: 0;
  }

  .split-text { font-size: 1rem; line-height: 1.65; }

  .vertical-imageDisplay { text-align: center; }
  .vertical-imageDisplay img { max-height: 300px; }

  .bannerInfo { left: 0; padding: 0 18px; }

  .product-page .splitContent { padding: 2rem; }
  .product-page .bannerInfo { left: 0; padding: 0 18px; }

  .mySwiper .swiper-slide a { max-width: 94vw; }
}

@media (max-width: 425px) {
  .splitContent-description { text-align: center; }
  .spBio { min-height: 110px; }
  .sinote { font-size: .625rem; left: .5rem; bottom: .7rem; }
}

@media (max-width: 320px) {
  .promo-text { min-height: 56px; }
}

/* Carousel responsive tweaks */
@media (max-width: 1090px) { .carousel-slide { width: 22%; } }

@media (max-width: 900px) {
  body:not(.page-reviews) .slider-container { padding: 0 !important; }
  body:not(.page-reviews) .swiper-button-next { right: 0 !important; z-index: 1 !important; }
  body:not(.page-reviews) .swiper-button-prev { left: 0 !important; z-index: 1 !important; }
}

@media (max-width: 768px) {
  .carousel { text-align: center; margin: 0 0.5rem; }
  .carousel-slide { width: 30%; }
  .viewThemeBanner .section-title { line-height: normal; }
}

@media (max-width: 690px) { .page-reviews .slider-container { min-height: 520px; } }
@media (max-width: 650px) { .page-reviews .slider-container { min-height: 542px; } }
@media (max-width: 425px) { .page-reviews .slider-container { min-height: 740px; } }
@media (max-width: 375px) { .page-reviews .slider-container { min-height: 828px; } }

@media (max-width: 578px) {
  .carousel-slide { width: 43%; }
  .carousel-thumbnail img { top: -1rem; }

  .sinote {
    font-size: .625rem;
    padding: 3px 6px;
    left: .5rem;
    bottom: .5rem;
  }

  .sitxt { padding: .5rem; text-align: initial; }

  .sidate, .sidescription { font-size: .6875rem; line-height: normal; }
  .carousel-price { font-size: .875rem; }

  .sidescription { min-height: 48px; }

  .bannerbg img {
    width: 150%;
    max-width: unset;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 375px) and (max-width: 545px) {
  .bannerInfo { left: 0; max-width: 80vw; }
}

@media (min-width: 550px) and (max-width: 425px) {
  .bannerInfo { max-width: 80vw; }
}

