/*
Theme Name: WS Riftbound Theme
Theme URI: https://example.com/ws-riftbound
Author: You
Author URI: https://example.com
Description: Dark, high-contrast dashboard-inspired theme with a cinematic video hero, tuned for TCG stats and event pages.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ws-riftbound
*/

/* ===========================
   Design Tokens / Root
   =========================== */

:root {
  --ws-app-bg: #191736;
  --ws-app-bg-secondary: #0a0411;
  --ws-surface: #241b43;
  --ws-surface-elevated: #2f2252;
  --ws-surface-glass: rgba(255, 255, 255, 0.06);
  --ws-border-subtle: rgba(255, 255, 255, 0.10);

  --ws-text-primary: rgba(255, 255, 255, 0.92);
  --ws-text-secondary: rgba(255, 255, 255, 0.72);
  --ws-text-muted: rgba(255, 255, 255, 0.55);

  --ws-accent-primary: #9e36da;
  --ws-accent-primary-hover: #832eb6;
  --ws-accent-primary-pressed: #64119b;
  --ws-accent-soft: rgba(158, 54, 218, 0.18);

  --ws-success: #27d3a2;
  --ws-warning: #c57237;
  --ws-danger: #ff4d6d;

  --ws-hero-gradient: linear-gradient(90deg, #64119b 0%, #9e36da 55%, #bd91ce 100%);
  --ws-card-sheen: linear-gradient(
    135deg,
    rgba(158, 54, 218, 0.22) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(0, 0, 0, 0.0) 100%
  );
  --ws-sidebar-active: linear-gradient(
    90deg,
    rgba(158, 54, 218, 0.35) 0%,
    rgba(158, 54, 218, 0.10) 60%,
    rgba(0, 0, 0, 0) 100%
  );

  --ws-radius-sm: 10px;
  --ws-radius-md: 14px;
  --ws-radius-lg: 18px;
  --ws-radius-xl: 22px;
  --ws-radius-pill: 999px;

  --ws-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  --ws-shadow-pop: 0 16px 46px rgba(0, 0, 0, 0.42);

  --ws-blur-glass: 12px;
  --ws-spacing: 8px;
}

/* ===========================
   Global
   =========================== */

html {
  overflow-x: hidden;
}

body.ws-body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: var(--ws-text-primary);
  background-color: var(--ws-app-bg);
  background-image:
    radial-gradient(900px 420px at 25% 15%, rgba(158, 54, 218, 0.35) 0%, rgba(10, 4, 17, 0) 60%),
    radial-gradient(800px 380px at 80% 30%, rgba(189, 145, 206, 0.18) 0%, rgba(10, 4, 17, 0) 60%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.ws-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  color: var(--ws-accent-primary);
}

a:hover {
  color: var(--ws-accent-primary-hover);
}

/* ===========================
   Header / Navigation
   =========================== */

.ws-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(10, 4, 17, 0.92), rgba(10, 4, 17, 0.25));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ws-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ws-logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--ws-hero-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--ws-shadow-card);
}

.ws-logo__text {
  font-weight: 600;
  color: var(--ws-text-primary);
}

.ws-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-nav__link {
  text-decoration: none;
  font-size: 14px;
  color: var(--ws-text-secondary);
  padding: 8px 14px;
  border-radius: 999px;
  position: relative;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* Dropdown container */
.ws-nav__dropdown {
  position: relative;
}

.ws-nav__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.ws-nav__dropdown-icon {
  transition: transform 0.2s ease;
}

.ws-nav__dropdown:hover .ws-nav__dropdown-icon {
  transform: rotate(180deg);
}

.ws-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  padding: 8px;
  background: rgba(10, 4, 17, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--ws-border-subtle);
  border-radius: var(--ws-radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}

.ws-nav__dropdown:hover .ws-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ws-nav__dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--ws-text-secondary);
  text-decoration: none;
  border-radius: var(--ws-radius-md);
  transition: all 0.15s ease;
}

.ws-nav__dropdown-item:hover {
  background: var(--ws-surface-glass);
  color: var(--ws-text-primary);
}

.ws-nav__link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--ws-hero-gradient);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.ws-nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ws-text-primary);
  transform: translateY(-1px);
}

.ws-nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.ws-nav__link--active {
  color: var(--ws-text-primary);
  background: rgba(158, 54, 218, 0.15);
  box-shadow: 0 0 20px rgba(158, 54, 218, 0.2);
}

.ws-nav__link--active::after {
  transform: translateX(-50%) scaleX(1);
  width: 24px;
  height: 3px;
  box-shadow: 0 0 8px rgba(158, 54, 218, 0.6);
}

.ws-nav__divider {
  width: 1px;
  height: 16px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--ws-border-subtle) 50%,
    transparent 100%
  );
}

.ws-header__actions {
  display: flex;
  gap: 8px;
}

/* Mobile Menu Button */
.ws-mobile-menu-btn {
  display: none !important;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(10, 4, 17, 0.8);
  border: 1px solid var(--ws-border-subtle);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
  z-index: 101;
}

.ws-mobile-menu-btn:hover {
  background: var(--ws-surface-glass);
}

.ws-mobile-menu-btn__bar {
  width: 100%;
  height: 2px;
  background: var(--ws-text-primary);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ws-menu-open .ws-mobile-menu-btn__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ws-menu-open .ws-mobile-menu-btn__bar:nth-child(2) {
  opacity: 0;
}

.ws-menu-open .ws-mobile-menu-btn__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Drawer */
.ws-nav--mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(10, 4, 17, 0.98);
  border-bottom: 1px solid var(--ws-border-subtle);
}

.ws-nav--mobile .ws-nav__link {
  padding: 14px 16px;
  font-size: 16px;
  border-radius: var(--ws-radius-md);
  border-bottom: 1px solid var(--ws-border-subtle);
}

.ws-nav--mobile .ws-nav__link:last-of-type {
  border-bottom: none;
}

.ws-nav--mobile .ws-nav__link::after {
  display: none;
}

/* Mobile dropdown groups */
.ws-nav__mobile-group {
  border-bottom: 1px solid var(--ws-border-subtle);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.ws-nav__mobile-label {
  display: block;
  padding: 14px 16px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ws-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ws-nav__link--sub {
  padding-left: 32px !important;
  font-size: 15px !important;
}

.ws-hide-mobile {
  display: inline-flex;
}

/* Mobile Responsive Breakpoint */
@media (max-width: 768px) {
  .ws-nav--desktop {
    display: none !important;
  }
  
  .ws-header__inner {
    padding: 12px 16px;
  }
  
  .ws-mobile-menu-btn {
    display: flex !important;
    margin-left: auto;
  }
  
  .ws-header__actions {
    display: none !important;
  }
  
  .ws-menu-open .ws-nav--mobile {
    display: flex;
  }
  
  .ws-hide-mobile {
    display: none !important;
  }
  
  .ws-logo__text {
    font-size: 18px;
  }
}

/* ===========================
   Main & Footer
   =========================== */

.ws-main {
  flex: 1;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Ombre gradient fade between hero and footer */
.ws-ombre-fade {
  height: 150px;
  margin-top: -150px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 4, 17, 0.4) 25%,
    rgba(10, 4, 17, 0.7) 50%,
    rgba(10, 4, 17, 0.9) 75%,
    rgb(10, 4, 17) 100%
  );
  position: relative;
  z-index: 15;
  pointer-events: none;
}

.ws-footer {
  border-top: none;
  background: rgb(10, 4, 17);
  position: relative;
  z-index: 5;
}

.ws-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  font-size: 12px;
  color: var(--ws-text-muted);
}

/* ===========================
   Buttons
   =========================== */

.ws-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: var(--ws-radius-pill);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease,
    background 0.15s ease;
}

.ws-pill-button--primary {
  color: #fff;
  background-image: var(--ws-hero-gradient);
  box-shadow:
    0 0 0 1px rgba(158, 54, 218, 0.18),
    0 8px 28px rgba(158, 54, 218, 0.32);
}

.ws-pill-button--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.ws-pill-button--secondary {
  color: var(--ws-text-primary);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--ws-border-subtle);
}

.ws-pill-button--secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* ===========================
   Cinematic Hero (MP4 video)
   =========================== */

/* Outer hero container */
.ws-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 80px;
  overflow: hidden;
}

/* Slight vignette / cinematic framing */
.ws-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 0, 0, 0.45), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(0, 0, 0, 0.4), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.55), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0.9;
  z-index: 0;
}

/* Background container for video */
.ws-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateZ(0); /* GPU compositing */
}

/* The MP4 video itself */
.ws-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.1) brightness(0.95);
  transform-origin: center;
  transition: filter 0.5s ease, transform 0.8s ease;
}

/* Subtle motion feel on hover (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .ws-hero:hover .ws-hero__video {
    transform: scale(1.05);
    filter: saturate(1.15) contrast(1.12) brightness(1);
  }
}

/* Gradient overlay on top of video - includes ombre fade at bottom */
.ws-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(158, 54, 218, 0.55), transparent 60%),
    radial-gradient(circle at 80% 25%, rgba(189, 145, 206, 0.45), transparent 60%),
    linear-gradient(to bottom, 
      rgba(10, 4, 17, 0.2) 0%, 
      rgba(10, 4, 17, 0.4) 50%, 
      rgba(10, 4, 17, 0.85) 80%, 
      rgb(10, 4, 17) 100%
    );
  mix-blend-mode: normal;
  z-index: 0;
}

/* Main hero content on top of everything */
.ws-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* All hero copy grouped on the right side, clearing the left for image artwork */
.ws-hero__panel {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 900px) {
  .ws-hero {
    padding: 40px 16px 32px;
  }

  .ws-hero__content {
    justify-content: center;
  }

  .ws-hero__panel {
    max-width: 100%;
  }
  
  .ws-hero__text {
    text-align: center;
    max-width: 100%;
  }
  
  .ws-hero__actions {
    justify-content: center;
  }
  
  .ws-hero__card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ws-hero {
    padding: 32px 12px 24px;
  }
  
  .ws-hero__heading {
    font-size: 26px;
  }
  
  .ws-hero__subheading {
    font-size: 14px;
  }
}

.ws-hero__text {
  max-width: 520px;
}

.ws-hero__heading {
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

@media (min-width: 1024px) {
  .ws-hero__heading {
    font-size: 38px;
  }
}

.ws-hero__subheading {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--ws-text-secondary);
}

/* CTA group */
.ws-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Stats card on the right */
.ws-hero__card {
  background:
    linear-gradient(135deg, rgba(158, 54, 218, 0.32), rgba(26, 16, 61, 0.98)),
    var(--ws-surface-elevated);
  border-radius: var(--ws-radius-xl);
  padding: 20px 20px 18px;
  box-shadow: var(--ws-shadow-pop);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(var(--ws-blur-glass));
  position: relative;
  overflow: hidden;
}

/* soft sheen */
.ws-hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ws-card-sheen);
  opacity: 0.85;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* slight motion lift on hover */
@media (hover: hover) and (pointer: fine) {
  .ws-hero__card {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .ws-hero__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.6);
  }
}

.ws-hero-stat__label {
  font-size: 12px;
  color: var(--ws-text-muted);
}

.ws-hero-stat__value {
  font-size: 30px;
  font-weight: 700;
  margin-top: 6px;
}

.ws-hero-stat__suffix {
  font-size: 16px;
  margin-left: 4px;
}

.ws-hero-stat__meta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--ws-text-muted);
}

.ws-hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.ws-kpi {
  background: rgba(10, 4, 17, 0.55);
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-kpi__label {
  font-size: 11px;
  color: var(--ws-text-muted);
}

.ws-kpi__value {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ws-text-primary);
}

/* ===========================
   Event Hero - Video Background
   =========================== */

.event-page__hero--video {
  position: relative;
  overflow: hidden;
}

.event-page__hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.event-page__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.1) brightness(0.8);
  transition: filter 0.5s ease, transform 0.8s ease;
}

.event-page__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(158, 54, 218, 0.5) 0%, transparent 60%),
    linear-gradient(
      to bottom,
      rgba(10, 4, 17, 0.5) 0%,
      rgba(10, 4, 17, 0.3) 40%,
      rgba(10, 4, 17, 0.6) 75%,
      rgba(10, 4, 17, 0.95) 100%
    );
}

.event-page__hero--video .event-page__hero-inner {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .event-page__hero-video {
    animation: none !important;
    transform: scale(1);
  }
}

/* ===========================
   Motion / Accessibility
   =========================== */

@media (prefers-reduced-motion: reduce) {
  .ws-hero__video {
    animation: none !important;
    transform: scale(1.0);
    filter: saturate(1.05) contrast(1.05) brightness(0.96);
  }
}

/* ===========================
   Sections & Content
   =========================== */

.ws-section {
  max-width: 1200px;
  margin: 32px auto 48px;
  padding: 0 16px;
}

.ws-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ws-section__title {
  font-size: 20px;
  margin: 0;
}

.ws-content {
  max-width: 800px;
  margin: 24px auto 48px;
  padding: 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ws-text-secondary);
}

.ws-content h1,
.ws-content h2,
.ws-content h3 {
  color: var(--ws-text-primary);
}

.ws-content a {
  text-decoration: underline;
}

/* ===========================
   Content Hub - Blog Page
   =========================== */

/* Hero Section - matches Team BSTR page */
.content-hero {
  position: relative;
  z-index: 1;
  padding: 60px 24px 40px;
  text-align: center;
}

.content-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.content-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(158, 54, 218, 0.15);
  border: 1px solid rgba(158, 54, 218, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ws-accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.content-hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--ws-accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.content-hero__title {
  font-size: 56px;
  font-weight: 800;
  background: var(--ws-hero-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px;
  line-height: 1.1;
}

.content-hero__subtitle {
  font-size: 18px;
  color: var(--ws-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.content-hero__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(158, 54, 218, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Featured Post */
.content-featured {
  padding: 0 24px 60px;
}

.content-featured__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.content-featured__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  min-height: 380px;
  background: var(--ws-surface);
  border: 1px solid var(--ws-border-subtle);
  border-radius: var(--ws-radius-xl);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.content-featured__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(158, 54, 218, 0.15);
  border-color: rgba(158, 54, 218, 0.3);
}

@media (max-width: 768px) {
  .content-featured__card {
    grid-template-columns: 1fr;
  }
}

.content-featured__image-wrap {
  position: relative;
  min-height: 350px;
  height: 100%;
  overflow: hidden;
}

.content-featured__image {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.content-featured__card:hover .content-featured__image {
  transform: scale(1.05);
}

.content-featured__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ws-surface-elevated) 0%, var(--ws-surface) 100%);
  color: var(--ws-text-muted);
}

.content-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0%, rgba(36, 27, 67, 0.3) 100%);
}

.content-featured__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--ws-hero-gradient);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.content-featured__content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.content-featured__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ws-text-muted);
}

.content-featured__category {
  padding: 4px 10px;
  background: rgba(158, 54, 218, 0.15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ws-accent-primary);
  text-transform: uppercase;
}

.content-featured__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 16px;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.content-featured__card:hover .content-featured__title {
  color: var(--ws-accent-primary);
}

.content-featured__excerpt {
  font-size: 15px;
  color: var(--ws-text-secondary);
  line-height: 1.7;
  margin: 0 0 24px;
}

.content-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ws-accent-primary);
  transition: gap 0.2s ease;
}

.content-featured__card:hover .content-featured__cta {
  gap: 12px;
}

/* Posts Grid */
.content-grid {
  padding: 0 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-grid__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.content-grid__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0;
  white-space: nowrap;
}

.content-grid__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--ws-border-subtle), transparent);
}

.content-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .content-grid__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .content-grid__inner {
    grid-template-columns: 1fr;
  }
}

/* Content Card */
.content-card {
  display: flex;
  flex-direction: column;
  background: var(--ws-surface-glass);
  border: 1px solid var(--ws-border-subtle);
  border-radius: var(--ws-radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(158, 54, 218, 0.1);
  border-color: rgba(158, 54, 218, 0.25);
}

.content-card__image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.content-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.content-card:hover .content-card__image {
  transform: scale(1.08);
}

.content-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ws-surface-elevated) 0%, var(--ws-surface) 100%);
  color: var(--ws-text-muted);
}

.content-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 23, 54, 0.6) 0%, transparent 50%);
}

.content-card__body {
  flex: 1;
  padding: 20px;
}

.content-card__meta {
  font-size: 12px;
  color: var(--ws-text-muted);
  margin-bottom: 10px;
}

.content-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ws-text-primary);
  margin: 0 0 10px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.content-card:hover .content-card__title {
  color: var(--ws-accent-primary);
}

.content-card__excerpt {
  font-size: 14px;
  color: var(--ws-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.content-card__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--ws-border-subtle);
}

.content-card__read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--ws-accent-primary);
}

/* Empty State */
.content-empty {
  padding: 80px 24px;
}

.content-empty__inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.content-empty__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(158, 54, 218, 0.1);
  border-radius: 50%;
  color: var(--ws-accent-primary);
}

.content-empty__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 12px;
}

.content-empty__text {
  font-size: 16px;
  color: var(--ws-text-secondary);
  margin: 0;
}

/* CTA Section */
.content-cta {
  padding: 0 24px 100px;
}

.content-cta__inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(158, 54, 218, 0.15) 0%, rgba(36, 27, 67, 0.8) 100%);
  border: 1px solid rgba(158, 54, 218, 0.25);
  border-radius: var(--ws-radius-xl);
  text-align: center;
  overflow: hidden;
}

.content-cta__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(158, 54, 218, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.content-cta__title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 12px;
}

.content-cta__text {
  position: relative;
  font-size: 16px;
  color: var(--ws-text-secondary);
  margin: 0 0 28px;
}

.content-cta__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ws-hero-gradient);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(158, 54, 218, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
}

.content-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(158, 54, 218, 0.45);
  gap: 14px;
}

/* ===========================
   Single Post Template - The Heart of the Site
   Premium, stunning, gorgeous design
   =========================== */

.post-single {
  position: relative;
  overflow: hidden;
}

/* Ambient Background Orbs */
.post-single__ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.post-single__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.post-single__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(158, 54, 218, 0.4) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.post-single__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(189, 145, 206, 0.3) 0%, transparent 70%);
  top: 40%;
  right: -150px;
  animation-delay: -7s;
}

.post-single__orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 17, 155, 0.35) 0%, transparent 70%);
  bottom: 10%;
  left: 10%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Hero Section */
/* Hide Jetpack sharing/likes injected content */
.sharedaddy,
.sd-sharing-enabled,
.sd-like-enabled,
.jp-relatedposts,
.wpcnt,
div.sharedaddy,
div#jp-post-flair {
  display: none !important;
}

/* Hide WordPress widgets and "About This Project" sections */
.widget,
.widget-area,
.sidebar,
#secondary,
.site-info,
.powered-by,
.theme-info,
.about-this-project,
.widget_about,
.widget_text,
#colophon .site-info,
footer .widget-area {
  display: none !important;
}

.post-single__hero {
  position: relative;
  z-index: 1;
  padding: 60px 24px 40px;
  text-align: center;
}

.post-single__hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.post-single__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-bottom: 24px;
  background: var(--ws-surface-glass);
  border: 1px solid var(--ws-border-subtle);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ws-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-single__back-link:hover {
  background: rgba(158, 54, 218, 0.15);
  border-color: rgba(158, 54, 218, 0.3);
  color: var(--ws-accent-primary);
  transform: translateX(-4px);
}

.post-single__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.post-single__category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(158, 54, 218, 0.2) 0%, rgba(158, 54, 218, 0.1) 100%);
  border: 1px solid rgba(158, 54, 218, 0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ws-accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-single__category:hover {
  background: linear-gradient(135deg, rgba(158, 54, 218, 0.3) 0%, rgba(158, 54, 218, 0.15) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(158, 54, 218, 0.25);
}

.post-single__category-dot {
  width: 6px;
  height: 6px;
  background: var(--ws-accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.post-single__meta-divider {
  width: 4px;
  height: 4px;
  background: var(--ws-text-muted);
  border-radius: 50%;
  opacity: 0.5;
}

.post-single__date,
.post-single__read-time {
  font-size: 13px;
  color: var(--ws-text-muted);
}

.post-single__title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 24px;
  background: linear-gradient(135deg, var(--ws-text-primary) 0%, rgba(255,255,255,0.8) 50%, var(--ws-text-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .post-single__title {
    font-size: 36px;
  }
  
  .post-single__hero {
    padding: 40px 16px 32px;
  }
}

.post-single__excerpt {
  font-size: 20px;
  color: var(--ws-text-secondary);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.post-single__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 12px;
  background: var(--ws-surface-glass);
  border: 1px solid var(--ws-border-subtle);
  border-radius: 999px;
}

.post-single__author-avatar {
  position: relative;
}

.post-single__author-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.post-single__author-avatar-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--ws-hero-gradient) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.post-single__author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.post-single__author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ws-text-primary);
}

.post-single__author-role {
  font-size: 12px;
  color: var(--ws-text-muted);
}

/* Featured Image */
.post-single__featured {
  position: relative;
  z-index: 1;
  padding: 0 24px 60px;
}

.post-single__featured-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.post-single__featured-frame {
  position: relative;
  border-radius: var(--ws-radius-xl);
  overflow: hidden;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.post-single__featured-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.post-single__featured-frame:hover .post-single__featured-img {
  transform: scale(1.02);
}

.post-single__featured-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* Article Content */
.post-single__body {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.post-single__content.prose {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ws-text-secondary);
}

.post-single__content.prose > *:first-child {
  margin-top: 0;
}

/* Drop cap for first paragraph */
.post-single__content.prose > p:first-of-type::first-letter {
  float: left;
  font-size: 4em;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 8px;
  font-weight: 800;
  background: var(--ws-hero-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.post-single__content.prose h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 56px 0 20px;
  padding-top: 32px;
  border-top: 1px solid var(--ws-border-subtle);
}

.post-single__content.prose h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ws-text-primary);
  margin: 40px 0 16px;
}

.post-single__content.prose h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ws-text-primary);
  margin: 32px 0 12px;
}

.post-single__content.prose p {
  margin: 0 0 28px;
}

.post-single__content.prose a {
  color: var(--ws-accent-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.post-single__content.prose a:hover {
  color: var(--ws-accent-primary-hover);
}

.post-single__content.prose strong {
  color: var(--ws-text-primary);
  font-weight: 600;
}

.post-single__content.prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--ws-radius-lg);
  margin: 40px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.post-single__content.prose blockquote {
  position: relative;
  margin: 48px 0;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(158, 54, 218, 0.1) 0%, rgba(36, 27, 67, 0.5) 100%);
  border: 1px solid rgba(158, 54, 218, 0.2);
  border-radius: var(--ws-radius-lg);
  font-size: 20px;
  font-style: italic;
  color: var(--ws-text-primary);
  line-height: 1.7;
}

.post-single__content.prose blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 80px;
  font-family: Georgia, serif;
  background: var(--ws-hero-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  line-height: 1;
}

.post-single__content.prose ul,
.post-single__content.prose ol {
  margin: 0 0 28px;
  padding-left: 28px;
}

.post-single__content.prose li {
  margin-bottom: 12px;
  padding-left: 8px;
}

.post-single__content.prose li::marker {
  color: var(--ws-accent-primary);
}

.post-single__content.prose code {
  padding: 3px 8px;
  background: var(--ws-surface-elevated);
  border-radius: 6px;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: 0.85em;
  color: var(--ws-accent-primary);
}

.post-single__content.prose pre {
  margin: 40px 0;
  padding: 28px;
  background: var(--ws-app-bg-secondary);
  border: 1px solid var(--ws-border-subtle);
  border-radius: var(--ws-radius-lg);
  overflow-x: auto;
}

.post-single__content.prose pre code {
  padding: 0;
  background: none;
  border-radius: 0;
  font-size: 14px;
  color: var(--ws-text-secondary);
}

.post-single__content.prose hr {
  margin: 56px 0;
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ws-border-subtle), transparent);
}

/* Tags Section */
.post-single__tags-section {
  position: relative;
  z-index: 1;
  padding: 0 24px 48px;
}

.post-single__tags-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid var(--ws-border-subtle);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.post-single__tags-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ws-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-single__tag {
  padding: 8px 16px;
  background: var(--ws-surface-glass);
  border: 1px solid var(--ws-border-subtle);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ws-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-single__tag:hover {
  background: rgba(158, 54, 218, 0.15);
  border-color: rgba(158, 54, 218, 0.3);
  color: var(--ws-accent-primary);
  transform: translateY(-2px);
}

/* Engagement / Share */
.post-single__engagement {
  position: relative;
  z-index: 1;
  padding: 0 24px 60px;
}

.post-single__engagement-inner {
  max-width: 720px;
  margin: 0 auto;
}

.post-single__share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  background: var(--ws-surface-glass);
  border: 1px solid var(--ws-border-subtle);
  border-radius: var(--ws-radius-lg);
}

.post-single__share-label {
  font-size: 14px;
  color: var(--ws-text-muted);
}

.post-single__share-buttons {
  display: flex;
  gap: 10px;
}

.post-single__share-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--ws-surface-elevated);
  border: 1px solid var(--ws-border-subtle);
  border-radius: 50%;
  color: var(--ws-text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.post-single__share-btn:hover {
  background: rgba(158, 54, 218, 0.2);
  border-color: rgba(158, 54, 218, 0.4);
  color: var(--ws-accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(158, 54, 218, 0.2);
}

.post-single__share-copied {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  background: var(--ws-success);
  border-radius: 4px;
  font-size: 11px;
  color: white;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.post-single__share-btn--copy.copied .post-single__share-copied {
  opacity: 1;
}

/* Post Navigation */
.post-single__nav {
  position: relative;
  z-index: 1;
  padding: 60px 24px 80px;
  background: linear-gradient(to bottom, transparent, var(--ws-surface-glass));
}

.post-single__nav-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.post-single__nav-heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--ws-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 0 32px;
}

.post-single__nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 640px) {
  .post-single__nav-grid {
    grid-template-columns: 1fr;
  }
}

.post-single__nav-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  border-radius: var(--ws-radius-xl);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.post-single__nav-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 50px rgba(158, 54, 218, 0.15);
}

.post-single__nav-card-image {
  position: absolute;
  inset: 0;
}

.post-single__nav-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-single__nav-card:hover .post-single__nav-card-image img {
  transform: scale(1.08);
}

.post-single__nav-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(25, 23, 54, 0.95) 0%,
    rgba(25, 23, 54, 0.7) 50%,
    rgba(25, 23, 54, 0.4) 100%
  );
}

.post-single__nav-card-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-single__nav-card--next .post-single__nav-card-content {
  text-align: right;
  align-items: flex-end;
}

.post-single__nav-card-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ws-accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-single__nav-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ws-text-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.post-single__nav-card:hover .post-single__nav-card-title {
  color: white;
}

/* Final CTA */
.post-single__cta {
  position: relative;
  z-index: 1;
  padding: 0 24px 100px;
}

.post-single__cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(158, 54, 218, 0.2) 0%, rgba(36, 27, 67, 0.9) 100%);
  border: 1px solid rgba(158, 54, 218, 0.25);
  border-radius: var(--ws-radius-xl);
  text-align: center;
  overflow: hidden;
}

.post-single__cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(158, 54, 218, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.post-single__cta-content {
  position: relative;
  z-index: 1;
}

.post-single__cta-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 12px;
}

.post-single__cta-text {
  font-size: 17px;
  color: var(--ws-text-secondary);
  margin: 0 0 32px;
}

.post-single__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--ws-hero-gradient);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(158, 54, 218, 0.4);
  transition: all 0.3s ease;
}

.post-single__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(158, 54, 218, 0.5);
  gap: 14px;
}

/* ===========================
   Team BSTR Page
   Sponsored player profiles
   =========================== */

.team-page {
  position: relative;
  overflow: hidden;
}

/* Ambient Background Orbs */
.team-page__ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.team-page__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.team-page__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(158, 54, 218, 0.5) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.team-page__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(100, 17, 155, 0.6) 0%, transparent 70%);
  bottom: 20%;
  left: -150px;
  animation-delay: -7s;
}

.team-page__orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(189, 145, 206, 0.3) 0%, transparent 70%);
  top: 60%;
  right: 10%;
  animation-delay: -14s;
}

/* Hero Section */
.team-page__hero {
  position: relative;
  z-index: 1;
  padding: 60px 24px 40px;
  text-align: center;
}

.team-page__hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.team-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--ws-surface-glass);
  border: 1px solid var(--ws-border-subtle);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ws-accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.team-page__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--ws-accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(158, 54, 218, 0.6);
}

.team-page__title {
  font-size: 64px;
  font-weight: 800;
  background: var(--ws-hero-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .team-page__title {
    font-size: 42px;
  }
}

.team-page__subtitle {
  font-size: 20px;
  color: var(--ws-text-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Roster Section */
.team-page__roster {
  position: relative;
  z-index: 1;
  padding: 40px 24px 20px;
}

.team-page__roster-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.team-page__content.prose {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ws-text-secondary);
}

/* Team Grid */
.team-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .team-page__grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .team-page__grid::-webkit-scrollbar {
    height: 6px;
  }
  
  .team-page__grid::-webkit-scrollbar-track {
    background: var(--ws-surface-glass);
    border-radius: 3px;
  }
  
  .team-page__grid::-webkit-scrollbar-thumb {
    background: var(--ws-accent-primary);
    border-radius: 3px;
  }
  
  .team-page__grid .team-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}

/* Team Card */
.team-card {
  position: relative;
  background: var(--ws-surface);
  border: 1px solid var(--ws-border-subtle);
  border-radius: var(--ws-radius-xl);
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(158, 54, 218, 0.15);
  border-color: rgba(158, 54, 218, 0.3);
}

.team-card--featured {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(158, 54, 218, 0.15) 0%, var(--ws-surface) 100%);
}

@media (min-width: 1025px) {
  .team-card--featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.team-card__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(158, 54, 218, 0.4) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-card__glow {
  opacity: 1;
}

.team-card__inner {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Image Section */
.team-card__image-wrap {
  position: relative;
  margin-bottom: 24px;
}

.team-card__image-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ws-surface-elevated) 0%, var(--ws-surface-glass) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ws-text-muted);
}

.team-card--featured .team-card__image-placeholder {
  width: 120px;
  height: 120px;
}

.team-card__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.team-card--featured .team-card__image {
  width: 120px;
  height: 120px;
}

.team-card__image-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--ws-hero-gradient);
  z-index: -1;
  opacity: 0.6;
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.05); }
}

/* Card Info */
.team-card__info {
  margin-bottom: 20px;
}

.team-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 4px;
}

.team-card__handle {
  font-size: 14px;
  color: var(--ws-accent-primary);
  margin: 0 0 12px;
}

.team-card__role {
  display: inline-block;
  padding: 6px 14px;
  background: var(--ws-accent-soft);
  border: 1px solid rgba(158, 54, 218, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ws-accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-card__games {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.team-card__game {
  padding: 4px 12px;
  background: var(--ws-surface-glass);
  border: 1px solid var(--ws-border-subtle);
  border-radius: 999px;
  font-size: 11px;
  color: var(--ws-text-muted);
}

/* Achievements */
.team-card__achievements {
  width: 100%;
  margin-bottom: 20px;
}

.team-card__achievement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(39, 211, 162, 0.1);
  border: 1px solid rgba(39, 211, 162, 0.2);
  border-radius: var(--ws-radius-md);
  font-size: 13px;
  color: var(--ws-success);
}

.team-card__achievement svg {
  flex-shrink: 0;
}

/* CTA within card */
.team-card__cta {
  padding: 16px;
  border-top: 1px solid var(--ws-border-subtle);
  margin-top: auto;
  width: calc(100% + 64px);
  margin-left: -32px;
  margin-right: -32px;
  margin-bottom: -40px;
  background: var(--ws-surface-glass);
}

.team-card__cta span {
  font-size: 13px;
  color: var(--ws-text-muted);
  font-style: italic;
}

/* Social Links */
.team-card__socials {
  display: flex;
  gap: 12px;
}

.team-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--ws-surface-glass);
  border: 1px solid var(--ws-border-subtle);
  border-radius: 50%;
  color: var(--ws-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-card__social:hover {
  background: rgba(158, 54, 218, 0.2);
  border-color: rgba(158, 54, 218, 0.4);
  color: var(--ws-accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(158, 54, 218, 0.2);
}

/* CTA Section */
.team-page__cta {
  position: relative;
  z-index: 1;
  padding: 0 24px 100px;
}

.team-page__cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(158, 54, 218, 0.2) 0%, rgba(36, 27, 67, 0.9) 100%);
  border: 1px solid rgba(158, 54, 218, 0.25);
  border-radius: var(--ws-radius-xl);
  text-align: center;
  overflow: hidden;
}

.team-page__cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(158, 54, 218, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.team-page__cta-content {
  position: relative;
  z-index: 1;
}

.team-page__cta-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 12px;
}

.team-page__cta-text {
  font-size: 17px;
  color: var(--ws-text-secondary);
  margin: 0 0 32px;
}

.team-page__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--ws-hero-gradient);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(158, 54, 218, 0.4);
  transition: all 0.3s ease;
}

.team-page__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(158, 54, 218, 0.5);
  gap: 14px;
}

/* ===========================
   Event Landing Pages
   =========================== */

.event-page {
  position: relative;
  overflow: hidden;
}

.event-page__ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.event-page__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.event-page__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(158, 54, 218, 0.5) 0%, transparent 70%);
  top: -150px;
  right: -150px;
}

.event-page__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(100, 17, 155, 0.4) 0%, transparent 70%);
  bottom: 20%;
  left: -100px;
  animation-delay: -10s;
}

.event-page__hero {
  position: relative;
  z-index: 1;
  padding: 80px 24px 60px;
  text-align: center;
}

.event-page__hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.event-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(158, 54, 218, 0.15);
  border: 1px solid rgba(158, 54, 218, 0.3);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ws-accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.event-page__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--ws-accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.event-page__title {
  font-size: 56px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 20px;
  line-height: 1.1;
}

.event-page__subtitle {
  font-size: 18px;
  color: var(--ws-text-secondary);
  margin: 0 0 32px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.event-page__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.event-page__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ws-text-secondary);
}

.event-page__meta-item svg {
  color: var(--ws-text-muted);
}

.event-page__meta-item--highlight {
  color: #22c55e;
}

.event-page__meta-item--highlight svg {
  color: #22c55e;
}

.event-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.ws-pill-button--large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Info Cards */
.event-page__info {
  position: relative;
  z-index: 1;
  padding: 60px 24px 60px;
}

.event-page__info-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .event-page__info-inner {
    grid-template-columns: 1fr;
  }
}

.event-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--ws-surface-glass);
  border: 1px solid var(--ws-border-subtle);
  border-radius: var(--ws-radius-xl);
  backdrop-filter: blur(12px);
}

.event-info-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ws-surface);
  border-radius: var(--ws-radius-lg);
  color: var(--ws-accent-primary);
  flex-shrink: 0;
}

.event-info-card__icon--highlight {
  background: var(--ws-hero-gradient);
  color: white;
}

.event-info-card__content {
  flex: 1;
}

.event-info-card__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ws-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
}

.event-info-card__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--ws-text-primary);
  margin: 0 0 4px;
}

.event-info-card__subtext {
  font-size: 13px;
  color: var(--ws-text-muted);
  margin: 0;
}

/* Schedule Section */
.event-page__schedule {
  position: relative;
  z-index: 1;
  padding: 60px 24px 80px;
  background: var(--ws-surface-glass);
  border-top: 1px solid var(--ws-border-subtle);
}

.event-page__schedule-inner {
  max-width: 900px;
  margin: 0 auto;
}

.event-page__section-header {
  text-align: center;
  margin-bottom: 40px;
}

.event-page__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 12px;
}

.event-page__section-subtitle {
  font-size: 16px;
  color: var(--ws-text-secondary);
  margin: 0;
}

.schedule-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.schedule-filter__btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ws-text-secondary);
  background: transparent;
  border: 1px solid var(--ws-border-subtle);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.schedule-filter__btn:hover {
  color: var(--ws-text-primary);
  border-color: var(--ws-accent-primary);
}

.schedule-filter__btn--active {
  background: var(--ws-hero-gradient);
  border-color: transparent;
  color: white;
}

.schedule-days {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.schedule-day__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ws-text-primary);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ws-border-subtle);
}

.schedule-day__events {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-event {
  background: var(--ws-surface);
  border: 1px solid var(--ws-border-subtle);
  border-radius: var(--ws-radius-lg);
  transition: all 0.2s ease;
  overflow: hidden;
}

.schedule-event__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
}

.schedule-event:not(.schedule-event--expandable):hover {
  border-color: rgba(158, 54, 218, 0.3);
  transform: translateX(4px);
}

.schedule-event--expandable .schedule-event__header {
  cursor: pointer;
}

.schedule-event--expandable:hover {
  border-color: rgba(158, 54, 218, 0.3);
}

.schedule-event--expandable:hover .schedule-event__header {
  background: rgba(158, 54, 218, 0.05);
}

.schedule-event__chevron {
  color: var(--ws-text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.schedule-event--open .schedule-event__chevron {
  transform: rotate(180deg);
}

.schedule-event__time {
  font-size: 15px;
  font-weight: 600;
  color: var(--ws-accent-primary);
  min-width: 90px;
}

.schedule-event__info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.schedule-event__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ws-text-primary);
}

/* Expandable Details */
.schedule-event__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  border-top: 0 solid var(--ws-border-subtle);
  background: rgba(158, 54, 218, 0.03);
}

.schedule-event--open .schedule-event__details {
  max-height: 300px;
  padding: 20px;
  border-top-width: 1px;
}

.schedule-event__description {
  font-size: 14px;
  color: var(--ws-text-secondary);
  margin: 0 0 16px;
  line-height: 1.5;
}

.schedule-event__meta-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.schedule-event__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-event__meta-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ws-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schedule-event__meta-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ws-text-primary);
}

.schedule-event__register {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ws-hero-gradient);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}

.schedule-event__register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(158, 54, 218, 0.3);
}

.schedule-event__type {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
}

.schedule-event__type--main {
  background: rgba(158, 54, 218, 0.15);
  color: var(--ws-accent-primary);
}

.schedule-event__type--side {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.schedule-event__type--ondemand {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.schedule-event__type--premium {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.schedule-event__type--general {
  background: var(--ws-surface-glass);
  color: var(--ws-text-muted);
}

/* Prize Wall Section */
.event-page__prizes {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

.event-page__prizes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.prize-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.prize-card {
  background: var(--ws-surface);
  border: 1px solid var(--ws-border-subtle);
  border-radius: var(--ws-radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

.prize-card:hover {
  transform: translateY(-4px);
  border-color: rgba(158, 54, 218, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.prize-card__image {
  height: 180px;
  overflow: hidden;
  background: var(--ws-surface-elevated);
}

.prize-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.prize-card:hover .prize-card__image img {
  transform: scale(1.05);
}

.prize-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ws-text-muted);
}

.prize-card__content {
  padding: 20px;
}

.prize-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--ws-text-primary);
  margin: 0 0 8px;
}

.prize-card__description {
  font-size: 14px;
  color: var(--ws-text-secondary);
  margin: 0 0 16px;
  line-height: 1.5;
}

.prize-card__cost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(158, 54, 218, 0.1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ws-accent-primary);
}

.prize-wall-placeholder {
  text-align: center;
  padding: 80px 24px;
  background: var(--ws-surface-glass);
  border: 1px dashed var(--ws-border-subtle);
  border-radius: var(--ws-radius-xl);
}

.prize-wall-placeholder svg {
  color: var(--ws-text-muted);
  margin-bottom: 20px;
}

.prize-wall-placeholder h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ws-text-primary);
  margin: 0 0 8px;
}

.prize-wall-placeholder p {
  font-size: 16px;
  color: var(--ws-text-secondary);
  margin: 0;
}

/* CTA Section */
.event-page__cta {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(158, 54, 218, 0.1));
}

.event-page__cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.event-page__cta-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 12px;
}

.event-page__cta-text {
  font-size: 16px;
  color: var(--ws-text-secondary);
  margin: 0 0 32px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .event-page__hero {
    padding: 60px 16px 40px;
  }
  
  .event-page__title {
    font-size: 36px;
  }
  
  .event-page__meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .schedule-filter {
    flex-wrap: wrap;
  }
  
  .schedule-event__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .schedule-event__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }
  
  .schedule-event__chevron {
    position: absolute;
    right: 16px;
    top: 16px;
  }
  
  .schedule-event--expandable {
    position: relative;
  }
  
  .schedule-event__meta-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===========================
   Coming Soon Page
   =========================== */

.coming-soon {
  position: relative;
  z-index: 1;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.coming-soon__inner {
  max-width: 600px;
}

.coming-soon__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(158, 54, 218, 0.15);
  border: 1px solid rgba(158, 54, 218, 0.3);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ws-accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.coming-soon__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--ws-accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.coming-soon__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 48px;
  line-height: 1.1;
}

.coming-soon__icon {
  margin-bottom: 32px;
  color: var(--ws-accent-primary);
  animation: float 6s ease-in-out infinite;
}

.coming-soon__heading {
  font-size: 32px;
  font-weight: 600;
  color: var(--ws-text-primary);
  margin: 0 0 16px;
}

.coming-soon__text {
  font-size: 18px;
  color: var(--ws-text-secondary);
  margin: 0 0 40px;
  line-height: 1.6;
}

.coming-soon__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.coming-soon__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ws-text-secondary);
}

.coming-soon__detail svg {
  color: var(--ws-text-muted);
}

@media (max-width: 768px) {
  .coming-soon__title {
    font-size: 32px;
  }
  
  .coming-soon__heading {
    font-size: 24px;
  }
  
  .coming-soon__details {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===========================
   About Page - Sub Navigation
   =========================== */

.about-subnav {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: rgba(10, 4, 17, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ws-border-subtle);
  padding: 0 24px;
}

.about-subnav__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}

.about-subnav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ws-text-secondary);
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.about-subnav__link:hover {
  color: var(--ws-text-primary);
  background: var(--ws-surface-glass);
}

.about-subnav__link--highlight {
  color: var(--ws-text-primary);
  background: var(--ws-surface-glass);
  border: 1px solid var(--ws-border-subtle);
}

.about-subnav__link--highlight:hover {
  border-color: rgba(158, 54, 218, 0.4);
  background: rgba(158, 54, 218, 0.1);
}

.about-subnav__badge {
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #22c55e;
  color: white;
  border-radius: 4px;
}

.about-subnav__divider {
  width: 4px;
  height: 4px;
  background: var(--ws-border-subtle);
  border-radius: 50%;
}

/* Smooth scrolling for the page */
html {
  scroll-behavior: smooth;
}

/* Offset for sticky header when scrolling to anchors */
#about-content,
#join-the-team,
#schedule,
#prize-wall {
  scroll-margin-top: 100px;
}

/* ===========================
   About Page - Jobs Section
   =========================== */

.about-jobs {
  position: relative;
  z-index: 1;
  padding: 24px 24px 80px;
}

.about-jobs__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-jobs__header {
  text-align: center;
  margin-bottom: 60px;
}

.about-jobs__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.about-jobs__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.about-jobs__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 16px;
}

.about-jobs__subtitle {
  font-size: 18px;
  color: var(--ws-text-secondary);
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
}

.about-jobs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 32px;
}

@media (max-width: 560px) {
  .about-jobs__grid {
    grid-template-columns: 1fr;
  }
}

.job-card {
  background: var(--ws-surface);
  border: 1px solid var(--ws-border-subtle);
  border-radius: var(--ws-radius-xl);
  padding: 32px;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: rgba(158, 54, 218, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(158, 54, 218, 0.1);
  transform: translateY(-4px);
}

.job-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.job-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ws-hero-gradient);
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
}

.job-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.job-card__type {
  font-size: 12px;
  font-weight: 600;
  color: var(--ws-accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ws-text-muted);
}

.job-card__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 12px;
}

.job-card__summary {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ws-text-secondary);
  margin: 0 0 24px;
}

.job-card__section {
  margin-bottom: 24px;
}

.job-card__section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ws-text-primary);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-card__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ws-text-secondary);
}

.job-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--ws-accent-primary);
  border-radius: 50%;
}

.job-card__list--preferred li::before {
  background: rgba(158, 54, 218, 0.4);
}

.job-card__footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ws-border-subtle);
}

.job-card__compensation {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ws-text-secondary);
  margin-bottom: 20px;
}

.job-card__compensation svg {
  color: #22c55e;
}

.job-card__apply {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card__apply-info {
  font-size: 13px;
  color: var(--ws-text-muted);
  margin: 0;
  line-height: 1.5;
}

.job-card__apply .ws-pill-button {
  align-self: flex-start;
}

/* ===========================
   Mobile Optimizations
   =========================== */

@media (max-width: 768px) {
  .about-subnav {
    padding: 0 16px;
  }
  
  .about-subnav__link {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .about-jobs {
    padding: 60px 16px;
  }
  
  .about-jobs__title {
    font-size: 32px;
  }
  
  .job-card {
    padding: 24px;
  }
  
  .job-card__title {
    font-size: 22px;
  }
  
  .team-page__hero {
    padding: 40px 16px 24px;
  }
  
  .team-page__title {
    font-size: 32px;
  }
  
  .content-hero {
    padding: 40px 16px 24px;
  }
  
  .content-hero__title {
    font-size: 32px;
  }
  
  .post-single__hero {
    padding: 32px 16px;
  }
  
  .post-single__title {
    font-size: 28px;
  }
  
  .ws-footer__inner {
    padding: 20px 16px;
    text-align: center;
  }
}

/* ===========================
   Sign In Page
   =========================== */

.signin-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  overflow: hidden;
}

.signin-page__ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.signin-page__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: float 20s ease-in-out infinite;
}

.signin-page__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(158, 54, 218, 0.55) 0%, transparent 70%);
  top: -200px;
  left: -150px;
  animation-delay: 0s;
}

.signin-page__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(100, 17, 155, 0.5) 0%, transparent 70%);
  bottom: -100px;
  right: -150px;
  animation-delay: -8s;
}

.signin-page__orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(189, 145, 206, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -15s;
}

.signin-page__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Platform context bar */
.signin-platform {
  text-align: center;
}

.signin-platform__logos {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ws-border-subtle);
  border-radius: 999px;
  margin-bottom: 12px;
}

.signin-platform__logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ws-text-secondary);
}

.signin-platform__logo img {
  border-radius: 4px;
  opacity: 0.9;
}

.signin-platform__connector {
  color: var(--ws-text-muted);
  display: flex;
  align-items: center;
}

.signin-platform__tagline {
  font-size: 13px;
  color: var(--ws-text-muted);
  margin: 0;
  letter-spacing: 0.2px;
}

/* Card */
.signin-card {
  width: 100%;
  background: linear-gradient(
    145deg,
    rgba(47, 34, 82, 0.7) 0%,
    rgba(25, 23, 54, 0.85) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--ws-radius-xl);
  padding: 28px 24px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 480px) {
  .signin-card {
    padding: 22px 16px;
  }
}

.signin-card__header {
  text-align: center;
  margin-bottom: 28px;
}

.signin-card__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ws-text-primary);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.signin-card__subtitle {
  font-size: 14px;
  color: var(--ws-text-muted);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 320px;
}

/* OAuth buttons */
.signin-card__oauth {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}

.signin-oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 20px;
  border-radius: var(--ws-radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  border: 1px solid transparent;
}

.signin-oauth-btn:hover {
  transform: translateY(-2px);
}

.signin-oauth-btn__icon {
  flex-shrink: 0;
}

.signin-oauth-btn--google {
  background: #fff;
  color: #3c4043;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.signin-oauth-btn--google:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  color: #3c4043;
}

.signin-oauth-btn--discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.35);
}

.signin-oauth-btn--discord:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.5);
  color: #fff;
}

/* Divider */
.signin-card__divider {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}

.signin-card__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ws-border-subtle);
}

.signin-card__divider span {
  position: relative;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ws-text-muted);
  background: #1f1a3e;
}

/* Form */
.signin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signin-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.signin-form__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.signin-form__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ws-text-secondary);
}

.signin-form__forgot {
  font-size: 12px;
  color: var(--ws-accent-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.signin-form__forgot:hover {
  color: var(--ws-accent-primary-hover);
}

.signin-form__input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 4, 17, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ws-radius-md);
  font-size: 15px;
  color: var(--ws-text-primary);
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.signin-form__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.signin-form__input:focus {
  outline: none;
  border-color: rgba(158, 54, 218, 0.5);
  box-shadow: 0 0 0 3px rgba(158, 54, 218, 0.15);
}

.signin-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  margin-top: 4px;
  background: var(--ws-hero-gradient);
  border: none;
  border-radius: var(--ws-radius-md);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 24px rgba(158, 54, 218, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.signin-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(158, 54, 218, 0.5);
  filter: brightness(1.05);
}

.signin-form__submit:active {
  transform: translateY(0);
}

/* Card footer */
.signin-card__footer {
  margin: 20px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--ws-text-muted);
}

.signin-card__footer a {
  color: var(--ws-accent-primary);
  text-decoration: none;
  font-weight: 500;
}

.signin-card__footer a:hover {
  color: var(--ws-accent-primary-hover);
}

/* Trust indicators */
.signin-trust {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signin-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ws-text-muted);
}

.signin-trust__item svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.signin-trust__dot {
  width: 3px;
  height: 3px;
  background: var(--ws-border-subtle);
  border-radius: 50%;
}

/* Riftbound decklist card hover previews */
.rb-deck .rb-card {
  position: relative;
  cursor: help;
  border-bottom: 1px dotted rgba(158, 54, 218, 0.7);
  white-space: nowrap;
}

.rb-deck .rb-card .rb-pop {
  position: absolute;
  left: 0;
  bottom: 100%;
  z-index: 99;
  display: none;
  width: 240px;
  max-width: 62vw;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0411;
  pointer-events: none;
  transform: translateY(-8px);
}

.rb-deck .rb-card:hover .rb-pop,
.rb-deck .rb-card:focus .rb-pop {
  display: block;
}

.rb-deck ul {
  columns: 2;
  column-gap: 2rem;
}

.rb-deck li {
  break-inside: avoid;
}

@media (max-width: 640px) {
  .rb-deck ul {
    columns: 1;
  }
}

/* ===========================
   Card Show (unique layout)
   =========================== */

.card-show {
  position: relative;
  overflow: hidden;
}

.card-show__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.card-show__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.card-show__orb--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(158, 54, 218, 0.55), transparent 70%);
}

.card-show__orb--2 {
  width: 480px;
  height: 480px;
  top: 240px;
  right: -140px;
  background: radial-gradient(circle, rgba(100, 17, 155, 0.5), transparent 70%);
}

.card-show > * {
  position: relative;
  z-index: 1;
}

/* Hero */
.card-show__hero {
  padding: 96px 24px 64px;
}

.card-show__hero--image {
  padding: 140px 24px 96px;
}

.card-show__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--ws-surface);
  background-size: cover;
  background-position: center;
}

.card-show__hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(25, 23, 54, 0.4), rgba(10, 4, 17, 0.88) 75%),
    linear-gradient(180deg, rgba(25, 23, 54, 0.5), rgba(10, 4, 17, 0.92));
}

.card-show__hero--image .card-show__hero-inner {
  position: relative;
  z-index: 1;
}

.card-show__hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.card-show__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--ws-radius-pill);
  background: var(--ws-accent-soft);
  border: 1px solid rgba(158, 54, 218, 0.35);
  color: var(--ws-text-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-show__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ws-accent-primary);
  box-shadow: 0 0 0 4px rgba(158, 54, 218, 0.25);
}

.card-show__title {
  margin: 22px 0 10px;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  background: var(--ws-hero-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-show__date {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ws-text-secondary);
}

.card-show__subtitle {
  margin: 0 auto 28px;
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ws-text-secondary);
}

.card-show__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Quick facts */
.card-show__facts {
  padding: 8px 24px 32px;
}

.card-show__facts-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cs-fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--ws-radius-lg);
  background: var(--ws-surface-glass);
  border: 1px solid var(--ws-border-subtle);
}

.cs-fact__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--ws-radius-md);
  background: var(--ws-accent-soft);
  color: var(--ws-accent-primary);
}

.cs-fact__icon svg {
  width: 22px;
  height: 22px;
}

.cs-fact__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ws-text-muted);
  margin-bottom: 4px;
}

.cs-fact__value {
  display: block;
  font-weight: 600;
  color: var(--ws-text-primary);
}

.cs-fact__value--lg {
  font-size: 1.3rem;
  margin: 6px 0;
}

.cs-fact__sub {
  display: block;
  font-size: 13px;
  color: var(--ws-text-muted);
  margin-top: 2px;
}

/* Sections */
.card-show__section {
  padding: 56px 24px;
}

.card-show__section--alt {
  background: var(--ws-app-bg-secondary);
}

.card-show__section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.card-show__section-header {
  text-align: center;
  margin-bottom: 36px;
}

.card-show__section-title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--ws-text-primary);
}

.card-show__section-subtitle {
  margin: 0;
  color: var(--ws-text-secondary);
}

/* Highlights */
.cs-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cs-highlight {
  padding: 26px 22px;
  border-radius: var(--ws-radius-lg);
  background: var(--ws-surface);
  border: 1px solid var(--ws-border-subtle);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.cs-highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(158, 54, 218, 0.4);
}

.cs-highlight__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--ws-radius-md);
  background: var(--ws-accent-soft);
  color: var(--ws-accent-primary);
  margin-bottom: 16px;
}

.cs-highlight__icon svg {
  width: 24px;
  height: 24px;
}

.cs-highlight__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ws-text-primary);
}

.cs-highlight__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ws-text-secondary);
}

/* Gallery */
.cs-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cs-gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: var(--ws-radius-lg);
  overflow: hidden;
  background-color: var(--ws-surface);
  background-image: var(--ws-card-sheen);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--ws-border-subtle);
  box-shadow: var(--ws-shadow-card);
}

.cs-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ws-text-primary);
  background: linear-gradient(180deg, transparent, rgba(10, 4, 17, 0.82));
}

/* Vendors */
.cs-vendors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cs-vendor {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 20px;
  border-radius: var(--ws-radius-lg);
  background: var(--ws-surface);
  border: 1px solid var(--ws-border-subtle);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.cs-vendor:hover {
  transform: translateY(-3px);
  border-color: rgba(158, 54, 218, 0.4);
}

.cs-vendor__logo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 18px;
  border-radius: var(--ws-radius-md);
  overflow: hidden;
  background-color: var(--ws-surface-elevated);
  background-image: var(--ws-card-sheen);
  border: 1px solid var(--ws-border-subtle);
  display: grid;
  place-items: center;
}

.cs-vendor__logo-fallback {
  color: var(--ws-text-muted);
}

.cs-vendor__logo-fallback svg {
  width: 44px;
  height: 44px;
}

.cs-vendor__logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: contain;
  background: var(--ws-surface-elevated);
}

.cs-vendor__name {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ws-text-primary);
}

.cs-vendor__specialty {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ws-text-secondary);
}

/* Location */
.card-show__location {
  text-align: center;
}

.card-show__location .ws-pill-button {
  margin-top: 18px;
  gap: 8px;
}

.card-show__location .ws-pill-button svg {
  width: 18px;
  height: 18px;
}

/* CTA */
.card-show__cta {
  padding: 72px 24px 96px;
  text-align: center;
}

.card-show__cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 32px;
  border-radius: var(--ws-radius-xl);
  background: var(--ws-card-sheen), var(--ws-surface-elevated);
  border: 1px solid var(--ws-border-subtle);
  box-shadow: var(--ws-shadow-pop);
}

.card-show__cta-title {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--ws-text-primary);
}

.card-show__cta-text {
  margin: 0 0 24px;
  color: var(--ws-text-secondary);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .card-show__facts-inner,
  .cs-highlights,
  .cs-gallery,
  .cs-vendors {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .card-show__facts-inner,
  .cs-highlights {
    grid-template-columns: 1fr;
  }
  .card-show__hero {
    padding-top: 72px;
  }
}
