/* League Estates — Watch / Media hub + Water easter egg */

.le-watch {
  --accent: #d4af37;
  --accent-soft: #e8d48b;
  --muted: #9aadc0;
  max-width: 1140px;
  margin: 0 auto 3rem;
  padding: 0 1.1rem 2rem;
  color: #eef3f8;
  font-size: 1.05rem;
  line-height: 1.65;
  position: relative;
}
.le-watch *,
.le-watch *::before,
.le-watch *::after {
  box-sizing: border-box;
}
.le-watch > * {
  position: relative;
  z-index: 1;
}
.le-watch::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.5rem;
  transform: translateX(-50%);
  width: min(100%, 960px);
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.16), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.le-watch .le-ch-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 0 0 2rem;
  padding: 2.25rem 1.75rem 1.9rem;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 60% at 90% -5%, rgba(212, 175, 55, 0.32), transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(40, 100, 160, 0.28), transparent 50%),
    linear-gradient(155deg, #061525 0%, #0c2a48 48%, #081c32 100%);
  border: 1px solid rgba(212, 175, 55, 0.42);
  box-shadow: inset 0 3px 0 0 #d4af37, 0 24px 56px rgba(0, 0, 0, 0.45);
}
.le-watch .le-ch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.4;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 25%, transparent 100%);
}
.le-watch .le-ch-hero-inner {
  position: relative;
  z-index: 1;
}
.le-watch .le-ch-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.7rem;
}
.le-watch .le-ch-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.95);
}
.le-watch .le-ch-hero h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #fff 30%, #e8d48b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.le-watch .le-ch-hero p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 44rem;
  font-size: 1.06rem;
}
.le-watch .le-ch-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0 0 1.25rem;
}
.le-watch .le-ch-stat {
  display: flex;
  flex-direction: column;
  min-width: 5.2rem;
}
.le-watch .le-ch-stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-soft);
  letter-spacing: -0.02em;
}
.le-watch .le-ch-stat span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
}
.le-watch .le-ch-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.le-watch .le-ch-pills a {
  display: inline-block;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.88rem;
  font-weight: 700;
}
.le-watch .le-ch-pills a:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.le-watch .le-ch-section {
  margin: 0 0 2rem;
}
.le-watch .le-ch-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}
.le-watch .le-ch-section-head h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #fff;
  font-weight: 800;
}
.le-watch .le-ch-section-head span {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Card grid */
.le-watch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .le-watch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .le-watch-grid {
    grid-template-columns: 1fr;
  }
}

.le-watch-card {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit !important;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 33, 56, 0.95), rgba(7, 18, 32, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  min-height: 100%;
}
.le-watch-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.le-watch-card-top {
  height: 8px;
  background: linear-gradient(90deg, #d4af37, #0c2a48);
}
.le-watch-card.tone-teal .le-watch-card-top {
  background: linear-gradient(90deg, #2db496, #0a3a48);
}
.le-watch-card.tone-cyan .le-watch-card-top {
  background: linear-gradient(90deg, #38bdf8, #152a40);
}
.le-watch-card.tone-rose .le-watch-card-top {
  background: linear-gradient(90deg, #e8a88c, #2a1818);
}
.le-watch-card.tone-jade .le-watch-card-top {
  background: linear-gradient(90deg, #2db496, #0a2744);
}
.le-watch-card.tone-amber .le-watch-card-top {
  background: linear-gradient(90deg, #f5a623, #1a1c20);
}
.le-watch-card.tone-plum .le-watch-card-top {
  background: linear-gradient(90deg, #c77dff, #2a1540);
}
.le-watch-card.tone-space .le-watch-card-top {
  background: linear-gradient(90deg, #7eb6ff, #0c1530);
}
.le-watch-card.tone-mint .le-watch-card-top {
  background: linear-gradient(90deg, #6ee7b7, #0c2a24);
}
.le-watch-card.tone-pink .le-watch-card-top {
  background: linear-gradient(90deg, #f0abfc, #2a1838);
}

.le-watch-card-body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.le-watch-card-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.4rem;
  opacity: 0.9;
}
.le-watch-card h4 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.le-watch-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: rgba(238, 243, 248, 0.78);
  line-height: 1.45;
  flex: 1;
}
.le-watch-card-go {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent-soft) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.le-watch-card:hover .le-watch-card-go {
  color: #fff !important;
}

.le-watch .le-ch-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.le-watch .le-ch-footer a {
  color: #eef3f8 !important;
  font-weight: 700;
  text-decoration: none !important;
  padding: 0.52rem 1rem;
  border-radius: 12px;
  background: rgba(10, 28, 48, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.24);
}
.le-watch .le-ch-footer a:hover {
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.16);
  color: #fff !important;
}

/* Page chrome */
body.page-id-1465 {
  background: #050d16 !important;
}
body.page-id-1465 #page,
body.page-id-1465 .site,
body.page-id-1465 #content,
body.page-id-1465 .site-content,
body.page-id-1465 .entry-content,
body.page-id-1465 main {
  background: transparent !important;
}
body.page-id-1465 .entry-content {
  padding-top: 0.5rem;
  color: #eef3f8;
}
body.page-id-1465 .entry-header .entry-title {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}
body.page-id-1465 .entry-cover {
  min-height: 34vh !important;
  max-height: 400px;
}
body.page-id-1465 .entry-cover-image {
  min-height: 34vh !important;
  background-size: cover !important;
  background-position: center 30% !important;
  filter: brightness(0.55) saturate(1.15) contrast(1.05);
}
body.page-id-1465 .entry-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 22, 0.15) 0%, rgba(5, 13, 22, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
}
body.page-id-1465 .background-video-buttons-wrapper {
  display: none !important;
}
body.page-id-1465 .site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  background: #040a12 !important;
  color: #9aadc0;
}
body.page-id-1465 .site-footer a {
  color: #d4af37 !important;
}

/* ========== Water easter egg ========== */
a.le-water-egg {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9998;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none !important;
  background: rgba(6, 36, 44, 0.55);
  border: 1px solid rgba(34, 211, 238, 0.22);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  opacity: 0.28;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(6px);
}
a.le-water-egg:hover,
a.le-water-egg:focus {
  opacity: 1;
  transform: translateY(-2px) scale(1.06);
  background: rgba(6, 48, 56, 0.92);
  border-color: rgba(34, 211, 238, 0.55);
  outline: none;
}
a.le-water-egg:focus-visible {
  opacity: 1;
  box-shadow: 0 0 0 2px #22d3ee, 0 6px 18px rgba(0, 0, 0, 0.25);
}
a.le-water-egg span {
  pointer-events: none;
}
@media (max-width: 640px) {
  a.le-water-egg {
    right: 10px;
    bottom: 10px;
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    opacity: 0.22;
  }
}

@supports not (background-clip: text) {
  .le-watch .le-ch-hero h2 {
    color: #fff;
    -webkit-text-fill-color: #fff;
  }
}
