.ws-hero {
	--ws-bg: #d4e8c2;
	--ws-bg-gradient: linear-gradient(135deg, #d4e8c2 0%, #d4e8c2 100%);
	--ws-text: rgba(0, 0, 0, 0.65);
	--ws-heading: #000000;
	--ws-accent: #000000;
	--ws-accent-light: #222222;
	--ws-accent-lime: #000000;
	--ws-surface: rgba(80, 120, 60, 0.2);
	--ws-surface-subtle: rgba(40, 80, 20, 0.05);
	--ws-border: rgba(60, 100, 40, 0.2);
	--ws-dot-pattern: rgba(40, 80, 20, 0.03);
  
	/* Board base cells — all white */
	--ws-cell-text: #213C35;
	--ws-cell-text-hover: #213C35;
	--ws-cell-bg-white: #ffffff;
	--ws-cell-border-white: #EEF2E4;
  
	--ws-cell-shadow: 0 1px 2px rgba(33,60,53,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
  
	/* Grid wrapper */
	--ws-board-bg: #EEF2E4;
	--ws-board-border-outer: #213C35;
	--ws-board-border-inner: #213C35;
	--ws-board-shadow: 0 4px 20px rgba(33,60,53,0.25), inset 0 2px 4px rgba(255,255,255,0.12);
  
	/* Buttons */
	--ws-btn-bg: rgba(33, 60, 53, 0.08);
	--ws-btn-color: #213C35;
	--ws-btn-hover-bg: rgba(33, 60, 53, 0.15);
	--ws-btn-active-bg: rgba(33, 60, 53, 0.25);
	--ws-btn-border: rgba(33, 60, 53, 0.15);
  
	/* Hint */
	--ws-hint-bg: rgba(33, 60, 53, 0.08);
	--ws-hint-hover-bg: rgba(33, 60, 53, 0.12);
	--ws-hint-border: rgba(33, 60, 53, 0.2);
  
	/* Toast */
	--ws-toast-bg: rgba(33, 60, 53, 0.94);
	--ws-toast-text: #EEF2E4;
	--ws-toast-meaning: rgba(205, 214, 183, 0.7);
	--ws-toast-border: rgba(33, 60, 53, 0.3);
  
	/* Progress */
	--ws-progress-color: rgba(33, 60, 53, 0.5);
  
	/* Blink (hint) */
	--ws-blink-base-bg: #ffffff;
	--ws-blink-base-text: #213C35;
	--ws-blink-base-border: #EEF2E4;
  
	/* Idle twinkle */
	--ws-twinkle-base-text: #213C35;
  
	/* Heading glow */
	--ws-heading-glow: none;
  
	/* Vignette */
	--ws-vignette: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 50%, rgba(33,60,53,0.08) 100%);
  
	/* Nav dots */
	--ws-dot-bg: rgba(255, 255, 255, 0.85);
	--ws-dot-active: #213C35;
	--ws-dot-hover: rgba(255, 255, 255, 1);
  
	/* Promo slides */
	--ws-promo-heading: #213C35;
	--ws-promo-text: rgba(33, 60, 53, 0.55);
	--ws-promo-cta-bg: rgba(33, 60, 53, 0.1);
	--ws-promo-cta-color: #213C35;
	--ws-promo-cta-border: rgba(33, 60, 53, 0.2);
	--ws-promo-cta-hover-bg: rgba(33, 60, 53, 0.2);
	--ws-promo-badge-bg: rgba(33, 60, 53, 0.08);
	--ws-promo-badge-color: rgba(33, 60, 53, 0.75);
	--ws-promo-badge-border: rgba(33, 60, 53, 0.15);
  
	/* Found cell — dark deep green */
	--ws-found-bg: #0E231E;
	--ws-found-text: #ffffff;
	--ws-found-border: #091a15;
	--ws-found-shadow: 0 3px 12px rgba(14,35,30,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
	--ws-found-hover-bg: #1a3530;
	--ws-found-hover-border: #0E231E;
	--ws-found-hover-shadow: 0 4px 20px rgba(14,35,30,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  
	/* Selecting — vibrant lime */
	--ws-selecting-bg: #B2D234;
	--ws-selecting-text: #213C35;
	--ws-selecting-border: #9ec22a;
	--ws-selecting-shadow: 0 0 16px rgba(178,210,52,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  }
  
  .ws-hero {
	height: 640px;
	position: relative;
	overflow: hidden;
	background: #E4EDC3;
	transition: background 0.5s ease;
  }
  
  /* Vignette */
  .ws-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--ws-vignette);
	pointer-events: none;
	z-index: 1;
	transition: background 0.5s ease;
  }
  
  /* Dot pattern */
  .ws-dots-bg {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, var(--ws-dot-pattern) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
	z-index: 0;
  }
  .ws-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 56px;
	max-width: 1050px;
	width: 100%;
	height: 100%;
  }
  
  /* Grid Panel */
  .ws-grid-panel {
	flex-shrink: 0;
	position: relative;
  }
  
  .ws-grid-wrapper {
	position: relative;
	background: var(--ws-board-bg);
	border-radius: 6px;
	padding: 18px;
	border: 6px solid var(--ws-board-border-outer);
	box-shadow: var(--ws-board-shadow);
	transition: all 0.5s ease;
	overflow: hidden;
  }
  
  /* Board inner edge — subtle raised look */
  .ws-grid-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 4px;
	border: 2px solid var(--ws-board-border-inner);
	pointer-events: none;
	z-index: 0;
  }
  
  /* Hide glass overlay */
  .ws-glass-overlay {
	display: none;
  }
  
  .ws-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 3px;
	transition: opacity 0.35s ease;
	position: relative;
	z-index: 2;
  }
  
  .ws-grid.fading {
	opacity: 0;
  }
  
  /* Cells — tile-like, squarish */
  .ws-cell {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 800;
	font-family: 'Manrope', sans-serif;
	text-transform: uppercase;
	cursor: pointer;
	user-select: none;
	border-radius: 3px;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	color: var(--ws-cell-text);
	box-shadow: var(--ws-cell-shadow);
	letter-spacing: 0.02em;
  }
  
  /* Two cell types only */
  .ws-cell.cell-white {
	background: var(--ws-cell-bg-white);
	border: 1px solid var(--ws-cell-border-white);
  }
  
  .ws-cell:hover {
	transform: scale(1.14) translateY(-2px);
	z-index: 5;
	box-shadow: 0 4px 16px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
	color: var(--ws-cell-text-hover);
  }
  
  .ws-cell.found {
	background: var(--ws-found-bg) !important;
	color: var(--ws-found-text) !important;
	border-color: var(--ws-found-border) !important;
	box-shadow: var(--ws-found-shadow) !important;
	animation: ws-cell-reveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
	font-weight: 900;
  }
  
  .ws-cell.found:hover {
	background: var(--ws-found-hover-bg) !important;
	color: var(--ws-found-text) !important;
	border-color: var(--ws-found-hover-border) !important;
	box-shadow: var(--ws-found-hover-shadow) !important;
  }
  
  .ws-cell.found-fading {
	animation: ws-found-fadeout 0.8s ease-in-out forwards;
	font-weight: 900;
  }
  
  .ws-cell.instant-reveal {
	animation: ws-instant-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }
  
  .ws-cell.blink-hint {
	animation: ws-blink 0.4s ease-in-out 3;
	z-index: 10;
  }
  
  .ws-cell.selecting {
	background: var(--ws-selecting-bg) !important;
	color: var(--ws-selecting-text) !important;
	border-color: var(--ws-selecting-border) !important;
	transform: scale(1.12);
	box-shadow: var(--ws-selecting-shadow);
	font-weight: 900;
  }
  
  .ws-cell.selected-start {
	background: var(--ws-found-bg) !important;
	color: var(--ws-found-text) !important;
	border-color: var(--ws-found-border) !important;
	box-shadow: 0 0 16px rgba(200, 168, 78, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  }
  
  .ws-cell.idle-twinkle {
	animation: ws-idle-twinkle 0.7s ease-in-out both;
	z-index: 2;
  }
  
  /* ========================================
	 CONTENT PANEL (RIGHT)
	 ======================================== */
  
  .ws-content-panel {
	flex: 1;
	min-width: 0;
	position: relative;
	background-image: radial-gradient(circle, rgba(90, 138, 72, 0.2) 1.5px, transparent 1.5px);
	background-size: 20px 20px;
	background-position: center center;
  }
  
  .ws-title-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 0;
	opacity: 0;
	animation: ws-fade-up 0.6s ease-out 0.35s forwards;
  }
  
  .ws-title {
	font-size: 4rem;
	font-weight: 800;
	color: var(--ws-heading);
	letter-spacing: -0.02em;
	line-height: 1;
	margin: 0;
	transition: color 0.5s ease, text-shadow 0.5s ease;
	text-shadow: var(--ws-heading-glow);
  }
  
  /* Question title (initial state) */
  .ws-question-text {
	
	font-size: 2.2rem;
	font-weight: 600;
	color: var(--ws-heading);
	line-height: 1.15;
  }
  
  .ws-title-accent {
	display: block;
	font-size: 4rem;
	font-weight: 800;
	color: #000000;
	line-height: 1.05;
	letter-spacing: -0.02em;
  }
  
  .ws-subtitle {
	
	font-size: 1.5rem;
	color: var(--ws-cell-text);
	margin-bottom: 8px;
	opacity: 0;
	animation: ws-fade-up 0.6s ease-out 0.45s forwards;
  }
  
  .ws-description {
	
	font-size: 2rem;
	line-height: 1.1;
	color: var(--ws-text);
	max-width: 360px;
	margin-bottom: 20px;
	opacity: 0;
	animation: ws-fade-up 0.6s ease-out 0.5s forwards;
	transition: color 0.5s ease;
  }
/* ======================================== TOAST ======================================== */
.ws-toast {
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	opacity: 0;
	pointer-events: none;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 40;
	white-space: nowrap;
  }
  
  .ws-toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
  }
  
  .ws-toast-inner {
	background: var(--ws-toast-bg);
	color: var(--ws-toast-text);
	font-size: 13px;
	padding: 10px 20px;
	border-radius: 10px;
	border: 1px solid var(--ws-toast-border);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
	display: flex;
	align-items: center;
	gap: 10px;
  }
  
  .ws-toast-star { color: var(--ws-accent); font-weight: 700; font-size: 15px; }
  .ws-toast-word { font-weight: 700; color: var(--ws-accent); }
  .ws-toast-meaning { color: var(--ws-toast-meaning); }
/* ======================================== COMPLETION ======================================== */
.ws-complete {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 18px;
  }
  
  .ws-complete.show { display: flex; }
  
  .ws-complete-emoji {
	width: 120px;
	height: 120px;
	animation: ws-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .ws-complete-title {
	font-size: 5.5rem;
	font-weight: 800;
	color: var(--ws-heading);
	text-shadow: var(--ws-heading-glow);
	line-height: 1.1;
  }
  
  .ws-complete-sub {
	font-size: 2rem;
	color: var(--ws-text);
	line-height: 1.1;
  }
  
  .ws-play-again-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: 999px;
	border: 2px solid #213C35;
	background: transparent;
	color: #213C35;
	font-size: 1.25rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
	margin-top: 6px;
  }
  
  .ws-play-again-btn:hover { background: rgba(33, 60, 53, 0.1); transform: scale(1.06); box-shadow: 0 4px 16px rgba(33, 60, 53, 0.15); }
  .ws-play-again-btn:active { transform: scale(0.97); }
  
  /* Confetti */
  .ws-confetti-container {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
  }
  
  .ws-confetti {
	position: absolute;
	width: 10px;
	height: 10px;
	top: -10px;
	opacity: 0;
  }
  
  .ws-confetti.slow { animation: ws-confetti-fall 5s linear infinite; }
  .ws-confetti.medium { animation: ws-confetti-fall 3.5s linear infinite; }
  .ws-confetti.fast { animation: ws-confetti-fall 2.5s linear infinite; }
  
  @keyframes ws-confetti-fall {
	0% { opacity: 1; top: -10%; transform: translateX(0) rotateX(0) rotateY(0); }
	25% { opacity: 1; transform: translateX(20px) rotateX(40deg) rotateY(90deg); }
	50% { opacity: 1; transform: translateX(-20px) rotateX(120deg) rotateY(180deg); }
	75% { opacity: 1; transform: translateX(15px) rotateX(200deg) rotateY(270deg); }
	100% { opacity: 0; top: 100%; transform: translateX(-10px) rotateX(300deg) rotateY(360deg); }
  }
  .ws-particle {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 20;
	animation: ws-particle-fly 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  
  .ws-particle.gold { background: #c8a84e; box-shadow: 0 0 6px rgba(200, 168, 78, 0.5); }
  .ws-particle.amber { background: #e8d090; box-shadow: 0 0 6px rgba(232, 208, 144, 0.5); }
  .ws-particle.white { background: #f5edd8; box-shadow: 0 0 6px rgba(245, 237, 216, 0.4); }
  .ws-particle.brown { background: #a08050; box-shadow: 0 0 6px rgba(160, 128, 80, 0.5); }
  
  .ws-ambient-dot {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	opacity: 0;
	animation: ws-ambient-float linear infinite;
	filter: blur(0.5px);
  }
  
  /* ========================================
	 KEYFRAMES
	 ======================================== */
  
  @keyframes ws-cell-reveal {
	0% { transform: scale(0.4) rotate(-8deg); opacity: 0; }
	50% { transform: scale(1.2) rotate(2deg); }
	100% { transform: scale(1) rotate(0deg); opacity: 1; }
  }
  
  @keyframes ws-instant-pop {
	0% { transform: scale(1.35); box-shadow: 0 0 20px rgba(200, 168, 78, 0.7); }
	40% { transform: scale(0.88); }
	100% { transform: scale(1); box-shadow: 0 3px 12px rgba(200, 168, 78, 0.3); }
  }
  
  @keyframes ws-found-fadeout {
	0% {
	  background: var(--ws-found-bg);
	  color: var(--ws-found-text);
	  border-color: var(--ws-found-border);
	  box-shadow: var(--ws-found-shadow);
	  transform: scale(1);
	}
	30% {
	  transform: scale(1.08);
	  box-shadow: 0 0 18px rgba(14,35,30,0.35);
	}
	100% {
	  background: var(--ws-cell-bg-white);
	  color: var(--ws-cell-text);
	  border-color: var(--ws-cell-border-white);
	  box-shadow: var(--ws-cell-shadow);
	  transform: scale(1);
	  font-weight: 700;
	}
  }
  
  @keyframes ws-blink {
	0%, 100% { background: var(--ws-blink-base-bg); color: var(--ws-blink-base-text); border-color: var(--ws-blink-base-border); transform: scale(1); }
	50% { background: #EEF2E4; color: #213C35; border-color: #CDD6B7; transform: scale(1.15); box-shadow: 0 0 16px rgba(238, 242, 228, 0.6); }
  }
  
  @keyframes ws-idle-twinkle {
	0% { color: var(--ws-twinkle-base-text); transform: scale(1); }
	40% { color: rgba(140, 100, 40, 0.7); background: rgba(220, 192, 120, 0.25); transform: scale(1.06); box-shadow: 0 0 8px rgba(200, 168, 78, 0.2); }
	100% { color: var(--ws-twinkle-base-text); transform: scale(1); box-shadow: none; }
  }
  
  @keyframes ws-fade-up {
	0% { opacity: 0; transform: translateY(24px); }
	100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes ws-particle-fly {
	0% { opacity: 1; transform: translate(0, 0) scale(1); }
	100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
  }
  
  @keyframes ws-hint-glow {
	0%, 100% { box-shadow: 0 0 0 0 rgba(33, 60, 53, 0); border-color: #213C35; }
	50% { box-shadow: 0 0 16px 5px rgba(33, 60, 53, 0.25); border-color: #213C35; }
  }
  
  @keyframes ws-bounce {
	0% { transform: scale(0.3); }
	50% { transform: scale(1.15); }
	100% { transform: scale(1); }
  }
  
  @keyframes ws-ambient-float {
	0% { transform: translate(0, 0); opacity: 0; }
	10% { opacity: var(--max-opacity); }
	90% { opacity: var(--max-opacity); }
	100% { transform: translate(var(--dx), var(--dy)); opacity: 0; }
  }


.video-container-p9w2n6 video::-webkit-media-controls {
    display: none !important;
}
.magicpattern-p9w2n6 { 
	background-size: 20px 20px;
    background-position: center center;
	background-image: radial-gradient(circle, rgba(90, 138, 72, 0.2) 1.5px, #C4D6D2 1.5px);
}
  
/* Circle wave cursor */
.circle-wave-p9w2n6 {
    position: absolute;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10;
    left: 50%;
    top: 50%;
}

.circle-wave-p9w2n6 .ring-p9w2n6 {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: wave-pulse-p9w2n6 2s ease-out infinite;
}

.circle-wave-p9w2n6 .ring-p9w2n6:nth-child(2) {
    animation-delay: 0s;
}

.circle-wave-p9w2n6 .ring-p9w2n6:nth-child(3) {
    animation-delay: 0.4s;
}

.circle-wave-p9w2n6 .ring-p9w2n6:nth-child(4) {
    animation-delay: 0.8s;
}

.circle-wave-p9w2n6 .ring-p9w2n6:nth-child(5) {
    animation-delay: 1.2s;
}

.circle-wave-p9w2n6 .center-dot-p9w2n6 {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes wave-pulse-p9w2n6 {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

.swiper-pagination-p9w2n6 .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: calc(infinity * 1px);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 !important;
}

.swiper-pagination-p9w2n6 .swiper-pagination-bullet-active {
    background: #61726E;
    width: 48px;
    height: 8px;
}

/* Text Animation */
.hero-swiper-p9w2n6 .swiper-slide-active .text-content {
    animation: fadeInRight-p9w2n6 0.8s ease forwards;
}

@keyframes fadeInRight-p9w2n6 {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Image/Video Animation */
.hero-swiper-p9w2n6 .swiper-slide-active .video-container-p9w2n6,
.hero-swiper-p9w2n6 .swiper-slide-active .aspect-video {
    animation: fadeInLeft-p9w2n6 0.8s ease forwards;
}

@keyframes fadeInLeft-p9w2n6 {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ======================================== RESPONSIVE ======================================== */
/* Tablet */
@media (max-width:1024px) {

	.ws-hero { height: 640px; }

  .ws-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    padding: 0 8px;
  }
  .ws-content-panel {
    order: -1;
    text-align: center;
    padding-top: 16px;
	padding-bottom: 16px;
	flex: none;
  }

  .ws-title-row { justify-content: center; margin-bottom: 0.5rem; }
  .ws-description { max-width: none; margin-left: auto; margin-right: auto; margin-bottom: 12px; }

  .ws-grid-panel { display: flex; justify-content: center; }
  .ws-grid-wrapper { padding: 8px; border-radius: 4px; display: inline-block; }
  .ws-grid { gap: 2px; }
  .ws-cell { width: 28px; height: 28px; font-size: 11px; border-radius: 2px; }

  .ws-title { font-size: 3rem; margin-bottom: 0.5rem; }
  .ws-description { font-size: 1.5rem; }

  .ws-question-text { font-size: 1.5rem; }
  .ws-title-accent { font-size: 2.5rem; }
  .ws-subtitle { font-size: 1.5rem; }
  .ws-complete-emoji {
    width: 60px;
    height: 60px;
}
  .ws-complete-title {
    font-size: 2rem;
}
.ws-complete-sub {
    font-size: 1.5rem

}
.ws-complete {
    gap: 6px;
}
    .swiper-pagination-p9w2n6 .swiper-pagination-bullet {
        background: #CDD6B7;
    }
    
    .swiper-pagination-p9w2n6 .swiper-pagination-bullet-active {
        background: #B8C1A2;
    }
}
/* Small mobile */
@media (max-width:400px) {
	.ws-cell { width: 24px; height: 24px; font-size: 10px; border-radius: 2px; }
  .ws-grid { gap: 1px; }
  .ws-grid-wrapper { padding: 4px; border-width: 2px; }
  .ws-title { font-size: 2.5rem; }
  .ws-title-accent { font-size: 2rem; }
}