/* Light brutal-ish UI (clean + readable) */

:root{
  --bg0:#f4f7ff;
  --bg1:#eaf1ff;
  --ink:#0b1220;
  --muted:rgba(11,18,32,.66);
  --line:rgba(11,18,32,.14);
  --line2:rgba(11,18,32,.20);
  --shadow: 0 22px 60px rgba(0,0,0,.18);
  --r-xl:46px;
  --r-lg:34px;
  --r-md:22px;
  --r-sm:16px;
  --accent:#17a34a;
  --accent2:#0ea5e9;
  --accent3:#7c3aed;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 650px at 20% 10%, rgba(14,165,233,.18) 0%, transparent 55%),
    radial-gradient(900px 560px at 80% 16%, rgba(124,58,237,.12) 0%, transparent 58%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 100%);
}

/* Frame */
.shell{
  width:min(1120px, 94vw);
  margin: 26px auto;
  border-radius: var(--r-xl);
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    url("assets/noise.svg");
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,18,32,.12);
  position:relative;
  overflow:hidden;
}

/* Header */
.top{ padding: 6px 6px 0; }

.logo{
  height: 92px;
  border-radius: 40px 40px 16px 16px;
  
  border: 1px solid rgba(11,18,32,.12);
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 14px 18px;
  position:relative;
  overflow:hidden;
}
.logo:after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(23,163,74,.10) 35%, rgba(14,165,233,.10) 55%, transparent 85%),
    url("assets/noise.svg");
  opacity:.9;
  pointer-events:none;
  mix-blend-mode:multiply;
}
.logo__mark{
  width: 64px; height: 64px;
  border-radius: 18px;
  background:
    conic-gradient(from 180deg, var(--accent) 0 25%, var(--accent2) 25% 55%, var(--accent3) 55% 78%, #ef4444 78% 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  border: 1px solid rgba(11,18,32,.12);
}
.logo__text{ position:relative; z-index:1; }
.logo__big{ font-weight: 1000; letter-spacing: .28em; font-size: 28px; }
.logo__small{
  margin-top: 6px;
  font-weight: 850;
  letter-spacing: .22em;
  font-size: 10px;
  text-transform:uppercase;
  color: rgba(11,18,32,.60);
}

/* ticker */
.ticker{
  margin-top: 12px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(11,18,32,.12);
  overflow:hidden;
}
.ticker__track{
  height:100%;
  display:flex;
  align-items:center;
  gap: 36px;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 16s linear infinite;
  padding-left: 16px;
}
.ticker__item{ font-weight: 900; color: rgba(11,18,32,.82); letter-spacing:.04em; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* layout */
.layout{
  display:flex;
  gap: 16px;
  padding: 16px 6px 10px;
}

/* panels */
.panel{
  
  border: 1px solid rgba(11,18,32,.12);
  border-radius: var(--r-lg);
  padding: 14px;
  position:relative;
  overflow:hidden;
}
.panel:before{
  content:"";
  position:absolute; inset:0;
  background: url("assets/noise.svg");
  opacity:.25;
  pointer-events:none;
}

/* left menu */
.panel--menu{
  width: 230px;
  border-radius: 40px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.menuTitle{
  width:100%;
  height: 54px;
  border-radius: 18px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(11,18,32,.12);
  color: var(--ink);
  font-weight: 1000;
  letter-spacing: .18em;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 14px;
}
.menuTitle__tag{
  font-size: 11px;
  letter-spacing:.18em;
  opacity:.75;
  border: 1px solid rgba(11,18,32,.12);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
}
.menu{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding: 4px 2px;
}
.menuBtn{
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.12);
  
  color: rgba(11,18,32,.86);
  font-weight: 900;
  cursor:pointer;
  text-align:left;
  padding: 0 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition: transform .08s ease, box-shadow .14s ease, border-color .14s ease;
}
.menuBtn:hover{ transform: translateY(-1px); box-shadow: 0 14px 26px rgba(0,0,0,.12); border-color: rgba(23,163,74,.35); }
.menuBtn.is-active{ border-color: rgba(23,163,74,.55); }
.pill{
  font-size: 11px;
  letter-spacing:.16em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.12);
  color: rgba(11,18,32,.78);
  background: rgba(255,255,255,.82);
}

/* center */
.panel--game{
  flex: 1;
  border-radius: 46px;
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

/* game title */
.gameTitle{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding: 8px 10px 2px;
}
.gameTitle__name{
  font-size: 26px;
  font-weight: 1000;
  letter-spacing: .10em;
}
.gameTitle__sub{
  margin-top: 6px;
  font-weight: 850;
  letter-spacing: .08em;
  color: rgba(11,18,32,.62);
}

/* screen */
.screen{
  border-radius: 28px;
  border: 1px solid rgba(11,18,32,.12);
  
  overflow:hidden;
}
.screenTop{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 10px;
  padding: 12px 12px 0;
}
.screenTop__label{
  font-weight: 1000;
  letter-spacing:.14em;
  font-size: 12px;
}
.screenTop__hint{
  margin-top: 6px;
  font-weight: 850;
  color: rgba(11,18,32,.60);
  font-size: 12px;
}
.screenTabs{ display:flex; gap: 10px; }
.tab{
  height: 36px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.88);
  color: rgba(11,18,32,.86);
  font-weight: 950;
  letter-spacing:.06em;
  cursor:pointer;
}
.tab.is-active{
  border-color: rgba(14,165,233,.45);
  box-shadow: 0 0 0 4px rgba(14,165,233,.16);
}
.shotWrap{ padding: 12px; }
.shot{
  width: 100%;
  display:none;
  border-radius: 20px;
  border: 1px solid rgba(11,18,32,.12);
  
  max-height: 420px;
  object-fit: cover;
}
.shot.is-active{ display:block; }

/* Info card centered */
.infoCard{
  border-radius: 26px;
  border: 1px solid rgba(11,18,32,.12);
  
  padding: 18px 18px 16px;
}
.infoCard__title{
  margin: 0 0 10px;
  text-align:center;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.infoCard__lead,
.infoCard__text{
  margin: 0 auto 10px;
  max-width: 760px;
  text-align:center;
  line-height: 1.55;
  font-weight: 800;
  color: rgba(11,18,32,.84);
}
.infoCard__why{
  margin-top: 12px;
  border-top: 1px solid rgba(11,18,32,.10);
  padding-top: 12px;
}
.whyTitle{
  text-align:center;
  font-weight: 1000;
  letter-spacing:.10em;
  margin-bottom: 10px;
}
.whyList{
  margin: 0 auto;
  max-width: 760px;
  padding-left: 18px;
  display:flex;
  flex-direction:column;
  gap: 8px;
  font-weight: 850;
  color: rgba(11,18,32,.78);
}
.whyList li{ line-height: 1.45; }

/* right side */
.panel--side{
  width: 300px;
  border-radius: 42px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.card{
  border-radius: 26px;
  border: 1px solid rgba(11,18,32,.12);
  
  padding: 14px;
  position:relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute; inset:0;
  background: url("assets/noise.svg");
  opacity:.20;
  pointer-events:none;
}
.card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
  position:relative;
  z-index:1;
}
.card__title{
  margin:0;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing:.18em;
}
.sideTitle{ font-weight:1000; letter-spacing:.22em; font-size: 14px; }
.sideSub{ margin-top: 6px; font-weight:900; letter-spacing:.10em; color: rgba(11,18,32,.62); }
.statusPill{
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .16em;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(23,163,74,.35);
  color: rgba(23,163,74,.95);
  background: rgba(255,255,255,.82);
}

/* form */
.buyForm{ display:flex; flex-direction:column; gap: 10px; position:relative; z-index:1; }
.field{ display:flex; flex-direction:column; gap: 6px; }
.field__lbl{
  font-size: 11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: rgba(11,18,32,.60);
  font-weight: 950;
}
.field__ctl{
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.12);
  
  color: rgba(11,18,32,.90);
  padding: 0 12px;
  font-weight: 850;
  outline:none;
}
.field__ctl:focus{
  border-color: rgba(14,165,233,.45);
  box-shadow: 0 0 0 4px rgba(14,165,233,.14);
}
.priceRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.10);
  
}
.priceRow__k{ font-weight: 950; letter-spacing:.12em; font-size: 12px; color: rgba(11,18,32,.62); }
.priceRow__v{ font-weight: 1000; letter-spacing:.08em; }
.buyBtn{
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(11,18,32,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.76));
  color: rgba(11,18,32,.92);
  font-weight: 1000;
  letter-spacing: .22em;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .14s ease, border-color .14s ease;
}
.buyBtn:hover{ transform: translateY(-1px); box-shadow: 0 18px 36px rgba(0,0,0,.14); border-color: rgba(23,163,74,.35); }
.buyNote{
  border-radius: 16px;
  border: 1px dashed rgba(11,18,32,.20);
  padding: 10px 12px;
  font-weight: 850;
  color: rgba(11,18,32,.78);
  
}

/* footer */
.footer{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 0 12px 8px;
  font-weight: 850;
  color: rgba(11,18,32,.62);
}
.footer__muted{ color: rgba(11,18,32,.45); }

@media (max-width: 980px){
  .layout{ flex-direction:column; }
  .panel--menu, .panel--side{ width: 100%; }
  .shot{ max-height: 520px; }
}




  100% { left: 130%; }
}


/* Premium logo-like background */
.logo,
.panel,
.card,
.infoCard,
.screen{
  background:
    linear-gradient(135deg,
      #eef1f4 0%,
      #e6ebf0 35%,
      #dde3ea 65%,
      #f3f5f8 100%
    ),
    url("assets/noise.svg");
  border: 1px solid rgba(0,0,0,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 10px 25px rgba(0,0,0,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}

/* Hover lift effect */
.panel:hover,
.card:hover,
.infoCard:hover,
.screen:hover{
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 18px 40px rgba(0,0,0,.15);
}


/* Glass effect upgrade (logo-like cool metallic) */
.logo,
.panel,
.card,
.infoCard,
.screen{
  background:
    linear-gradient(135deg,
      #f6f8fb 0%,
      #e9eef5 28%,
      #dfe7ef 52%,
      #e9eef5 74%,
      #f6f8fb 100%
    ),
    radial-gradient(700px 220px at 55% 40%, rgba(255,255,255,.85), rgba(255,255,255,0) 70%),
    url("assets/noise.svg");
  border: 1px solid rgba(0,0,0,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -1px 0 rgba(0,0,0,.04),
    0 10px 22px rgba(0,0,0,.10),
    0 0 0 1px rgba(255,255,255,.55);
}

/* Contour emphasis for main layout blocks */
.panel--game,
.panel--menu,
.panel--side{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 14px 30px rgba(0,0,0,.12),
    0 0 0 1px rgba(0,0,0,.08);
}

/* Premium hover lift */
.panel,
.card,
.infoCard,
.screen,
.logo{
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.panel:hover,
.card:hover,
.infoCard:hover,
.screen:hover{
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 18px 44px rgba(0,0,0,.16),
    0 0 0 1px rgba(0,0,0,.10);
  border-color: rgba(14,165,233,.18);
}


/* ---------- Typography refinement ---------- */

/* Base text */
body{
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Main game title */
.gameTitle__name{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* Subtitle */
.gameTitle__sub{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Section titles */
.infoCard__title,
.card__title,
.sideTitle{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
}

/* Lead paragraph */
.infoCard__lead{
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

/* Regular paragraph text */
.infoCard__text{
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

/* List styling */
.whyTitle{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
}

.whyList{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* Buttons slightly stronger but not heavy */
.buyBtn,

/* Video always visible refinement */



/* Zoom + drag functionality */
.zoomContainer{
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.zoomContainer:active{
  cursor: grabbing;
}

.shot{
  transition: transform .1s ease;
  transform-origin: center center;
  max-height: none;
  height: auto;
}


/* Pan & zoom screenshot viewport */
.shotWrap{
  padding: 12px;
  position: relative;
}
.panzoom{
  width: 100%;
  height: 420px; /* keep same window size */
  border-radius: 20px;
  border: 1px solid rgba(11,18,32,.12);
  overflow: hidden;
  display: none;
  background:
    linear-gradient(135deg,
      #f6f8fb 0%,
      #e9eef5 28%,
      #dfe7ef 52%,
      #e9eef5 74%,
      #f6f8fb 100%
    ),
    url("assets/noise.svg");
  position: relative;
  cursor: grab;
  user-select: none;
  touch-action: none; /* allow pointer dragging */
}
.panzoom.is-active{ display:block; }
.panzoom.is-dragging{ cursor: grabbing; }

.panzoom .shotImg{
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  display:block;
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(0px,0px) scale(1);
  transform-origin: center center;
  translate: -50% -50%;
  will-change: transform;
}

/* helper hint */
.pzHint{
  position:absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.72);
  color: rgba(11,18,32,.70);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
}

/* Submenu for Interactive Games */
.submenu{
  display:none;
  flex-direction:column;
  gap:6px;
  margin-top:6px;
  padding-left:6px;
}
.submenu__item{
  display:block;
  padding:8px 10px;
  border-radius:12px;
  text-decoration:none;
  font-size:13px;
  font-weight:500;
  background: rgba(255,255,255,.6);
  border:1px solid rgba(0,0,0,.06);
  color:#111;
  transition: background .12s ease, transform .12s ease;
}
.submenu__item:hover{
  background: rgba(255,255,255,.9);
  transform: translateX(4px);
}
.submenu.is-open{
  display:flex;
}


/* Zoom viewport (static, zoom-at-cursor) */
/* Zoom viewport full-height image */
.zoomViewport{
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.6);
}



.zoomViewport .zoomImg.is-active{
  display: block;
}

.zoomViewport .zoomImg.is-active{
  display: block;
}


/* ===== FIX: Ensure screenshots always visible ===== */
.shotWrap{
  width:100%;
}

.zoomViewport{
  width:100%;
  position:relative;
}

.zoomViewport .zoomImg{
  width:100%;
  height:auto;
  display:none;
  position:relative;
}

.zoomViewport .zoomImg.is-active{
  display:block;
}

/* Fallback if zoomViewport missing */
.shot{
  width:100%;
  height:auto;
}


/* Manual PayPal link button */
.payLink{
  margin-top: 10px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  color: rgba(11,18,32,.9);
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  transition: transform .12s ease, box-shadow .14s ease, background .14s ease;
}
.payLink:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0,0,0,.14);
  background: rgba(255,255,255,.95);
}
.field__hint{
  display:block;
  margin-top: 6px;
  font-size: 12px;
  opacity: .72;
}


.blink-text {
  animation: blinkFade 1.4s infinite;
}

@keyframes blinkFade {
  0%   { opacity: 1; }
  50%  { opacity: 0.35; }
  100% { opacity: 1; }
}


.blink-text {
  animation: blinkColor 1.6s infinite;
}

@keyframes blinkColor {
  0%   { color: #000; }
  50%  { color: #f5e6c8; }
  100% { color: #000; }
}

.contactsLink {
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}


@keyframes blinkColor {
  0% {
    color: #000;
    text-shadow: none;
  }
  50% {
    color: #f5e6c8;
    text-shadow:
      -1px -1px 0 #000,
       1px -1px 0 #000,
      -1px  1px 0 #000,
       1px  1px 0 #000;
  }
  100% {
    color: #000;
    text-shadow: none;
  }
}


.contactsIcons {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  font-size: 16px;
}

.contactsIcons li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contactsIcons i {
  font-size: 22px;
  width: 26px;
}

.contactsIcons a {
  text-decoration: none;
  font-weight: 600;
}

.contactsIcons a:hover {
  text-decoration: underline;
}


.contactsText{
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}


.buyNowBtn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #c40000;
  color: #f5e6c8;
  font-weight: 700;
  text-decoration: none;
  
}


  50% {
    background: #ffffff;
    color: #d60000;
  }
  100% {
    background: #c40000;
    color: #f5e6c8;
  }
}


.buyNowBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.buyNowBtn{
  animation: buyColorShift 4s infinite alternate;
}

@keyframes buyColorShift{
  0%{
    background:#c40000;
    color:#f5e6c8;
  }
  100%{
    background:#8ec5ff;
    color:#ffffff;
  }
}


.contactsInline{
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}


.buyNowBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}


/* --- TUZNAN LOGO FIX --- */
.logo__mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}


/* --- LOGO HARD REPLACE --- */
.logo {
  gap: 14px;
}

.logo__mark {
  width: 52px;
  height: 52px;
  padding: 0;
  background: none;
  border-radius: 12px;
}

.logo__mark img,
.logo__mark {
  object-fit: cover;
}


/* --- BIGGER TUZNAN LOGO --- */
.logo__mark {
  width: 64px;
  height: 64px;
}


/* --- DOMINANT LOGO, SMALLER BACKGROUND --- */
.logo__mark {
  width: 76px;
  height: 76px;
}

.logo {
  align-items: center;
}

.top {
  padding-left: 14px;
}

/* reduce visual weight of background capsule */
.top::before {
  opacity: 0.85;
}


/* --- REMOVE HEADER CAPSULE BACKGROUND --- */
.top{
  background: transparent !important;
  box-shadow: none !important;
}


/* --- REMOVE LOGO CAPSULE --- */
.logo__mark{
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}


/* --- REMOVE LOGO FRAME + SCALE UP --- */
.logo__mark {
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;

  width: 120px;
  height: 120px;
}


/* Logo text should not look like a link */
.logo,
.logo * {
  text-decoration: none !important;
  color: inherit;
}


/* --- SMOOTH LOGO EDGE, NO BACKGROUND CLASH --- */
.logo__mark {
  background: transparent !important;
  overflow: hidden;
  border-radius: 18px;
  /* soften edges to blend with header */
  mask-image: radial-gradient(circle at center, black 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 70%, transparent 100%);
}


/* --- LOGO USES HEADER BACKGROUND --- */
.logo__mark {
  background: inherit !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  border-radius: 0 !important;
}


/* --- INSET (PRESSED) LOGO EFFECT --- */
.logo__markWrap{
  width: 120px;
  height: 120px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,0.45),
    inset 0 -10px 16px rgba(0,0,0,0.20);
}

.logo__markWrap img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}


/* --- CLEAN LOGO: no box, no visible seams --- */
.logo__markWrap{
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.logo__markWrap img{
  background: transparent !important;
}


/* --- HOT DISCOUNT PRICE --- */
.priceHot{
  font-weight: 800;
  color: #ff2a2a;
  position: relative;
  padding: 2px 6px;
}

.priceHot::before{
  content: "";
  position: absolute;
  inset: -4px -8px;
  background: radial-gradient(circle at center, rgba(255,42,42,0.25), transparent 70%);
  z-index: -1;
}
