.go-teaser[hidden] {
  display: none;
}

.go-teaser {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  min-width: 178px;
  max-width: 210px;
  padding: 12px 14px 13px;
  border: 1px solid rgba(255, 214, 120, 0.45);
  border-radius: 16px;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(0, 175, 240, 0.28), transparent 55%),
    linear-gradient(165deg, #1a1408 0%, #0d0d0d 55%, #111827 100%);
  color: #fff7e6;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  font-family: "Segoe UI", system-ui, sans-serif;
  text-align: left;
  animation: go-teaser-in 0.55s ease-out;
}

.go-teaser__close {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 247, 230, 0.72);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.go-teaser__close:hover,
.go-teaser__close:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.go-teaser__hit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  padding: 0 22px 0 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.go-teaser:hover {
  transform: translateY(-2px);
  border-color: #f5d67a;
  box-shadow: 0 16px 36px rgba(0, 175, 240, 0.22);
}

.go-teaser__new {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5d67a;
}

.go-teaser__off {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.go-teaser__sub {
  font-size: 0.75rem;
  color: rgba(255, 247, 230, 0.72);
}

@keyframes go-teaser-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

.go-win {
  margin: 0;
  min-height: 100dvh;
  background: #07080a;
  color: #fff7e6;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
}

.go-win__glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(0, 175, 240, 0.35), transparent 60%),
    radial-gradient(40% 35% at 80% 90%, rgba(245, 214, 122, 0.18), transparent 55%);
  pointer-events: none;
}

.go-win__card {
  position: relative;
  width: min(380px, 100%);
  padding: 2rem 1.6rem 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(245, 214, 122, 0.4);
  background: linear-gradient(180deg, rgba(26, 20, 12, 0.96), rgba(10, 12, 16, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.go-win__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5d67a;
}

.go-win__brand {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.go-win__brand span {
  color: #00aff0;
}

.go-win__off {
  margin: 0;
  font-size: clamp(2rem, 8vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(180deg, #fff7e6, #f5d67a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.go-win__title {
  margin: 0.45rem 0 1.1rem;
  font-size: 1.15rem;
  font-weight: 650;
  color: rgba(255, 247, 230, 0.9);
}

.go-win__body {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 247, 230, 0.78);
}

.go-win__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  background: #00aff0;
  color: #041018;
  font-weight: 800;
  text-decoration: none;
}

.go-win__cta:hover {
  background: #33c2f5;
}

.go-win__note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 247, 230, 0.5);
  line-height: 1.4;
}

@media (max-width: 520px) {
  .go-teaser {
    right: 12px;
    left: auto;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
