/*!
 * x777 app login - design.css
 * Mobile-first Philippine casino portal styles
 * All custom classes use the w87b4- prefix.
 * Palette: #2E4057 #FFEFD5 #8B4513 #CED4DA #DEB887 #36454F
 * Deep tones (#2E4057 / #36454F) serve as backgrounds; light tones (#FFEFD5 / #CED4DA) as text.
 */

:root {
  --w87b4-primary: #2E4057;
  --w87b4-bg: #36454F;
  --w87b4-deep: #2E4057;
  --w87b4-cream: #FFEFD5;
  --w87b4-bronze: #8B4513;
  --w87b4-silver: #CED4DA;
  --w87b4-sand: #DEB887;
  --w87b4-accent: #DEB887;
  --w87b4-accent-strong: #8B4513;
  --w87b4-text: #FFEFD5;
  --w87b4-text-muted: #CED4DA;
  --w87b4-card: rgba(255, 239, 213, 0.06);
  --w87b4-border: rgba(255, 239, 213, 0.16);
  --w87b4-radius: 12px;
  --w87b4-radius-lg: 18px;
  --w87b4-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  --w87b4-header-h: 60px;
  --w87b4-bottom-h: 62px;
  --w87b4-gradient: linear-gradient(135deg, #2E4057 0%, #36454F 60%, #8B4513 130%);
  --w87b4-gold-gradient: linear-gradient(135deg, #DEB887 0%, #8B4513 100%);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Noto Sans", sans-serif;
  background: var(--w87b4-bg);
  color: var(--w87b4-text);
  line-height: 1.5;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--w87b4-sand);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--w87b4-cream);
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  color: var(--w87b4-cream);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.95rem; }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.45rem; }

p { margin: 0 0 1em; }

.w87b4-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.w87b4-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

main.w87b4-main {
  padding-top: calc(var(--w87b4-header-h) + 8px);
  padding-bottom: 0;
}

@media (max-width: 768px) {
  main.w87b4-main {
    padding-bottom: calc(var(--w87b4-bottom-h) + 14px);
  }
}

/* ===== Header ===== */
.w87b4-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--w87b4-header-h);
  background: linear-gradient(135deg, rgba(46, 64, 87, 0.98) 0%, rgba(54, 69, 79, 0.98) 100%);
  border-bottom: 1px solid var(--w87b4-border);
  z-index: 1000;
  box-shadow: var(--w87b4-shadow);
}

.w87b4-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  gap: 0.8rem;
}

.w87b4-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.w87b4-brand__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--w87b4-sand);
  flex-shrink: 0;
}

.w87b4-brand__name {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--w87b4-cream);
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w87b4-brand__name span {
  color: var(--w87b4-sand);
}

.w87b4-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.w87b4-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  line-height: 1.2;
  text-decoration: none;
}

.w87b4-btn:hover {
  transform: translateY(-1px);
}

.w87b4-btn--primary {
  background: var(--w87b4-gold-gradient);
  color: #fff;
  border-color: var(--w87b4-bronze);
}

.w87b4-btn--ghost {
  background: transparent;
  color: var(--w87b4-cream);
  border-color: var(--w87b4-sand);
}

.w87b4-btn--ghost:hover {
  background: rgba(222, 184, 135, 0.15);
}

.w87b4-btn--block {
  display: flex;
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 1.5rem;
}

.w87b4-btn--lg {
  font-size: 1.6rem;
  padding: 0.9rem 1.6rem;
}

.w87b4-text-link {
  font-weight: 700;
  color: var(--w87b4-sand);
  text-decoration: underline;
}

.w87b4-text-link--prominent {
  color: var(--w87b4-cream);
  background: var(--w87b4-gold-gradient);
  padding: 0.15em 0.5em;
  border-radius: 6px;
}

/* Header toggle button (hamburger) */
.w87b4-nav-toggle {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--w87b4-border);
  color: var(--w87b4-cream);
  font-size: 1.8rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.w87b4-nav-toggle--active {
  background: var(--w87b4-sand);
  color: var(--w87b4-deep);
}

/* ===== Navigation Menu ===== */
.w87b4-nav {
  position: fixed;
  top: var(--w87b4-header-h);
  right: 0;
  width: min(280px, 80vw);
  height: calc(100vh - var(--w87b4-header-h));
  background: linear-gradient(160deg, #2E4057 0%, #36454F 100%);
  border-left: 1px solid var(--w87b4-border);
  transform: translateX(110%);
  transition: transform 0.28s ease;
  z-index: 9999;
  padding: 1.5rem 1.2rem;
  overflow-y: auto;
  visibility: hidden;
}

.w87b4-nav--open {
  transform: translateX(0);
  visibility: visible;
}

.w87b4-nav__title {
  font-size: 1.45rem;
  color: var(--w87b4-sand);
  margin: 0 0 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.w87b4-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.w87b4-nav__list a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  color: var(--w87b4-cream);
  font-size: 1.45rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.w87b4-nav__list a:hover,
.w87b4-nav__list a:focus {
  background: rgba(222, 184, 135, 0.15);
  border-color: var(--w87b4-border);
}

.w87b4-nav__list i,
.w87b4-nav__list .material-icons-outlined {
  font-size: 1.8rem;
  color: var(--w87b4-sand);
}

.w87b4-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.w87b4-nav--open + .w87b4-nav-overlay {
  opacity: 1;
  visibility: visible;
}

/* ===== Carousel ===== */
.w87b4-carousel {
  position: relative;
  border-radius: var(--w87b4-radius-lg);
  overflow: hidden;
  box-shadow: var(--w87b4-shadow);
  margin: 1rem 0;
}

.w87b4-slides {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--w87b4-deep);
}

.w87b4-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.w87b4-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w87b4-slide--active {
  opacity: 1;
}

.w87b4-slide__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(46, 64, 87, 0.95));
  padding: 1.6rem 1.2rem 1rem;
  color: var(--w87b4-cream);
  font-weight: 700;
  font-size: 1.5rem;
}

.w87b4-slide__caption span {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: var(--w87b4-gold-gradient);
  color: #fff;
  border-radius: 999px;
  font-size: 1.2rem;
}

.w87b4-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.w87b4-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 239, 213, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.w87b4-carousel-dot--active {
  background: var(--w87b4-sand);
  transform: scale(1.25);
}

/* ===== Section common ===== */
.w87b4-section {
  padding: 1.6rem 0;
  margin-bottom: 0.5rem;
}

.w87b4-section__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.w87b4-section__head h2 {
  margin: 0;
  font-size: 1.85rem;
  flex: 1;
}

.w87b4-section__head i,
.w87b4-section__head .material-icons {
  color: var(--w87b4-sand);
  font-size: 2rem;
}

.w87b4-section__more {
  font-size: 1.25rem;
  color: var(--w87b4-sand);
  font-weight: 700;
  white-space: nowrap;
}

/* ===== Game grid ===== */
.w87b4-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (min-width: 540px) {
  .w87b4-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .w87b4-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
  }
}

.w87b4-card {
  background: var(--w87b4-card);
  border: 1px solid var(--w87b4-border);
  border-radius: var(--w87b4-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.4rem 0.6rem;
}

.w87b4-card:hover {
  transform: translateY(-3px);
  border-color: var(--w87b4-sand);
}

.w87b4-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  background: #1c2530;
}

.w87b4-card__name {
  margin-top: 0.45rem;
  font-size: 1.15rem;
  text-align: center;
  color: var(--w87b4-cream);
  font-weight: 600;
  line-height: 1.25;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Category tabs / highlights ===== */
.w87b4-category {
  margin-bottom: 1.5rem;
}

.w87b4-category__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--w87b4-sand);
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--w87b4-border);
  border-radius: 999px;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Info / FAQ / list ===== */
.w87b4-prose {
  font-size: 1.5rem;
  color: var(--w87b4-text-muted);
  line-height: 1.6;
}

.w87b4-prose strong {
  color: var(--w87b4-cream);
}

.w87b4-prose .w87b4-text-link {
  color: var(--w87b4-sand);
}

.w87b4-list {
  margin: 0;
  padding-left: 1.2rem;
}

.w87b4-list li {
  margin-bottom: 0.5rem;
  color: var(--w87b4-text-muted);
}

.w87b4-steps {
  counter-reset: w87b4-step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.w87b4-steps li {
  counter-increment: w87b4-step;
  position: relative;
  padding: 0.85rem 0.9rem 0.85rem 3rem;
  background: var(--w87b4-card);
  border: 1px solid var(--w87b4-border);
  border-radius: var(--w87b4-radius);
  color: var(--w87b4-text-muted);
}

.w87b4-steps li::before {
  content: counter(w87b4-step);
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--w87b4-gold-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}

.w87b4-faq {
  border: 1px solid var(--w87b4-border);
  border-radius: var(--w87b4-radius);
  background: var(--w87b4-card);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.w87b4-faq__summary {
  padding: 0.9rem 1rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--w87b4-cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.w87b4-faq__summary::-webkit-details-marker {
  display: none;
}

.w87b4-faq__summary i {
  color: var(--w87b4-sand);
  margin-left: auto;
}

.w87b4-faq[open] .w87b4-faq__summary {
  background: rgba(222, 184, 135, 0.1);
}

.w87b4-faq__body {
  padding: 0.9rem 1rem;
  color: var(--w87b4-text-muted);
  font-size: 1.4rem;
}

/* ===== Feature / highlight cards ===== */
.w87b4-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .w87b4-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.w87b4-feature {
  background: var(--w87b4-card);
  border: 1px solid var(--w87b4-border);
  border-radius: var(--w87b4-radius);
  padding: 1.1rem 0.9rem;
  text-align: center;
  color: var(--w87b4-text-muted);
}

.w87b4-feature i,
.w87b4-feature .material-icons {
  font-size: 2.4rem;
  color: var(--w87b4-sand);
  margin-bottom: 0.4rem;
}

.w87b4-feature h4 {
  margin: 0 0 0.3rem;
  color: var(--w87b4-cream);
  font-size: 1.35rem;
}

.w87b4-feature p {
  margin: 0;
  font-size: 1.25rem;
}

/* ===== RTP table ===== */
.w87b4-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--w87b4-card);
  border-radius: var(--w87b4-radius);
  overflow: hidden;
  border: 1px solid var(--w87b4-border);
}

.w87b4-table th,
.w87b4-table td {
  padding: 0.7rem 0.8rem;
  text-align: left;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--w87b4-border);
}

.w87b4-table th {
  background: rgba(46, 64, 87, 0.85);
  color: var(--w87b4-cream);
}

.w87b4-table td {
  color: var(--w87b4-text-muted);
}

.w87b4-table tr:last-child td {
  border-bottom: none;
}

.w87b4-bar {
  display: inline-block;
  height: 8px;
  border-radius: 4px;
  background: var(--w87b4-gold-gradient);
  vertical-align: middle;
}

/* ===== Testimonials ===== */
.w87b4-testimonials {
  display: grid;
  gap: 0.8rem;
}

.w87b4-testimonial {
  background: var(--w87b4-card);
  border: 1px solid var(--w87b4-border);
  border-left: 4px solid var(--w87b4-sand);
  border-radius: var(--w87b4-radius);
  padding: 1rem;
}

.w87b4-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.w87b4-testimonial__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--w87b4-gold-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
}

.w87b4-testimonial__name {
  color: var(--w87b4-cream);
  font-weight: 700;
  font-size: 1.3rem;
}

.w87b4-testimonial__text {
  margin: 0;
  color: var(--w87b4-text-muted);
  font-size: 1.35rem;
}

/* ===== Payment / app ===== */
.w87b4-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.w87b4-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: var(--w87b4-card);
  border: 1px solid var(--w87b4-border);
  border-radius: 999px;
  font-size: 1.2rem;
  color: var(--w87b4-cream);
}

.w87b4-cta {
  background: linear-gradient(135deg, rgba(46, 64, 87, 0.95), rgba(139, 69, 19, 0.85));
  border: 1px solid var(--w87b4-border);
  border-radius: var(--w87b4-radius-lg);
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--w87b4-shadow);
}

.w87b4-cta h3 {
  color: var(--w87b4-cream);
  margin-bottom: 0.5rem;
}

.w87b4-cta p {
  color: var(--w87b4-text-muted);
  margin-bottom: 1rem;
}

/* ===== Footer ===== */
.w87b4-footer {
  background: linear-gradient(180deg, #2E4057 0%, #1d291f 100%);
  border-top: 1px solid var(--w87b4-border);
  padding: 1.8rem 0 1rem;
  margin-top: 1.5rem;
  color: var(--w87b4-text-muted);
}

.w87b4-footer__brand {
  font-size: 1.4rem;
  color: var(--w87b4-text-muted);
  margin-bottom: 1.2rem;
}

.w87b4-footer__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0;
}

.w87b4-footer__buttons .w87b4-btn {
  font-size: 1.25rem;
  padding: 0.5rem 0.9rem;
}

.w87b4-footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1rem;
  margin: 1rem 0;
}

@media (min-width: 540px) {
  .w87b4-footer__links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.w87b4-footer__links a {
  font-size: 1.25rem;
  color: var(--w87b4-text-muted);
}

.w87b4-footer__links a:hover {
  color: var(--w87b4-cream);
}

.w87b4-footer__bottom {
  border-top: 1px solid var(--w87b4-border);
  padding-top: 0.8rem;
  font-size: 1.2rem;
  color: var(--w87b4-text-muted);
  text-align: center;
}

/* ===== Bottom mobile navigation ===== */
.w87b4-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--w87b4-bottom-h);
  background: linear-gradient(180deg, rgba(46, 64, 87, 0.98), rgba(54, 69, 79, 0.98));
  border-top: 1px solid var(--w87b4-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.w87b4-bottom-nav__btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: transparent;
  border: none;
  color: var(--w87b4-silver);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 2px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.w87b4-bottom-nav__btn i,
.w87b4-bottom-nav__btn .material-icons,
.w87b4-bottom-nav__btn ion-icon {
  font-size: 2.2rem;
}

.w87b4-bottom-nav__btn:hover,
.w87b4-bottom-nav__btn:focus {
  color: var(--w87b4-cream);
  transform: translateY(-1px);
}

.w87b4-bottom-nav__btn--active {
  color: var(--w87b4-sand);
}

.w87b4-bottom-nav__btn--promo {
  color: #FFEFD5;
}

.w87b4-bottom-nav__btn--promo i,
.w87b4-bottom-nav__btn--promo ion-icon {
  color: var(--w87b4-sand);
}

.w87b4-bottom-nav__label {
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

@media (min-width: 769px) {
  .w87b4-bottom-nav {
    display: none;
  }
}

/* ===== Reveal animation ===== */
.w87b4-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.w87b4-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Utility ===== */
.w87b4-hidden-mobile {
  display: none;
}

@media (min-width: 769px) {
  .w87b4-hidden-mobile {
    display: revert;
  }
  .w87b4-hidden-desktop {
    display: none;
  }
}

.w87b4-banner {
  background: var(--w87b4-gold-gradient);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.w87b4-hero {
  background: var(--w87b4-gradient);
  border-radius: var(--w87b4-radius-lg);
  padding: 1.4rem 1.2rem;
  margin: 1rem 0;
  border: 1px solid var(--w87b4-border);
  box-shadow: var(--w87b4-shadow);
}

.w87b4-hero h1 {
  color: var(--w87b4-cream);
  margin-bottom: 0.4rem;
}

.w87b4-hero p {
  color: var(--w87b4-text-muted);
  margin: 0;
}

.w87b4-winners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .w87b4-winners {
    grid-template-columns: repeat(4, 1fr);
  }
}

.w87b4-winner {
  background: var(--w87b4-card);
  border: 1px solid var(--w87b4-border);
  border-radius: var(--w87b4-radius);
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.w87b4-winner__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--w87b4-gold-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.w87b4-winner__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.w87b4-winner__name {
  font-size: 1.15rem;
  color: var(--w87b4-cream);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w87b4-winner__prize {
  font-size: 1.15rem;
  color: var(--w87b4-sand);
  font-weight: 700;
}

/* Achievements / tricks blocks */
.w87b4-tricks {
  display: grid;
  gap: 0.8rem;
}

.w87b4-trick {
  display: flex;
  gap: 0.8rem;
  padding: 0.9rem;
  border: 1px solid var(--w87b4-border);
  background: var(--w87b4-card);
  border-radius: var(--w87b4-radius);
}

.w87b4-trick__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--w87b4-gold-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.w87b4-trick__title {
  color: var(--w87b4-cream);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 0.2rem;
}

.w87b4-trick__desc {
  margin: 0;
  color: var(--w87b4-text-muted);
  font-size: 1.3rem;
}
