/* ==========================================================================
   site.css — public competition page (GLEAM.md sections 1, 2, 2.1-2.6).

   The page is one white widget on a flat background: 4px radii, hairline
   borders, 13-14px type, one green CTA. No glass, no gradients, no glow,
   no motion beyond the accordion. See GLEAM.md section 0 for the ban list.

   Every colour, radius, font and shadow comes from the tokens in tokens.css
   so the theme editor repaints the page live. The ONE exception is the
   [data-brand] icon-tile map in section 3, which is what makes a YouTube tile
   red and an X tile black.

   Contents
     1. Local values, page shell, operator logo
     2. Widget shell: banner, head, alert
     3. Method rows + the brand colour map
     4. Expanded panel: instructions, fields, copy combo, CTA
     5. Entries total, share row, widget footer
     6. Ended / winner block
     7. Below-widget sections
     8. Page footer
     9. Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Local values, page shell, operator logo
   -------------------------------------------------------------------------- */

/* Three intermediate greys the design needs (#555 body, #9aa0a8 meta,
   #b6bac1 chevrons) derived from the tokens rather than hardcoded, so a
   re-themed page keeps its contrast relationships. */
.gw-page {
  --gws-body: color-mix(in srgb, var(--gw-text) 76%, var(--gw-muted));
  --gws-meta: color-mix(in srgb, var(--gw-muted) 84%, var(--gw-surface));
  --gws-faint: color-mix(in srgb, var(--gw-muted) 62%, var(--gw-surface));
  --gws-overlay: 0;

  position: relative;
  min-height: 100vh;
  background-color: var(--gw-bg);
  background-position: center;
  background-size: cover;
  color: var(--gw-text);
  font-family: var(--gw-font);
  font-size: 14px;
  line-height: 1.45;
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .gw-page {
    --gws-body: var(--gw-text);
    --gws-meta: var(--gw-muted);
    --gws-faint: var(--gw-muted);
  }
}

/* theme.pageOverlay darkens a background image without touching the tokens. */
.gw-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--gws-overlay));
  pointer-events: none;
}

.gw-page > * {
  position: relative;
}

/* A ring, not a glow — GLEAM.md section 3. */
.gw-page :focus-visible {
  outline: 2px solid var(--gw-accent);
  outline-offset: 1px;
}

.gw-page__header {
  padding: 24px 12px;
  text-align: center;
}

.gw-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gws-body);
  font-size: 15px;
  font-weight: 600;
}

.gw-brand__img {
  max-height: 34px;
  width: auto;
}

.gw-wrap {
  width: 100%;
  max-width: var(--gw-maxw);
  margin: 0 auto;
  padding: 30px 12px;
}

/* --------------------------------------------------------------------------
   2. Widget shell
   -------------------------------------------------------------------------- */

.gw-w {
  border: 1px solid var(--gw-border-strong);
  border-radius: var(--gw-radius);
  background: var(--gw-surface);
  box-shadow: var(--gw-shadow);
}

.gw-w__banner {
  border-radius: var(--gw-radius) var(--gw-radius) 0 0;
  overflow: hidden;
}

.gw-w__bannerimg {
  width: 100%;
  height: auto;
}

.gw-w__head {
  padding: 20px 20px 16px;
  text-align: center;
}

.gw-w__title {
  margin: 0 0 8px;
  font-family: var(--gw-font-head);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: normal;
  color: var(--gw-text);
  overflow-wrap: break-word;
}

.gw-w__desc {
  margin: 0;
  font-size: 14px;
  color: var(--gw-muted);
}

.gw-w__ref {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--gws-body);
}

.gw-w__ends {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--gw-muted);
}

.gw-w__ends.is-urgent,
.gw-w__ends[data-urgent='true'] {
  color: var(--gw-warning);
}

.gw-w__alert {
  padding: 10px 15px;
  border-top: 1px solid var(--gw-border);
  background: var(--gw-bg-2);
  color: var(--gws-body);
  font-size: 13px;
  text-align: center;
}

.gw-w__empty {
  padding: 18px 15px;
  color: var(--gw-muted);
  font-size: 13px;
  text-align: center;
}

/* The empty note only shows while the list is literally empty. */
.gw-methods:not(:empty) + .gw-w__empty {
  display: none;
}

/* --------------------------------------------------------------------------
   3. Method rows
   -------------------------------------------------------------------------- */

/* The hairline under the widget head. Rows carry their own top border, so the
   first row drops it and this one keeps the head separated. */
.gw-w__methods {
  border-top: 1px solid var(--gw-border);
}

.gw-methods {
  margin: 0;
  list-style: none;
}

.gw-method {
  border-top: 1px solid var(--gw-border);
  background: var(--gw-surface);
}

.gw-method:first-child {
  border-top: 0;
}

.gw-method__head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 10px 15px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.gw-method__head:hover {
  background: var(--gw-surface-2);
}

.gw-method__head:focus-visible {
  outline-offset: -2px;
}

.gw-method__icon {
  display: flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--gw-radius-sm);
  background: var(--gws-brand, var(--gw-muted));
  color: #ffffff;
}

.gw-method__icon svg {
  width: 16px;
  height: 16px;
}

.gw-method__body {
  flex: 1 1 auto;
  min-width: 0;
}

.gw-method__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gw-text);
  overflow-wrap: anywhere;
}

.gw-method__sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gw-muted);
  overflow-wrap: anywhere;
}

/* The asterisk hugs the entries badge rather than taking the row gap. */
.gw-method__req {
  flex: 0 0 auto;
  margin-right: -8px;
  color: var(--gw-danger);
  font-size: 12px;
  line-height: 1;
}

.gw-method__badge {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--gw-muted);
  white-space: nowrap;
}

.gw-method__chev,
.gw-method__lock,
.gw-method__check,
.gw-method__spin {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.gw-method__chev {
  color: var(--gws-faint);
  transition: transform 0.18s ease;
}

.gw-method__chev svg,
.gw-method__lock svg {
  width: 14px;
  height: 14px;
}

.gw-method__lock {
  display: none;
  color: var(--gws-faint);
}

.gw-method__check {
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gw-success);
  color: var(--gw-primary-ink);
}

.gw-method__check svg {
  width: 12px;
  height: 12px;
}

.gw-method__spin {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  color: var(--gws-faint);
  animation: gw-spin 0.7s linear infinite;
}

/* Row states ------------------------------------------------------------- */

.gw-method.is-open .gw-method__chev,
.gw-method__head[aria-expanded='true'] .gw-method__chev {
  transform: rotate(180deg);
}

.gw-method.is-done .gw-method__label {
  color: var(--gw-muted);
}

.gw-method.is-done .gw-method__icon {
  opacity: 0.45;
}

.gw-method.is-done .gw-method__badge {
  display: none;
}

.gw-method.is-done .gw-method__check {
  display: flex;
}

/* Gated rows stay at full strength: the reference product does not grey out or
   padlock the methods a visitor has not unlocked yet — clicking one routes them
   to the required method instead. */
.gw-method.is-locked .gw-method__lock {
  display: none;
}

.gw-method.is-pending .gw-method__chev {
  display: none;
}

.gw-method.is-pending .gw-method__spin {
  display: flex;
}

/* One-shot pulse when a method completes. */
.gw-method.is-flash {
  animation: gws-flash 0.6s ease;
}

@keyframes gws-flash {
  from { background-color: var(--gw-success); }
  to { background-color: var(--gw-surface); }
}

/* Brand colour map — the only hardcoded colours in this file (GLEAM.md 2.2).
   --gws-brand inherits, so data-brand may sit on the row or on the tile. */
[data-brand='x-twitter'] { --gws-brand: #000000; }
[data-brand='tiktok'] { --gws-brand: #010101; }
[data-brand='youtube'] { --gws-brand: #ff0000; }
[data-brand='instagram'] { --gws-brand: #c13584; }
[data-brand='discord'] { --gws-brand: #5865f2; }
[data-brand='twitch'] { --gws-brand: #9146ff; }
[data-brand='facebook'] { --gws-brand: #1877f2; }
[data-brand='reddit'] { --gws-brand: #ff4500; }
[data-brand='telegram'] { --gws-brand: #229ed9; }
[data-brand='linkedin'] { --gws-brand: #0a66c2; }
[data-brand='pinterest'] { --gws-brand: #e60023; }
[data-brand='spotify'] { --gws-brand: #1db954; }
[data-brand='whatsapp'] { --gws-brand: #25d366; }
[data-brand='mail'],
[data-brand='email'] { --gws-brand: #7a7f87; }
[data-brand='globe'],
[data-brand='visit'] { --gws-brand: #5a8fb5; }
[data-brand='users'],
[data-brand='referral'] { --gws-brand: #5aa845; }
[data-brand='calendar'],
[data-brand='daily'] { --gws-brand: #e8a33d; }
[data-brand='chat'],
[data-brand='question'] { --gws-brand: #8a6fb5; }
[data-brand='share'] { --gws-brand: #4a90d9; }

/* --------------------------------------------------------------------------
   4. Expanded panel
   -------------------------------------------------------------------------- */

.gw-method__panel {
  max-height: 0;
  padding: 0 15px;
  overflow: hidden;
  border-top: 0 solid var(--gw-border);
  background: var(--gw-bg-2);
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: max-height 0.18s ease, opacity 0.18s ease, padding 0.18s ease;
}

.gw-method.is-open > .gw-method__panel,
.gw-method__head[aria-expanded='true'] + .gw-method__panel {
  max-height: 720px;
  padding: 16px 15px 18px;
  border-top-width: 1px;
  opacity: 1;
  visibility: visible;
}

.gw-method__instructions {
  max-width: 420px;
  margin: 0 auto;
  color: var(--gws-body);
  font-size: 13px;
}

.gw-method__note {
  margin: 10px 0 0;
  color: var(--gw-muted);
  font-size: 13px;
}

.gw-method__error,
.gw-field__err {
  margin: 6px 0 0;
  color: var(--gw-danger);
  font-size: 12px;
}

/* Fields ----------------------------------------------------------------- */

.gw-field {
  max-width: 320px;
  margin: 12px auto 0;
  text-align: left;
}

.gw-label {
  display: block;
  margin-bottom: 4px;
  color: var(--gw-muted);
  font-size: 12px;
}

.gw-input,
.gw-method__panel .input,
.gw-copy__input {
  display: block;
  width: 100%;
  height: 34px;
  min-height: 34px;
  padding: 0 9px;
  border: 1px solid var(--gw-border-strong);
  border-radius: var(--gw-radius-sm);
  background: var(--gw-surface);
  color: var(--gw-text);
  font-family: inherit;
  font-size: 13px;
}

.gw-input::placeholder {
  color: var(--gws-faint);
}

.gw-input:focus,
.gw-method__panel .input:focus {
  border-color: var(--gw-accent);
  outline: none;
}

.gw-input[aria-invalid='true'] {
  border-color: var(--gw-danger);
}

.gw-options {
  max-width: 320px;
  margin: 12px auto 0;
  text-align: left;
}

.gw-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  font-size: 13px;
  cursor: pointer;
}

.gw-option input {
  margin: 0;
  accent-color: var(--gw-primary);
}

/* Referral link: input and button read as one control. */
.gw-copy {
  display: flex;
  max-width: 380px;
  margin: 12px auto 0;
}

.gw-copy__input,
.gw-copy > #gw-reflink {
  flex: 1 1 auto;
  min-width: 0;
  border-right: 0;
  border-radius: var(--gw-radius-sm) 0 0 var(--gw-radius-sm);
  color: var(--gw-muted);
}

.gw-copy__btn {
  flex: 0 0 auto;
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--gw-primary);
  border-radius: 0 var(--gw-radius-sm) var(--gw-radius-sm) 0;
  background: var(--gw-primary);
  color: var(--gw-primary-ink);
  font-size: 13px;
  font-weight: 600;
}

.gw-copy__btn:hover {
  filter: brightness(0.92);
}

.gw-copy__btn:active {
  filter: brightness(0.86);
}

/* The one green button (GLEAM.md 2.3): flat, no shadow, no transform. */
.gw-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 120px;
  margin-top: 14px;
  padding: 8px 18px;
  border: 0;
  border-radius: var(--gw-radius-sm);
  background: var(--gw-primary);
  color: var(--gw-primary-ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
}

.gw-btn-cta:hover {
  filter: brightness(0.92);
}

.gw-btn-cta:active {
  filter: brightness(0.86);
}

.gw-btn-cta:disabled,
.gw-btn-cta[aria-disabled='true'] {
  opacity: 0.6;
  cursor: not-allowed;
  filter: none;
}

/* Guard: the shared .btn primitive in tokens.css is 42px with a shadow and a
   hover lift. Inside the widget it has to read as the flat CTA instead. */
.gw-w .btn {
  min-height: 0;
  border: 0;
  border-radius: var(--gw-radius-sm);
  font-size: 13px;
  box-shadow: none;
}

.gw-w .btn:hover,
.gw-w .btn:active {
  transform: none;
  box-shadow: none;
}

/* Small brand squares inside the referral panel. */
.gw-share-mini {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.gw-share-mini__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: var(--gw-radius-sm);
  background: var(--gws-brand, var(--gw-muted));
  color: #ffffff;
  cursor: pointer;
}

.gw-share-mini__btn svg {
  width: 12px;
  height: 12px;
}

/* --------------------------------------------------------------------------
   5. Entries total, share row, widget footer
   -------------------------------------------------------------------------- */

.gw-w__total {
  padding: 12px 15px;
  border-top: 1px solid var(--gw-border);
  text-align: center;
}

.gw-w__totaltext {
  margin: 0;
  font-size: 16px;
  color: var(--gw-text);
}

.gw-w__totaltext b,
.gw-w__totaltext strong,
.gw-w__num {
  font-weight: 600;
  color: var(--gw-accent);
}

/* Before entering. */
.gw-w__total.is-empty .gw-w__totaltext,
.gw-w__totaltext.is-empty {
  font-size: 14px;
  color: var(--gw-muted);
}

.gw-w__share {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 15px;
  border-top: 1px solid var(--gw-border);
}

.gw-share {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: var(--gw-radius-sm);
  background: var(--gws-brand, var(--gw-muted));
  color: #ffffff;
  cursor: pointer;
}

.gw-share:hover {
  filter: brightness(0.92);
}

.gw-w__foot {
  padding: 9px 15px;
  border-top: 1px solid var(--gw-border);
  border-radius: 0 0 var(--gw-radius) var(--gw-radius);
  background: var(--gw-surface-2);
  font-size: 12px;
  color: var(--gws-meta);
}

.gw-w__footrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gw-w__terms {
  color: var(--gw-accent);
  font-size: 12px;
  cursor: pointer;
}

.gw-w__terms:hover {
  text-decoration: underline;
}

.gw-w__count {
  white-space: nowrap;
}

.gw-w__powered {
  margin: 4px 0 0;
  color: var(--gws-faint);
  font-size: 11px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   6. Ended / winner block
   -------------------------------------------------------------------------- */

.gw-w__ended {
  padding: 28px 20px;
  border-top: 1px solid var(--gw-border);
  text-align: center;
}

.gw-w__trophy {
  color: var(--gw-warning);
}

.gw-w__endedtitle {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--gw-text);
}

.gw-winner {
  margin-top: 14px;
}

.gw-winner__name {
  margin: 0;
  font-size: 16px;
  color: var(--gw-text);
}

.gw-winner__email {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--gw-muted);
}

.gw-winner__meta,
.gw-winner__runners {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--gws-meta);
}

.gw-w__endednote {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--gw-muted);
}

/* --------------------------------------------------------------------------
   7. Below-widget sections
   -------------------------------------------------------------------------- */

.gw-extras {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: var(--gw-maxw);
  margin: 0 auto;
  padding: 0 12px;
}

.gw-box {
  padding: 15px;
  border: 1px solid var(--gw-border);
  border-radius: var(--gw-radius);
  background: var(--gw-surface);
  font-size: 13px;
}

.gw-box__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--gw-border);
}

.gw-box__title {
  font-family: var(--gw-font-head);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: normal;
  color: var(--gw-text);
}

.gw-box__meta {
  color: var(--gw-muted);
  font-size: 12px;
  white-space: nowrap;
}

.gw-box__empty {
  color: var(--gw-muted);
  font-size: 13px;
}

.gw-feed:not(:empty) + .gw-box__empty,
.gw-faq:not(:empty) + .gw-box__empty {
  display: none;
}

.gw-lb:has(tbody:not(:empty)) + .gw-box__empty {
  display: none;
}

/* Activity ---------------------------------------------------------------- */

.gw-feed {
  margin: 0;
  list-style: none;
}

.gw-feed__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-top: 1px solid var(--gw-border);
}

.gw-feed__row:first-child {
  border-top: 0;
}

.gw-feed__avatar {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.gw-feed__text {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}

.gw-feed__time {
  flex: 0 0 auto;
  color: var(--gws-meta);
  font-size: 12px;
  white-space: nowrap;
}

/* Leaderboard ------------------------------------------------------------- */

.gw-lb {
  width: 100%;
  font-size: 13px;
}

.gw-lb th {
  padding: 0 0 6px;
  color: var(--gw-muted);
  font-size: 12px;
  font-weight: 400;
  text-align: left;
}

.gw-lb td {
  padding: 5px 0;
  border-top: 1px solid var(--gw-border);
  overflow-wrap: anywhere;
}

.gw-lb__rank,
.gw-lb tbody td:first-child {
  width: 28px;
  color: var(--gw-muted);
}

.gw-lb__num,
.gw-lb tbody td:last-child {
  width: 64px;
  text-align: right;
  white-space: nowrap;
}

.gw-lb tr.is-me td {
  color: var(--gw-accent);
}

/* Prize, rules, trust badges ---------------------------------------------- */

.gw-prose p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--gws-body);
}

.gw-prose p:last-child {
  margin-bottom: 0;
}

.gw-prose--rules {
  max-height: 320px;
  overflow-y: auto;
  white-space: pre-line;
  font-size: 12px;
  color: var(--gw-muted);
}

.gw-items {
  margin: 10px 0 0;
  list-style: none;
}

.gw-items li {
  position: relative;
  padding: 3px 0 3px 14px;
  color: var(--gws-body);
}

.gw-items li::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gw-muted);
}

.gw-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 12px 0 0;
  list-style: none;
  color: var(--gw-muted);
  font-size: 12px;
}

.gw-trust li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.gw-trust svg {
  width: 13px;
  height: 13px;
}

/* FAQ --------------------------------------------------------------------- */

.gw-faq__item {
  border-top: 1px solid var(--gw-border);
}

.gw-faq__item:first-child {
  border-top: 0;
}

.gw-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 9px 0;
  color: var(--gw-text);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.gw-faq__q svg {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  color: var(--gws-faint);
  transition: transform 0.18s ease;
}

.gw-faq__item.is-open .gw-faq__q svg,
.gw-faq__q[aria-expanded='true'] svg {
  transform: rotate(180deg);
}

.gw-faq__a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  color: var(--gws-body);
  font-size: 13px;
  transition: max-height 0.18s ease, opacity 0.18s ease, padding 0.18s ease;
}

.gw-faq__item.is-open .gw-faq__a,
.gw-faq__q[aria-expanded='true'] + .gw-faq__a {
  max-height: 400px;
  padding-bottom: 10px;
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   8. Page footer
   -------------------------------------------------------------------------- */

.gw-foot {
  max-width: var(--gw-maxw);
  margin: 0 auto;
  padding: 24px 12px 30px;
  color: var(--gws-meta);
  font-size: 12px;
  text-align: center;
}

.gw-foot__line {
  margin: 0;
}

.gw-foot__sep {
  padding: 0 4px;
  color: var(--gws-faint);
}

.gw-foot__link {
  color: var(--gw-accent);
  font-size: 12px;
  cursor: pointer;
}

.gw-foot__link:hover {
  text-decoration: underline;
}

.gw-noscript {
  padding: 12px 15px;
  background: var(--gw-warning);
  color: #ffffff;
  font-family: var(--gw-font);
  font-size: 13px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   9. Responsive
   The widget goes edge to edge below 520px: no page padding, no side border,
   no radius. Rows keep their 52px height and nothing overflows at 360px.
   -------------------------------------------------------------------------- */

@media (max-width: 520px) {
  .gw-page__header {
    padding: 16px 12px;
  }

  .gw-wrap {
    max-width: none;
    padding: 0;
  }

  .gw-w {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .gw-w__banner,
  .gw-w__foot {
    border-radius: 0;
  }

  .gw-w__head {
    padding: 18px 14px 14px;
  }

  .gw-w__title {
    font-size: 20px;
  }

  .gw-method__head {
    gap: 10px;
    padding: 10px 12px;
  }

  .gw-method__panel {
    padding: 0 12px;
  }

  .gw-method.is-open > .gw-method__panel,
  .gw-method__head[aria-expanded='true'] + .gw-method__panel {
    padding: 14px 12px 16px;
  }

  .gw-w__total,
  .gw-w__share,
  .gw-w__alert,
  .gw-w__foot {
    padding-right: 12px;
    padding-left: 12px;
  }

  .gw-w__ended {
    padding: 24px 14px;
  }

  .gw-extras {
    max-width: none;
    margin-top: 12px;
    padding: 0;
  }

  .gw-box {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .gw-foot {
    padding: 20px 14px 26px;
  }
}

@media (max-width: 380px) {
  .gw-method__head {
    padding: 10px;
  }

  .gw-method__sub {
    display: none;
  }

  .gw-w__foot,
  .gw-w__footrow {
    gap: 6px;
  }
}
