/* Water Clean Motion — SellAuth theme */
:root {
  --water-blue: #5d86ff;
  --water-blue-2: #7aa2ff;
  --water-cyan: #4edfff;
  --water-bg: #06080d;
  --water-bg-soft: #090d16;
  --water-panel: rgba(12, 17, 28, .78);
  --water-panel-solid: #0d121d;
  --water-text: #f7f9ff;
  --water-muted: #929db4;
  --water-line: rgba(154, 174, 222, .13);
  --water-line-strong: rgba(134, 161, 229, .25);
  --water-radius-sm: 11px;
  --water-radius: 17px;
  --water-radius-lg: 24px;
  --water-shadow: 0 24px 70px rgba(0, 0, 0, .38);
  --hero-x: 0px;
  --hero-y: 0px;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(122, 162, 255, .55) #070a11;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--water-text);
  letter-spacing: -.014em;
  background:
    radial-gradient(circle at 12% -8%, rgba(93, 134, 255, .13), transparent 29rem),
    radial-gradient(circle at 88% 16%, rgba(78, 223, 255, .055), transparent 25rem),
    linear-gradient(180deg, #080b12 0%, var(--water-bg) 54%, #080b12 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 82%);
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

* { scrollbar-width: thin; }
::selection { color: #fff; background: rgba(93, 134, 255, .42); }
a { transition: color .2s ease, opacity .2s ease, transform .2s ease; }
.text-primary { color: var(--water-blue-2) !important; }

/* Navbar */
header.sticky-top { z-index: 1035; }
.navbar {
  width: min(calc(100% - 28px), 1260px);
  min-height: 66px;
  margin: 12px auto 0;
  border: 1px solid var(--water-line);
  border-radius: 16px;
  background: rgba(7, 10, 17, .78) !important;
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .25);
  opacity: 0;
  transform: translateY(-14px);
}
.water-ready .navbar { animation: water-nav-in .65s cubic-bezier(.2, .8, .2, 1) forwards; }
.navbar .container { max-width: none; padding-inline: 16px; }
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-size: .98rem;
  letter-spacing: -.03em;
}
.navbar-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 5px 14px rgba(93, 134, 255, .23));
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
}
.navbar-brand:hover img { transform: rotate(-5deg) scale(1.06); filter: drop-shadow(0 7px 18px rgba(93, 134, 255, .38)); }
.navbar-brand span { font-weight: 700; }
.navbar-nav { align-items: center; }
.nav-link {
  position: relative;
  padding: .52rem .72rem !important;
  color: #9ca7bd !important;
  font-size: .84rem;
  font-weight: 500;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: .72rem;
  bottom: .25rem;
  left: .72rem;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--water-blue-2), transparent);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .2s ease, transform .25s ease;
}
.nav-link:hover { color: #fff !important; }
.nav-link:hover::after, .nav-link.active::after { opacity: .8; transform: scaleX(1); }
.navbar .btn { min-height: 36px; border-radius: 10px; font-size: .82rem; }
.navbar-toggler { padding: .42rem .52rem; border: 1px solid var(--water-line); border-radius: 10px; box-shadow: none !important; }
.navbar-toggler-icon { width: 1.2em; height: 1.2em; filter: invert(1); }

/* Buttons and fields */
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: .58rem .86rem;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.25;
  transition: transform .2s cubic-bezier(.2, .8, .2, 1), box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-primary {
  color: #fff !important;
  border: 1px solid rgba(151, 176, 255, .48) !important;
  background: linear-gradient(135deg, #668eff, #486eea) !important;
  box-shadow: 0 8px 22px rgba(73, 110, 234, .22), inset 0 1px rgba(255, 255, 255, .18);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 28%, rgba(255,255,255,.23) 47%, transparent 66%);
  transform: translateX(-140%);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(73, 110, 234, .34), inset 0 1px rgba(255, 255, 255, .2); }
.btn-primary:hover::before { animation: water-sheen .72s ease; }
.btn-outline-primary {
  color: #dbe4ff !important;
  border-color: var(--water-line) !important;
  background: rgba(255, 255, 255, .025) !important;
}
.btn-outline-primary:hover {
  border-color: rgba(122, 162, 255, .4) !important;
  background: rgba(93, 134, 255, .09) !important;
}
.water-ripple-wave {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  background: rgba(255, 255, 255, .28);
  transform: translate(-50%, -50%) scale(0);
  animation: water-ripple .62s ease-out forwards;
}
.form-control, .form-select, select, textarea {
  min-height: 44px;
  color: #fff !important;
  border: 1px solid var(--water-line) !important;
  border-radius: var(--water-radius-sm) !important;
  background: rgba(8, 12, 20, .82) !important;
  box-shadow: none !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-control:focus, .form-select:focus, select:focus, textarea:focus {
  border-color: rgba(93, 134, 255, .64) !important;
  background: rgba(10, 15, 25, .94) !important;
  box-shadow: 0 0 0 3px rgba(93, 134, 255, .09) !important;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 28px), 1260px);
  min-height: 520px !important;
  margin: 16px auto 0;
  overflow: hidden;
  border: 1px solid var(--water-line);
  border-radius: var(--water-radius-lg);
  background-position: center !important;
  background-size: cover !important;
  box-shadow: var(--water-shadow);
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -125px;
  z-index: -1;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(93, 134, 255, .3), rgba(78, 223, 255, .045) 48%, transparent 70%);
  filter: blur(8px);
  transform: translate3d(var(--hero-x), var(--hero-y), 0);
  animation: water-orb-drift 9s ease-in-out infinite alternate;
  transition: transform .18s ease-out;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(5, 7, 12, .985) 0%, rgba(5, 7, 12, .91) 47%, rgba(5, 7, 12, .42) 100%),
    linear-gradient(180deg, transparent 58%, rgba(5, 7, 12, .48));
}
.hero .bg-overlay {
  opacity: .34;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 7, 12, .7));
}
.hero > .container {
  min-height: 520px;
  max-width: 1120px;
  padding: 72px 30px;
  align-items: center;
}
.hero .content {
  position: relative;
  z-index: 2;
  max-width: 670px;
  text-align: left !important;
}
.hero .content::before {
  content: "PREMIUM DIGITAL PRODUCTS";
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: #becdff;
  border: 1px solid rgba(122, 162, 255, .22);
  border-radius: 999px;
  background: rgba(93, 134, 255, .085);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
  box-shadow: 0 0 0 rgba(93, 134, 255, 0);
  opacity: 0;
  transform: translateY(12px);
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.85rem, 5.5vw, 4.9rem);
  font-weight: 700;
  line-height: .99;
  letter-spacing: -.065em;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(18px);
}
.hero h1 strong, .hero h1 em { color: var(--water-blue-2); font-style: normal; }
.hero p {
  max-width: 580px;
  margin: 20px 0 0;
  color: #a3adc1;
  font-size: clamp(.96rem, 1.45vw, 1.08rem);
  line-height: 1.68;
  opacity: 0;
  transform: translateY(18px);
}
.hero-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 25px;
  opacity: 0;
  transform: translateY(18px);
}
.fake-searchbar {
  width: 100%;
  max-width: 520px;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid var(--water-line);
  border-radius: 13px;
  background: rgba(8, 12, 21, .71);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .19);
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.fake-searchbar:hover {
  border-color: rgba(122, 162, 255, .34);
  background: rgba(10, 15, 25, .88);
  transform: translateY(-2px);
  box-shadow: 0 15px 38px rgba(0, 0, 0, .25);
}
.fake-searchbar svg, .searchbar svg {
  width: 19px !important;
  fill: #8190ac !important;
  transition: fill .2s ease, transform .25s ease;
}
.fake-searchbar:hover svg { fill: #b9c9ff !important; transform: scale(1.08); }
.fake-searchbar input {
  height: 48px;
  min-height: 48px;
  border: 0 !important;
  background: transparent !important;
  font-size: .9rem;
}
.hero-actions { display: flex; align-items: center; gap: 10px; margin-top: 15px; }
.hero .hero-actions .btn-primary { min-height: 41px; padding: .66rem .96rem; }
.stats-wrapper {
  margin-top: 29px !important;
  justify-content: flex-start !important;
  opacity: 0;
  transform: translateY(18px);
}
.stats {
  gap: 8px !important;
  flex-wrap: wrap;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
.stats > div {
  min-width: 126px;
  padding: 10px 13px;
  border: 1px solid var(--water-line);
  border-radius: 12px;
  background: rgba(9, 14, 24, .58);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.stats > div:hover { transform: translateY(-3px); border-color: rgba(122, 162, 255, .3); background: rgba(13, 19, 32, .72); }
.stats .value { color: #fff !important; font-size: .94rem !important; font-weight: 700; }
.stats .value svg { width: .95rem !important; height: .95rem !important; }
.stats .label { margin-top: 2px; color: #7f8ba4 !important; font-size: .66rem !important; }

.water-ready .hero .content::before { animation: water-rise-in .62s .12s cubic-bezier(.2, .8, .2, 1) forwards, water-badge-glow 3.6s 1.1s ease-in-out infinite; }
.water-ready .hero h1 { animation: water-rise-in .7s .19s cubic-bezier(.2, .8, .2, 1) forwards; }
.water-ready .hero p { animation: water-rise-in .7s .27s cubic-bezier(.2, .8, .2, 1) forwards; }
.water-ready .hero-controls { animation: water-rise-in .7s .35s cubic-bezier(.2, .8, .2, 1) forwards; }
.water-ready .stats-wrapper { animation: water-rise-in .7s .43s cubic-bezier(.2, .8, .2, 1) forwards; }

/* Sections */
.component.container, section.container { max-width: 1180px; }
.py-20 { padding-top: 5.8rem !important; padding-bottom: 5.8rem !important; }
.section-title { margin-bottom: 9px; }
.section-title h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 710;
  line-height: 1.03;
  letter-spacing: -.052em;
}
.section-title h2::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  margin-right: 11px;
  vertical-align: .24em;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--water-blue), var(--water-cyan));
  box-shadow: 0 0 18px rgba(93, 134, 255, .5);
  animation: water-line-breathe 3s ease-in-out infinite;
}
.section-subtitle { max-width: 620px; margin-bottom: 27px; }
.section-subtitle p { color: var(--water-muted); line-height: 1.65; }

/* Product and content cards */
.products .card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  height: 100%;
  overflow: hidden;
  color: #fff;
  border: 1px solid var(--water-line) !important;
  border-radius: var(--water-radius) !important;
  background: linear-gradient(180deg, rgba(15, 21, 35, .9), rgba(9, 13, 22, .95)) !important;
  box-shadow: 0 13px 40px rgba(0, 0, 0, .2);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .24s cubic-bezier(.2, .8, .2, 1), border-color .24s ease, box-shadow .24s ease;
}
.products .card:hover {
  border-color: rgba(122, 162, 255, .34) !important;
  box-shadow: 0 21px 52px rgba(0, 0, 0, .34), 0 0 0 1px rgba(93, 134, 255, .055);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-6px);
}
.card-img-top { overflow: hidden; background: #0a0f19; }
.card-img-top img { transition: transform .52s cubic-bezier(.2, .8, .2, 1), filter .28s ease; }
.card:hover .card-img-top img { transform: scale(1.045); filter: saturate(1.06) contrast(1.02); }
.card-img-top .overlay {
  opacity: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(5, 7, 12, .9));
  transition: opacity .24s ease, bottom .24s ease !important;
}
.card:hover .card-img-top .overlay { opacity: 1; }
.card-img-top .overlay .btn { font-size: .82rem; }
.products .card-body { padding: 16px 17px 18px; }
.products .card-title { margin: 8px 0 0; font-size: 1rem; font-weight: 660; letter-spacing: -.024em; }
.products .card .info { align-items: center; margin-bottom: 5px; }
.products .card .price { color: #fff !important; font-size: .91rem; font-weight: 700; }
.products .card .text-primary {
  padding: 4px 8px;
  border: 1px solid rgba(93, 134, 255, .14);
  border-radius: 999px;
  color: #a8bdff !important;
  background: rgba(93, 134, 255, .075);
  font-size: .7rem;
}
.badges > div {
  padding: 4px 7px !important;
  border-radius: 8px !important;
  font-size: .66rem !important;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

/* Generic UI */
.card, .modal-content, .accordion-item, .dropdown-menu, .list-group-item, .table-responsive {
  border-color: var(--water-line) !important;
  background-color: var(--water-panel-solid) !important;
}
.modal-content { border-radius: 17px !important; box-shadow: var(--water-shadow); }
.modal-header, .modal-footer { border-color: var(--water-line) !important; }
.accordion-button { color: #fff !important; background: rgba(255, 255, 255, .018) !important; box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: #bfd0ff !important; background: rgba(93, 134, 255, .07) !important; }
.table { --bs-table-bg: transparent; --bs-table-color: #dfe5f3; --bs-table-border-color: var(--water-line); }
hr { border-color: var(--water-line); opacity: 1; }

/* Footer */
footer.footer {
  margin-top: 34px;
  border-top: 1px solid var(--water-line);
  background: linear-gradient(180deg, rgba(8, 11, 18, .18), rgba(6, 8, 13, .97));
}
footer .container { max-width: 1180px; }
footer, footer p, footer a { color: #8390a8 !important; }
footer a:hover { color: #fff !important; transform: translateX(2px); }
footer h5, footer h6, footer .navbar-brand { color: #fff !important; }
.footer-credit-bar { border-top: 1px solid rgba(154, 174, 222, .09); }
.footer-credit-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.footer-credit {
  position: relative;
  margin: 0;
  color: #77849c !important;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-credit strong { color: #c5d2f5; font-weight: 700; }
.footer-credit::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 162, 255, .58), transparent);
  transform: scaleX(.35);
  opacity: .45;
  animation: water-credit-line 3.5s ease-in-out infinite;
}

/* Scroll reveal */
.water-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .62s ease, transform .62s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--water-delay, 0ms);
}
.water-reveal.is-visible { opacity: 1; transform: translateY(0); }
.products .card.water-reveal {
  transform: perspective(900px) translateY(16px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}
.products .card.water-reveal.is-visible {
  transform: perspective(900px) translateY(0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}
.products .card.water-reveal.is-visible:hover {
  transform: perspective(900px) translateY(-6px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

@keyframes water-nav-in { to { opacity: 1; transform: translateY(0); } }
@keyframes water-rise-in { to { opacity: 1; transform: translateY(0); } }
@keyframes water-sheen { to { transform: translateX(140%); } }
@keyframes water-ripple { to { opacity: 0; transform: translate(-50%, -50%) scale(1); } }
@keyframes water-orb-drift {
  from { margin: 0; filter: blur(8px); }
  to { margin: 24px 0 0 -18px; filter: blur(13px); }
}
@keyframes water-badge-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(93, 134, 255, 0); }
  50% { box-shadow: 0 0 25px rgba(93, 134, 255, .13); }
}
@keyframes water-line-breathe { 0%, 100% { transform: scaleX(.8); opacity: .72; } 50% { transform: scaleX(1.15); opacity: 1; } }
@keyframes water-credit-line { 0%, 100% { transform: scaleX(.35); opacity: .35; } 50% { transform: scaleX(1); opacity: .72; } }

@media (max-width: 991.98px) {
  .navbar { width: calc(100% - 20px); margin-top: 10px; }
  .navbar-collapse { padding: 13px 2px 5px; }
  .navbar-nav { align-items: stretch; gap: 3px !important; }
  .navbar .btn { width: 100%; }
  .hero { width: calc(100% - 20px); min-height: 500px !important; border-radius: 20px; }
  .hero > .container { display: block; min-height: 500px; padding: 62px 24px; }
  .hero .content { margin-top: 12px; }
  .hero h1 { font-size: clamp(2.8rem, 10.5vw, 4.5rem); }
  .hero::after { background: linear-gradient(180deg, rgba(5, 7, 12, .94), rgba(5, 7, 12, .76)); }
  .hero::before { right: -210px; }
}

@media (max-width: 575.98px) {
  .hero { min-height: 480px !important; }
  .hero > .container { min-height: 480px; padding: 52px 19px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 3.4rem); }
  .hero p { font-size: .92rem; line-height: 1.6; }
  .hero .content::before { margin-bottom: 15px; font-size: .58rem; }
  .hero-controls { margin-top: 21px; }
  .hero-actions { width: 100%; }
  .hero .hero-actions .btn-primary { width: 100%; justify-content: center; }
  .stats-wrapper { margin-top: 23px !important; }
  .stats > div { flex: 1 1 calc(50% - 4px); min-width: 112px; padding: 9px 10px; }
  .py-20 { padding-top: 4.4rem !important; padding-bottom: 4.4rem !important; }
  .section-title h2 { font-size: 2.05rem; }
  .footer-credit { font-size: .64rem; letter-spacing: .055em; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .navbar, .hero .content::before, .hero h1, .hero p, .hero-controls, .stats-wrapper, .water-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* WATER10 penalty coupon popup */
body.water-coupon-open {
  overflow: hidden;
}

.water-coupon {
  --coupon-blue: #3978ff;
  --coupon-cyan: #55c7ff;
  --coupon-ice: #dbeaff;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear .45s, opacity .34s ease;
}

.water-coupon.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.water-coupon__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(26, 78, 179, .2), transparent 38%),
    rgba(1, 4, 10, .8);
  -webkit-backdrop-filter: blur(13px) saturate(.78);
  backdrop-filter: blur(13px) saturate(.78);
}

.water-coupon__dialog {
  position: relative;
  isolation: isolate;
  width: min(100%, 560px);
  overflow: hidden;
  border: 1px solid rgba(91, 149, 255, .4);
  border-radius: 26px;
  outline: none;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(17, 28, 50, .98), rgba(5, 10, 20, .99) 58%, rgba(7, 15, 30, .99));
  box-shadow:
    0 34px 100px rgba(0, 0, 0, .7),
    0 0 0 1px rgba(116, 170, 255, .06) inset,
    0 0 54px rgba(45, 105, 255, .16);
  transform: translateY(24px) scale(.965);
  opacity: 0;
  transition: transform .48s cubic-bezier(.16, 1, .3, 1), opacity .28s ease;
}

.water-coupon.is-open .water-coupon__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.water-coupon__dialog::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, .075), transparent 25%, transparent 70%, rgba(63, 131, 255, .08));
  pointer-events: none;
}

.water-coupon__dialog::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  left: -55%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .075), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}

.water-coupon.is-open .water-coupon__dialog::after {
  animation: water-coupon-sweep 1.1s .28s ease both;
}

.water-coupon__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(92, 143, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 143, 255, .12) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 82%);
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.water-coupon__ambient {
  position: absolute;
  z-index: -1;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.water-coupon__ambient--one {
  top: -150px;
  left: -105px;
  background: rgba(33, 94, 255, .26);
  animation: water-coupon-float-one 7s ease-in-out infinite alternate;
}

.water-coupon__ambient--two {
  right: -160px;
  bottom: -155px;
  background: rgba(47, 181, 255, .18);
  animation: water-coupon-float-two 8.5s ease-in-out infinite alternate;
}

.water-coupon__particles span {
  position: absolute;
  z-index: -1;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #82c9ff;
  box-shadow: 0 0 12px #4d9cff;
  opacity: .48;
  animation: water-coupon-particle 5s ease-in-out infinite;
}

.water-coupon__particles span:nth-child(1) { top: 15%; left: 12%; animation-delay: -.4s; }
.water-coupon__particles span:nth-child(2) { top: 27%; right: 14%; animation-delay: -2.2s; }
.water-coupon__particles span:nth-child(3) { top: 58%; left: 8%; animation-delay: -3.6s; }
.water-coupon__particles span:nth-child(4) { top: 72%; right: 9%; animation-delay: -1.4s; }
.water-coupon__particles span:nth-child(5) { bottom: 11%; left: 24%; animation-delay: -4.1s; }
.water-coupon__particles span:nth-child(6) { top: 9%; right: 32%; animation-delay: -2.8s; }

.water-coupon__close {
  position: absolute;
  z-index: 7;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(117, 164, 255, .22);
  border-radius: 50%;
  color: #aebbd2;
  background: rgba(8, 15, 28, .72);
  box-shadow: 0 7px 22px rgba(0, 0, 0, .25);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.water-coupon__close:hover {
  color: #fff;
  border-color: rgba(103, 163, 255, .56);
  background: rgba(48, 104, 220, .15);
  transform: rotate(5deg) scale(1.05);
}

.water-coupon__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 40px 30px;
  text-align: center;
}

.water-coupon__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 14px;
  border: 1px solid rgba(89, 148, 255, .4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 103, 255, .16), rgba(7, 16, 30, .82) 68%);
  box-shadow: 0 0 28px rgba(45, 114, 255, .17), inset 0 0 22px rgba(72, 139, 255, .08);
}

.water-coupon__mark::before,
.water-coupon__mark::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(73, 135, 255, .12);
  border-radius: 50%;
  animation: water-coupon-ring 2.7s ease-out infinite;
}

.water-coupon__mark::after { animation-delay: 1.35s; }

.water-coupon__drop {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  color: #9be4ff;
  background: linear-gradient(145deg, rgba(63, 163, 255, .24), rgba(38, 90, 211, .1));
  filter: drop-shadow(0 0 13px rgba(50, 161, 255, .72));
  animation: water-coupon-drop 3s ease-in-out infinite;
}

.water-coupon__drop i { font-size: 1.34rem; }

.water-coupon__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(89, 148, 255, .28);
  border-radius: 999px;
  color: #88c8ff;
  background: rgba(28, 80, 178, .1);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .145em;
}

.water-coupon__eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coupon-cyan);
  box-shadow: 0 0 9px var(--coupon-cyan);
  animation: water-coupon-dot 1.8s ease-in-out infinite;
}

.water-coupon h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-shadow: 0 0 28px rgba(76, 130, 255, .16);
}

.water-coupon__content > p:not(.water-coupon__copy-state):not(.water-coupon__game-status):not(.water-coupon__reward-text) {
  margin: 14px 0 20px;
  color: #a9b4c8;
  font-size: .92rem;
  line-height: 1.55;
}

.water-coupon__content > p strong,
.water-coupon__reward-text strong {
  color: #62baff;
  font-weight: 800;
}

.water-coupon__game-shell {
  width: 100%;
}

.water-coupon__arena {
  position: relative;
  width: 100%;
  height: 230px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(82, 134, 230, .2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(93, 134, 255, .14), transparent 45%),
    linear-gradient(180deg, rgba(7, 14, 25, .95), rgba(7, 11, 18, .96) 40%, rgba(5, 11, 20, .98) 100%);
  box-shadow: inset 0 0 32px rgba(45, 105, 255, .06), 0 18px 40px rgba(0, 0, 0, .2);
}

.water-coupon__arena::before {
  content: "";
  position: absolute;
  inset: auto 0 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(91, 159, 255, .26), transparent);
  opacity: .8;
}

.water-coupon__arena::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 120px;
  height: 56px;
  border: 1px solid rgba(117, 172, 255, .16);
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  border-bottom: 0;
  transform: translateX(-50%);
  opacity: .45;
}

.water-coupon__goal {
  position: absolute;
  top: 28px;
  left: 50%;
  width: min(88%, 360px);
  height: 136px;
  transform: translateX(-50%);
}

.water-coupon__goal-post,
.water-coupon__goal-bar {
  position: absolute;
  background: linear-gradient(180deg, rgba(235, 245, 255, .96), rgba(120, 162, 231, .72));
  box-shadow: 0 0 18px rgba(92, 178, 255, .18);
}

.water-coupon__goal-post {
  top: 0;
  width: 6px;
  height: 100%;
  border-radius: 999px;
}

.water-coupon__goal-post--left { left: 0; }
.water-coupon__goal-post--right { right: 0; }

.water-coupon__goal-bar {
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 999px;
}

.water-coupon__goal-net {
  position: absolute;
  inset: 6px 10px 0;
  border-radius: 0 0 14px 14px;
  opacity: .45;
  background-image:
    linear-gradient(rgba(120, 180, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 180, 255, .16) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: perspective(400px) rotateX(10deg);
}

.water-coupon__keeper {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 62px;
  height: 92px;
  transform: translateX(-50%);
  transform-origin: 50% 90%;
  transition: transform .72s cubic-bezier(.18, .89, .32, 1.18), filter .72s ease;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .35));
}

.water-coupon__keeper-head,
.water-coupon__keeper-body,
.water-coupon__keeper-arm,
.water-coupon__keeper-leg {
  position: absolute;
  display: block;
}

.water-coupon__keeper-head {
  top: 0;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eef5ff, #9fc3ff);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(97, 172, 255, .12);
}

.water-coupon__keeper-body {
  top: 18px;
  left: 50%;
  width: 24px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, #66b3ff, #2e6eff);
  transform: translateX(-50%);
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, .12);
}

.water-coupon__keeper-arm {
  top: 24px;
  width: 14px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8ed6ff, #3978ff);
}

.water-coupon__keeper-arm--left {
  left: 8px;
  transform: rotate(34deg);
  transform-origin: top center;
}

.water-coupon__keeper-arm--right {
  right: 8px;
  transform: rotate(-34deg);
  transform-origin: top center;
}

.water-coupon__keeper-leg {
  top: 48px;
  width: 13px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4b96ff, #183f8d);
}

.water-coupon__keeper-leg--left {
  left: 20px;
  transform: rotate(12deg);
  transform-origin: top center;
}

.water-coupon__keeper-leg--right {
  right: 20px;
  transform: rotate(-12deg);
  transform-origin: top center;
}

.water-coupon__ball {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 26px;
  height: 26px;
  transform: translateX(-50%);
  transition: transform .7s cubic-bezier(.18, .89, .32, 1.15), opacity .18s ease;
}

.water-coupon__ball span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(230, 240, 255, .96);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 34%, #ffffff, #b7d7ff 66%, #72afff 100%);
  box-shadow: 0 0 22px rgba(102, 176, 255, .22);
}

.water-coupon__ball span::before,
.water-coupon__ball span::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(39, 74, 128, .32);
  border-radius: 50%;
}

.water-coupon__ball span::after {
  inset: 3px 11px;
  border-radius: 999px;
}

.water-coupon__impact {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.water-coupon__impact span {
  position: absolute;
  display: block;
  inset: 0;
  width: 62px;
  height: 62px;
  margin: -31px;
  border: 1px solid rgba(122, 196, 255, .5);
  border-radius: 50%;
  animation: none;
}

.water-coupon__shot-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.water-coupon__shot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid rgba(106, 154, 255, .2);
  border-radius: 13px;
  color: #deebff;
  background: rgba(8, 14, 24, .85);
  box-shadow: inset 0 0 22px rgba(57, 120, 255, .06);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.water-coupon__shot-btn:hover {
  border-color: rgba(116, 186, 255, .46);
  background: rgba(18, 35, 69, .92);
  box-shadow: inset 0 0 26px rgba(57, 120, 255, .09), 0 10px 22px rgba(0, 0, 0, .18);
  transform: translateY(-2px);
}

.water-coupon__shot-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.water-coupon__game-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: #7082a5;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.water-coupon__reward {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height .46s ease, opacity .28s ease, transform .28s ease, margin-top .28s ease;
}

.water-coupon__reward[hidden] {
  display: block;
}

.water-coupon.is-won .water-coupon__reward {
  max-height: 320px;
  margin-top: 20px;
  opacity: 1;
  transform: translateY(0);
}

.water-coupon__win-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 12px;
  border: 1px solid rgba(90, 160, 255, .28);
  border-radius: 999px;
  color: #b9ddff;
  background: rgba(43, 117, 255, .12);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.water-coupon__reward-text {
  margin: 0 0 16px;
  color: #a9b4c8;
  font-size: .88rem;
  line-height: 1.55;
}

.water-coupon__code {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 330px);
  min-height: 72px;
  padding: 13px 22px;
  overflow: hidden;
  border: 1px solid rgba(68, 158, 255, .78);
  border-radius: 14px;
  color: #d7e7ff;
  background: linear-gradient(135deg, rgba(26, 67, 144, .17), rgba(4, 10, 22, .8));
  box-shadow: inset 0 0 25px rgba(62, 127, 255, .08), 0 0 26px rgba(43, 105, 255, .11);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.water-coupon__code::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, .09) 48%, transparent 72%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.water-coupon__code:hover {
  border-color: #71c4ff;
  background: linear-gradient(135deg, rgba(34, 91, 200, .25), rgba(5, 13, 28, .86));
  box-shadow: inset 0 0 30px rgba(62, 127, 255, .11), 0 0 33px rgba(43, 105, 255, .2);
  transform: translateY(-2px);
}

.water-coupon__code:hover::before { transform: translateX(120%); }

.water-coupon__code span {
  position: relative;
  z-index: 1;
  font-size: clamp(1.65rem, 6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: .19em;
  background: linear-gradient(180deg, #eef6ff, #73b9ff 76%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(72, 153, 255, .34));
}

.water-coupon__code i {
  position: relative;
  z-index: 1;
  color: #7fa7e9;
  font-size: .92rem;
}

.water-coupon__code.is-copied {
  border-color: #70d4ff;
  transform: scale(.985);
}

.water-coupon__copy-state {
  min-height: 17px;
  margin: 9px 0 0;
  color: #66748c;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .13em;
  transition: color .2s ease;
}

.water-coupon__copy-state.is-copied { color: #72cbff; }

.water-coupon__confirm {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  padding: 12px 20px;
  overflow: hidden;
  border: 1px solid rgba(119, 184, 255, .46);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(110deg, #245de2, #368eff 56%, #245de2);
  background-size: 180% 100%;
  box-shadow: 0 12px 34px rgba(25, 78, 210, .3), inset 0 1px 0 rgba(255, 255, 255, .21);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .045em;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  animation: water-coupon-button-gradient 5s ease-in-out infinite;
}

.water-coupon__confirm::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -15%;
  width: 28%;
  height: 260%;
  background: rgba(255, 255, 255, .15);
  transform: rotate(18deg) translateX(-180%);
  transition: transform .7s ease;
}

.water-coupon__confirm:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 17px 40px rgba(25, 78, 210, .4), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.water-coupon__confirm:hover::after { transform: rotate(18deg) translateX(520%); }
.water-coupon__confirm:active { transform: translateY(0) scale(.99); }

.water-coupon__remember {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #728099;
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.water-coupon__remember input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.water-coupon__checkbox {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(104, 146, 221, .38);
  border-radius: 5px;
  background: rgba(2, 7, 16, .72);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.water-coupon__checkbox i {
  color: #fff;
  font-size: .55rem;
  opacity: 0;
  transform: scale(.5);
  transition: opacity .18s ease, transform .18s ease;
}

.water-coupon__remember input:checked + .water-coupon__checkbox {
  border-color: #58a8ff;
  background: #3478ef;
  box-shadow: 0 0 14px rgba(52, 120, 239, .32);
}

.water-coupon__remember input:checked + .water-coupon__checkbox i {
  opacity: 1;
  transform: scale(1);
}

.water-coupon__remember input:focus-visible + .water-coupon__checkbox {
  outline: 2px solid rgba(102, 176, 255, .72);
  outline-offset: 3px;
}

.water-coupon.is-shot-left .water-coupon__ball {
  transform: translateX(calc(-50% - 122px)) translateY(-122px) scale(.82);
}

.water-coupon.is-shot-right .water-coupon__ball {
  transform: translateX(calc(-50% + 122px)) translateY(-122px) scale(.82);
}

.water-coupon.is-shot-left .water-coupon__keeper {
  transform: translateX(calc(-50% + 105px)) translateY(-22px) rotate(18deg);
}

.water-coupon.is-shot-right .water-coupon__keeper {
  transform: translateX(calc(-50% - 105px)) translateY(-22px) rotate(-18deg);
}

.water-coupon.is-shot-left .water-coupon__impact,
.water-coupon.is-shot-right .water-coupon__impact {
  opacity: 1;
}

.water-coupon.is-shot-left .water-coupon__impact {
  left: calc(50% - 124px);
}

.water-coupon.is-shot-right .water-coupon__impact {
  left: calc(50% + 124px);
}

.water-coupon.is-shot-left .water-coupon__impact span,
.water-coupon.is-shot-right .water-coupon__impact span {
  animation: water-coupon-impact .78s ease-out forwards;
}

.water-coupon.is-shot-left .water-coupon__impact span:nth-child(2),
.water-coupon.is-shot-right .water-coupon__impact span:nth-child(2) {
  animation-delay: .08s;
}

.water-coupon.is-shot-left .water-coupon__impact span:nth-child(3),
.water-coupon.is-shot-right .water-coupon__impact span:nth-child(3) {
  animation-delay: .16s;
}

@keyframes water-coupon-sweep {
  from { transform: translateX(0) skewX(-18deg); }
  to { transform: translateX(420%) skewX(-18deg); }
}

@keyframes water-coupon-float-one {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(30px, 24px, 0) scale(1.12); }
}

@keyframes water-coupon-float-two {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-28px, -22px, 0) scale(1.08); }
}

@keyframes water-coupon-particle {
  0%, 100% { opacity: .16; transform: translateY(8px) scale(.8); }
  50% { opacity: .72; transform: translateY(-8px) scale(1.15); }
}

@keyframes water-coupon-ring {
  0% { opacity: 0; transform: scale(.76); }
  28% { opacity: .48; }
  100% { opacity: 0; transform: scale(1.34); }
}

@keyframes water-coupon-drop {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.04); }
}

@keyframes water-coupon-dot {
  0%, 100% { opacity: .45; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes water-coupon-button-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes water-coupon-impact {
  0% { opacity: .6; transform: scale(.2); }
  100% { opacity: 0; transform: scale(1.55); }
}

@media (max-width: 575.98px) {
  .water-coupon { padding: 14px; }
  .water-coupon__dialog { border-radius: 20px; }
  .water-coupon__content { padding: 34px 20px 25px; }
  .water-coupon__close { top: 12px; right: 12px; width: 35px; height: 35px; }
  .water-coupon__mark { width: 68px; height: 68px; }
  .water-coupon__content > p:not(.water-coupon__copy-state):not(.water-coupon__game-status):not(.water-coupon__reward-text) {
    margin-bottom: 18px;
    font-size: .84rem;
  }
  .water-coupon__arena { height: 212px; }
  .water-coupon__goal { width: calc(100% - 20px); }
  .water-coupon__shot-actions { grid-template-columns: 1fr; }
  .water-coupon__shot-btn { min-height: 44px; }
  .water-coupon.is-shot-left .water-coupon__ball { transform: translateX(calc(-50% - 86px)) translateY(-116px) scale(.82); }
  .water-coupon.is-shot-right .water-coupon__ball { transform: translateX(calc(-50% + 86px)) translateY(-116px) scale(.82); }
  .water-coupon.is-shot-left .water-coupon__keeper { transform: translateX(calc(-50% + 72px)) translateY(-18px) rotate(15deg); }
  .water-coupon.is-shot-right .water-coupon__keeper { transform: translateX(calc(-50% - 72px)) translateY(-18px) rotate(-15deg); }
  .water-coupon.is-shot-left .water-coupon__impact { left: calc(50% - 88px); }
  .water-coupon.is-shot-right .water-coupon__impact { left: calc(50% + 88px); }
  .water-coupon__code { min-height: 68px; }
  .water-coupon__code span { letter-spacing: .13em; }
  .water-coupon__confirm { min-height: 50px; }
}

@media (max-height: 740px) and (min-width: 576px) {
  .water-coupon__content { padding-top: 30px; padding-bottom: 24px; }
  .water-coupon__arena { height: 206px; }
}

@media (prefers-reduced-motion: reduce) {
  .water-coupon,
  .water-coupon__dialog,
  .water-coupon__close,
  .water-coupon__code,
  .water-coupon__confirm,
  .water-coupon__checkbox,
  .water-coupon__checkbox i,
  .water-coupon__keeper,
  .water-coupon__ball,
  .water-coupon__reward {
    transition-duration: .01ms !important;
  }
  .water-coupon__dialog::after,
  .water-coupon__ambient,
  .water-coupon__particles span,
  .water-coupon__mark::before,
  .water-coupon__mark::after,
  .water-coupon__drop,
  .water-coupon__eyebrow-dot,
  .water-coupon__confirm,
  .water-coupon__impact span {
    animation: none !important;
  }
}

/* Penalty popup viewport safeguards */
.water-coupon__dialog {
  max-height: min(94vh, 780px);
  overflow-x: hidden;
  overflow-y: auto;
}

.water-coupon__dialog::-webkit-scrollbar { width: 5px; }
.water-coupon__dialog::-webkit-scrollbar-track { background: transparent; }
.water-coupon__dialog::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(103, 163, 255, .32);
}

@media (max-width: 575.98px) {
  .water-coupon__content { padding: 27px 16px 22px; }
  .water-coupon__mark { width: 58px; height: 58px; margin-bottom: 10px; }
  .water-coupon__drop { width: 38px; height: 38px; }
  .water-coupon__eyebrow { margin-bottom: 9px; font-size: .58rem; }
  .water-coupon h2 { font-size: 1.48rem; }
  .water-coupon__arena { height: 194px; }
  .water-coupon__goal { top: 24px; height: 118px; }
  .water-coupon__shot-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 12px; }
  .water-coupon__shot-btn { min-height: 42px; padding: 9px 8px; font-size: .7rem; }
  .water-coupon__remember { margin-top: 14px; }
}


/* =========================================================
   WATER CHECKOUT / CART REFINEMENT
   ========================================================= */
.water-cart-page { position: relative; }
.water-checkout-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
  padding: 30px;
  border: 1px solid rgba(79, 142, 255, .18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 110, 255, .18), transparent 38%),
    linear-gradient(145deg, rgba(8, 13, 24, .96), rgba(5, 8, 15, .9));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255,255,255,.035);
}
.water-checkout-kicker,
.water-custom-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #5e9dff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.water-checkout-hero h1,
.water-custom-page__hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 750;
  letter-spacing: -.055em;
}
.water-checkout-hero p,
.water-custom-page__hero p { margin: 10px 0 0; color: rgba(216, 226, 244, .62); }
.water-checkout-trust { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.water-checkout-trust span {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 38px; padding: 0 13px;
  border: 1px solid rgba(86, 145, 244, .16); border-radius: 999px;
  background: rgba(10, 17, 30, .72); color: rgba(230, 238, 252, .72);
  font-size: .72rem; font-weight: 650;
}
.water-checkout-trust i { color: #69a7ff; }
.water-cart-page .cart-item-bg,
.water-cart-page .form,
.water-cart-page .border.rounded {
  border-color: rgba(73, 124, 211, .14) !important;
  background: linear-gradient(155deg, rgba(10, 15, 26, .94), rgba(6, 9, 16, .96)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 18px 55px rgba(0,0,0,.18);
}
.water-cart-page .cart-item-bg { border-radius: 18px !important; overflow: hidden; }
.water-cart-page .form { border-radius: 20px !important; position: sticky; top: 110px; }
.water-order-title { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; color:#fff; font-weight:750; }
.water-order-badge { padding:5px 9px; border:1px solid rgba(78,145,255,.24); border-radius:999px; color:#68a5ff; font-size:.61rem; letter-spacing:.12em; }
.water-cart-page .btn-outline-primary[type="submit"] {
  min-height: 54px; border: 0; border-radius: 13px;
  background: linear-gradient(135deg, #246bff, #5aa8ff);
  color: white; font-weight: 750; box-shadow: 0 14px 30px rgba(36,107,255,.24);
}
.water-cart-page .btn-outline-primary[type="submit"]:hover { transform: translateY(-2px); filter: brightness(1.08); }
.water-cart-page .cart-qty-input,
.water-cart-page .cart-qty-btn { background: rgba(2,7,14,.65) !important; color:#fff !important; }

/* Premium custom pages */
.water-custom-page { padding-top: 54px; }
.water-custom-page__hero {
  padding: 54px 34px;
  border: 1px solid rgba(77, 139, 240, .17);
  border-radius: 26px;
  background: radial-gradient(circle at 8% 0%, rgba(42,111,255,.2), transparent 36%), #080d17;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
.water-custom-page__content { padding-top: 24px; }

@media (max-width: 991.98px) {
  .water-checkout-hero { align-items:flex-start; flex-direction:column; }
  .water-checkout-trust { justify-content:flex-start; }
  .water-cart-page .form { position: static; }
}
@media (max-width: 575.98px) {
  .water-checkout-hero, .water-custom-page__hero { padding: 23px 19px; border-radius: 19px; }
  .water-checkout-trust span { width:100%; justify-content:center; }
}
