/* Slim mobile win ribbon (locker + Match) - blush paper, ink text, black CTA. No shadows. */
.seik-win-ribbon,
.seik-win-ribbon *,
.seik-win-ribbon *::before,
.seik-win-ribbon *::after {
  border-radius: 0 !important;
  box-sizing: border-box;
}

.seik-win-ribbon {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 99999970;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
  min-height: 56px;
  max-height: none;
  padding: 0 8px 0 0;
  border: 1px solid rgba(20, 17, 15, 0.12);
  background: #faf0ef;
  color: #14110f;
  box-shadow: none;
  animation: seikRibbonIn 0.35s ease;
  transition: bottom 0.2s ease;
  overflow: hidden;
}
.seikGameWinningsPopupMsg {
  transition: bottom 0.2s ease;
  box-shadow: none !important;
}
.seik-win-ribbon[hidden] {
  display: none !important;
}
@keyframes seikRibbonIn {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.seik-win-ribbon__img {
  width: 56px;
  min-width: 56px;
  max-width: 56px;
  height: auto;
  min-height: 56px;
  align-self: stretch;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  flex: 0 0 56px;
  display: block;
  background: #f3e6e5;
  border: 0;
  padding: 0;
  margin: 0;
}
span.seik-win-ribbon__img {
  display: block;
}
.seik-win-ribbon__body {
  flex: 1 1 auto;
  min-width: 0;
  align-self: center;
  padding: 6px 0;
}
.seik-win-ribbon__label {
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b635c;
  line-height: 1.2;
}
.seik-win-ribbon__title {
  margin: 1px 0 0;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 600;
  color: #14110f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.seik-win-ribbon__sub {
  margin: 2px 0 0;
  font-size: 10px;
  line-height: 1.3;
  color: #5c534c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.seik-win-ribbon.is-golden-entry {
  border-color: rgba(20, 17, 15, 0.12);
  background: #faf0ef;
}
.seik-win-ribbon.is-golden-entry .seik-win-ribbon__label {
  color: #6b635c;
}
.seik-win-ribbon.is-golden-entry .seik-win-ribbon__title {
  white-space: nowrap;
}
.seik-win-ribbon__cta--dismiss {
  border: 0;
  cursor: pointer;
}
.seik-win-ribbon__cta--draw {
  pointer-events: none;
  cursor: default;
}
.seik-win-ribbon__follow {
  flex: 0 0 auto;
  align-self: center;
  margin-left: 2px;
  color: #14110f !important;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.seik-win-ribbon__codebox {
  display: none;
}
.seik-win-ribbon__code {
  flex: 0 1 auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  max-width: min(46vw, 168px);
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(20, 17, 15, 0.16);
  background: #fff;
  color: #14110f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.seik-win-ribbon__code:hover,
.seik-win-ribbon__code:focus {
  border-color: rgba(20, 17, 15, 0.35);
  outline: none;
}
.seik-win-ribbon__code.is-copied {
  background: #14110f;
  border-color: #14110f;
  color: #faf0ef;
}
.seik-win-ribbon__code-text {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.seik-win-ribbon__code-input,
.seik-win-ribbon__copy {
  display: none !important;
}
.seik-win-ribbon__cta {
  flex: 0 0 auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 0;
  background: #14110f;
  color: #faf0ef !important;
  text-decoration: none !important;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.seik-win-ribbon__cta:hover,
.seik-win-ribbon__cta:focus {
  background: #2a251f;
  color: #faf0ef !important;
}
/* Close is a flex sibling after CTA - never absolute on top of the button */
.seik-win-ribbon__close {
  position: static;
  flex: 0 0 auto;
  align-self: center;
  margin: 0 2px 0 2px;
  border: 0;
  background: transparent;
  color: #6b635c;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 8px 10px;
  min-width: 36px;
  min-height: 36px;
}
@media (max-width: 420px) {
  .seik-win-ribbon {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0 4px 0 0;
    min-height: 52px;
  }
  .seik-win-ribbon__img {
    width: 52px;
    min-width: 52px;
    max-width: 52px;
    min-height: 52px;
    flex: 0 0 52px;
  }
  .seik-win-ribbon__body {
    flex: 1 1 auto;
    min-width: 0;
  }
  .seik-win-ribbon__code {
    max-width: min(40vw, 140px);
    padding: 6px 8px;
    font-size: 10px;
  }
  .seik-win-ribbon__codebox {
    display: none;
  }
  .seik-win-ribbon__cta {
    padding: 6px 9px;
  }
  .seik-win-ribbon__follow {
    display: none;
  }
  .seik-win-ribbon__close {
    padding: 8px;
    margin: 0;
  }
}

/* Match toast → same blush / ink / black button language */
.aseikGameWInningBlock {
  background: #faf0ef !important;
  color: #14110f !important;
  border: 1px solid rgba(20, 17, 15, 0.12) !important;
  box-shadow: none !important;
  padding: 0 8px 0 0 !important;
  gap: 8px !important;
  overflow: hidden !important;
}
.WinningImgLeftSide {
  align-self: stretch !important;
  width: 56px !important;
  flex: 0 0 56px !important;
  margin: 0 !important;
  background: #f3e6e5 !important;
}
.WinningImgLeftSide img {
  width: 56px !important;
  height: 100% !important;
  min-height: 56px !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  display: block !important;
}
.winningPrizeDetsITX p,
.winningPrizeDetsITX h6 {
  color: #14110f !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}
.seikGameSuccessSHOPNOW a {
  background: #14110f !important;
  color: #faf0ef !important;
  padding: 7px 11px !important;
  font-size: 9px !important;
}

@media (max-width: 782px) {
  .seikGameWinningsPopupMsg {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    box-shadow: none !important;
  }
  .aseikGameWInningBlock {
    padding: 0 8px 0 0 !important;
    display: flex !important;
    align-items: stretch !important;
    gap: 10px !important;
    background: #faf0ef !important;
    color: #14110f !important;
    border: 1px solid rgba(20, 17, 15, 0.12) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: 56px !important;
  }
  .aseikGameWInningBlock,
  .aseikGameWInningBlock * {
    border-radius: 0 !important;
  }
  .seikGameWInningIconImgs {
    width: 56px !important;
    flex: 0 0 56px !important;
    align-self: stretch !important;
  }
  .WinningImgLeftSide {
    position: static !important;
    margin: 0 !important;
    width: 56px !important;
    height: 100% !important;
  }
  .WinningImgLeftSide img {
    width: 56px !important;
    height: 100% !important;
    min-height: 56px !important;
    aspect-ratio: 1 !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  .WinningImgOverlayAll,
  .winningImgoVerlayRIght {
    width: auto !important;
    aspect-ratio: auto !important;
    height: auto !important;
    align-self: center !important;
  }
  .winningPrizeDetsITX {
    width: auto !important;
    aspect-ratio: auto !important;
    background: transparent !important;
    color: #14110f !important;
    min-width: 0 !important;
  }
  .winningPrizeDetsITX p,
  .winningPrizeDetsITX h6 {
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
    color: #14110f !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .seikGameSuccessSHOPNOW {
    margin: 0 0 0 auto !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }
  .seikGameSuccessSHOPNOW h6 {
    display: none !important;
  }
  .seikGameSuccessSHOPNOW a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 11px !important;
    background: #14110f !important;
    color: #faf0ef !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }
  .aseikGameWInningCloseBlock {
    position: static !important;
    color: #6b635c !important;
    align-self: center !important;
    padding: 8px 10px !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
  }
}
