@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --color-ocean-deep: #0a1628;
  --color-ocean-mid: #0d2040;
  --color-ocean-surface: #0f2d5a;
  --color-aqua-bright: #00d4ff;
  --color-aqua-soft: #00a8cc;
  --color-aqua-glow: rgba(0, 212, 255, 0.15);
  --color-gold-primary: #f5c842;
  --color-gold-light: #ffd966;
  --color-gold-dark: #c9a227;
  --color-green-accent: #10b981;
  --color-green-dark: #059669;
  --color-green-glow: rgba(16, 185, 129, 0.2);
  --color-white: #ffffff;
  --color-white-soft: rgba(255, 255, 255, 0.9);
  --color-white-muted: rgba(255, 255, 255, 0.6);
  --color-white-faint: rgba(255, 255, 255, 0.08);
  --color-glass-bg: rgba(255, 255, 255, 0.05);
  --color-glass-border: rgba(255, 255, 255, 0.12);
  --color-card-bg: rgba(13, 32, 64, 0.8);
  --color-overlay-dark: rgba(10, 22, 40, 0.85);
  --color-danger: #ef4444;
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d2040 40%, #0a2a4a 100%);
  --gradient-gold: linear-gradient(135deg, #f5c842 0%, #ffd966 50%, #c9a227 100%);
  --gradient-aqua: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
  --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-card: linear-gradient(145deg, rgba(13,32,64,0.9) 0%, rgba(10,22,40,0.95) 100%);
  --gradient-section: linear-gradient(180deg, #0a1628 0%, #0d2040 100%);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-md: 1.125rem;
  --size-lg: 1.25rem;
  --size-xl: 1.5rem;
  --size-2xl: 2rem;
  --size-3xl: 2.5rem;
  --size-4xl: 3rem;
  --size-5xl: 3.5rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow-gold: 0 0 30px rgba(245, 200, 66, 0.3);
  --shadow-glow-aqua: 0 0 30px rgba(0, 212, 255, 0.3);
  --shadow-glow-green: 0 0 30px rgba(16, 185, 129, 0.3);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --container-max: 1200px;
  --container-wide: 1440px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--color-ocean-deep);
  color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITIES ===== */
.site-ZhKNJF-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.site-ZhKNJF-section {
  padding: var(--space-3xl) 0;
}

.site-ZhKNJF-section--alt {
  background: var(--gradient-section);
}

.site-ZhKNJF-section--dark {
  background: var(--color-ocean-deep);
}

.site-ZhKNJF-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-aqua-glow);
  border: 1px solid var(--color-aqua-soft);
  color: var(--color-aqua-bright);
  font-family: var(--font-heading);
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.site-ZhKNJF-section-title {
  font-family: var(--font-heading);
  font-size: var(--size-2xl);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.site-ZhKNJF-section-title span {
  color: var(--color-gold-primary);
}

.site-ZhKNJF-section-subtitle {
  font-size: var(--size-md);
  color: var(--color-white-muted);
  max-width: 640px;
  margin-bottom: var(--space-2xl);
}

.site-ZhKNJF-text-center { text-align: center; }
.site-ZhKNJF-text-center .site-ZhKNJF-section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.site-ZhKNJF-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--size-base);
  padding: 0.875rem var(--space-xl);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.site-ZhKNJF-btn--primary {
  background: var(--gradient-gold);
  color: var(--color-ocean-deep);
  box-shadow: var(--shadow-glow-gold);
}

.site-ZhKNJF-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(245, 200, 66, 0.5);
}

.site-ZhKNJF-btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-aqua-bright);
}

.site-ZhKNJF-btn--secondary:hover {
  background: var(--color-aqua-glow);
  transform: translateY(-2px);
}

.site-ZhKNJF-btn--green {
  background: var(--gradient-green);
  color: var(--color-white);
  box-shadow: var(--shadow-glow-green);
}

.site-ZhKNJF-btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
}

.site-ZhKNJF-btn--lg {
  font-size: var(--size-lg);
  padding: 1.1rem 2.5rem;
}

/* ===== HEADER ===== */
.site-ZhKNJF-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass-border);
  transition: all var(--transition-base);
}

.site-ZhKNJF-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-ZhKNJF-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--size-lg);
}

.site-ZhKNJF-logo__icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.site-ZhKNJF-logo__text {
  color: var(--color-white);
}

.site-ZhKNJF-logo__text span {
  color: var(--color-gold-primary);
}

.site-ZhKNJF-nav {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.site-ZhKNJF-nav__link {
  font-family: var(--font-heading);
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--color-white-muted);
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
}

.site-ZhKNJF-nav__link:hover {
  color: var(--color-aqua-bright);
}

.site-ZhKNJF-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.site-ZhKNJF-hamburger__line {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.site-ZhKNJF-hamburger.is-active .site-ZhKNJF-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-ZhKNJF-hamburger.is-active .site-ZhKNJF-hamburger__line:nth-child(2) {
  opacity: 0;
}

.site-ZhKNJF-hamburger.is-active .site-ZhKNJF-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-ZhKNJF-mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass-border);
  padding: var(--space-xl);
  z-index: 999;
  flex-direction: column;
  gap: var(--space-lg);
}

.site-ZhKNJF-mobile-menu.is-open {
  display: flex;
}

.site-ZhKNJF-mobile-menu .site-ZhKNJF-nav__link {
  font-size: var(--size-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-glass-border);
}

/* ===== HERO ===== */
.site-ZhKNJF-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.site-ZhKNJF-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.site-ZhKNJF-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
}

.site-ZhKNJF-hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.site-ZhKNJF-hero__particle {
  position: absolute;
  border-radius: 50%;
  animation: site-ZhKNJF-float 6s ease-in-out infinite;
}

.site-ZhKNJF-hero__particle:nth-child(1) {
  width: 6px; height: 6px;
  background: var(--color-gold-primary);
  top: 20%; left: 10%;
  animation-delay: 0s;
  opacity: 0.6;
}

.site-ZhKNJF-hero__particle:nth-child(2) {
  width: 4px; height: 4px;
  background: var(--color-aqua-bright);
  top: 60%; left: 80%;
  animation-delay: 1s;
  opacity: 0.5;
}

.site-ZhKNJF-hero__particle:nth-child(3) {
  width: 8px; height: 8px;
  background: var(--color-green-accent);
  top: 80%; left: 30%;
  animation-delay: 2s;
  opacity: 0.4;
}

.site-ZhKNJF-hero__particle:nth-child(4) {
  width: 5px; height: 5px;
  background: var(--color-gold-light);
  top: 30%; left: 60%;
  animation-delay: 3s;
  opacity: 0.5;
}

.site-ZhKNJF-hero__particle:nth-child(5) {
  width: 3px; height: 3px;
  background: var(--color-aqua-bright);
  top: 70%; left: 50%;
  animation-delay: 1.5s;
  opacity: 0.6;
}

@keyframes site-ZhKNJF-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.site-ZhKNJF-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  width: 100%;
  padding: var(--space-3xl) 0;
}

.site-ZhKNJF-hero__text {
  max-width: 640px;
}

.site-ZhKNJF-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-green-glow);
  border: 1px solid var(--color-green-accent);
  color: var(--color-green-accent);
  font-family: var(--font-heading);
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.site-ZhKNJF-hero__title {
  font-family: var(--font-heading);
  font-size: var(--size-3xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.site-ZhKNJF-hero__title--gold {
  color: var(--color-gold-primary);
  display: block;
}

.site-ZhKNJF-hero__title--aqua {
  color: var(--color-aqua-bright);
}

.site-ZhKNJF-hero__desc {
  font-size: var(--size-md);
  color: var(--color-white-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.site-ZhKNJF-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.site-ZhKNJF-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.site-ZhKNJF-hero__stat {
  display: flex;
  flex-direction: column;
}

.site-ZhKNJF-hero__stat-value {
  font-family: var(--font-heading);
  font-size: var(--size-xl);
  font-weight: 900;
  color: var(--color-gold-primary);
  line-height: 1;
}

.site-ZhKNJF-hero__stat-label {
  font-size: var(--size-xs);
  color: var(--color-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.site-ZhKNJF-hero__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.site-ZhKNJF-hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--color-gold-primary), var(--color-aqua-bright), var(--color-green-accent));
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.6;
}

.site-ZhKNJF-hero__img {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
}

/* ===== TRUST BAR ===== */
.site-ZhKNJF-trust-bar {
  background: rgba(13, 32, 64, 0.9);
  border-top: 1px solid var(--color-glass-border);
  border-bottom: 1px solid var(--color-glass-border);
  padding: var(--space-lg) 0;
}

.site-ZhKNJF-trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  align-items: center;
}

.site-ZhKNJF-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--color-white-muted);
}

.site-ZhKNJF-trust-item__icon {
  font-size: 1.2rem;
}

/* ===== ABOUT SECTION ===== */
.site-ZhKNJF-about {
  background: var(--color-ocean-deep);
}

.site-ZhKNJF-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.site-ZhKNJF-about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.site-ZhKNJF-about__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-ocean-deep) 0%, transparent 40%);
}

.site-ZhKNJF-about__img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.site-ZhKNJF-about__content p {
  color: var(--color-white-muted);
  margin-bottom: var(--space-md);
  font-size: var(--size-base);
}

.site-ZhKNJF-about__content p strong {
  color: var(--color-white);
}

.site-ZhKNJF-info-table-wrap {
  overflow-x: auto;
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
}

.site-ZhKNJF-info-table {
  min-width: 600px;
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.site-ZhKNJF-info-table th,
.site-ZhKNJF-info-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--color-glass-border);
  font-size: var(--size-sm);
}

.site-ZhKNJF-info-table th {
  background: rgba(0, 212, 255, 0.08);
  color: var(--color-aqua-bright);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-ZhKNJF-info-table td {
  color: var(--color-white-muted);
}

.site-ZhKNJF-info-table td strong {
  color: var(--color-white);
}

.site-ZhKNJF-info-table tr:last-child td {
  border-bottom: none;
}

.site-ZhKNJF-info-table tr:hover td {
  background: var(--color-white-faint);
}

/* ===== HOW IT WORKS ===== */
.site-ZhKNJF-how {
  background: var(--gradient-section);
}

.site-ZhKNJF-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.site-ZhKNJF-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.site-ZhKNJF-step:hover {
  border-color: var(--color-aqua-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-aqua);
}

.site-ZhKNJF-step__number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--size-xl);
  font-weight: 900;
  color: var(--color-ocean-deep);
}

.site-ZhKNJF-step__body h3 {
  font-family: var(--font-heading);
  font-size: var(--size-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-white);
}

.site-ZhKNJF-step__body p {
  color: var(--color-white-muted);
  font-size: var(--size-sm);
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.site-ZhKNJF-features {
  background: var(--color-ocean-deep);
}

.site-ZhKNJF-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.site-ZhKNJF-feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.site-ZhKNJF-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.site-ZhKNJF-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(245, 200, 66, 0.3);
}

.site-ZhKNJF-feature-card:hover::before {
  opacity: 1;
}

.site-ZhKNJF-feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.site-ZhKNJF-feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.site-ZhKNJF-feature-card__desc {
  color: var(--color-white-muted);
  font-size: var(--size-sm);
  line-height: 1.7;
}

.site-ZhKNJF-feature-card__tag {
  display: inline-block;
  margin-top: var(--space-md);
  background: var(--color-aqua-glow);
  color: var(--color-aqua-bright);
  font-family: var(--font-heading);
  font-size: var(--size-xs);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

/* ===== SPLASH SECTION ===== */
.site-ZhKNJF-splash {
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

.site-ZhKNJF-splash::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.site-ZhKNJF-splash__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.site-ZhKNJF-splash__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.site-ZhKNJF-splash__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.site-ZhKNJF-splash__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
}

.site-ZhKNJF-splash__item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.site-ZhKNJF-splash__item-text h3 {
  font-family: var(--font-heading);
  font-size: var(--size-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
}

.site-ZhKNJF-splash__item-text p {
  font-size: var(--size-sm);
  color: var(--color-white-muted);
}

/* ===== MOBILE SECTION ===== */
.site-ZhKNJF-mobile {
  background: var(--color-ocean-deep);
}

.site-ZhKNJF-mobile__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.site-ZhKNJF-mobile__img-wrap {
  display: flex;
  justify-content: center;
}

.site-ZhKNJF-mobile__img {
  max-width: 320px;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow-aqua);
}

.site-ZhKNJF-mobile__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.site-ZhKNJF-mobile__feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--size-sm);
  color: var(--color-white-muted);
}

.site-ZhKNJF-mobile__feature::before {
  content: '✓';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-green-glow);
  border: 1px solid var(--color-green-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-accent);
  font-weight: 700;
  font-size: var(--size-sm);
}

/* ===== GALLERY ===== */
.site-ZhKNJF-gallery {
  background: var(--gradient-section);
}

.site-ZhKNJF-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.site-ZhKNJF-gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
}

.site-ZhKNJF-gallery__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow-gold);
}

.site-ZhKNJF-gallery__item--wide {
  grid-column: span 2;
}

.site-ZhKNJF-gallery__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.site-ZhKNJF-gallery__item--wide .site-ZhKNJF-gallery__img {
  height: 260px;
}

.site-ZhKNJF-gallery__item:hover .site-ZhKNJF-gallery__img {
  transform: scale(1.05);
}

.site-ZhKNJF-gallery__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-dark);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.site-ZhKNJF-gallery__item:hover .site-ZhKNJF-gallery__overlay {
  opacity: 1;
}

.site-ZhKNJF-gallery__caption {
  font-family: var(--font-heading);
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--color-white);
}

/* ===== FAQ ===== */
.site-ZhKNJF-faq {
  background: var(--color-ocean-deep);
}

.site-ZhKNJF-faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.site-ZhKNJF-faq__item {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.site-ZhKNJF-faq__item.is-open {
  border-color: var(--color-aqua-soft);
}

.site-ZhKNJF-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--space-md);
}

.site-ZhKNJF-faq__question-text {
  font-family: var(--font-heading);
  font-size: var(--size-base);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
}

.site-ZhKNJF-faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-aqua-glow);
  border: 1px solid var(--color-aqua-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-aqua-bright);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform var(--transition-base);
  line-height: 1;
}

.site-ZhKNJF-faq__item.is-open .site-ZhKNJF-faq__icon {
  transform: rotate(45deg);
}

.site-ZhKNJF-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.site-ZhKNJF-faq__item.is-open .site-ZhKNJF-faq__answer {
  max-height: 300px;
}

.site-ZhKNJF-faq__answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--color-white-muted);
  font-size: var(--size-sm);
  line-height: 1.8;
}

/* ===== EDITORIAL ===== */
.site-ZhKNJF-editorial {
  background: var(--gradient-section);
}

.site-ZhKNJF-editorial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.site-ZhKNJF-editorial-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.site-ZhKNJF-editorial-card__title {
  font-family: var(--font-heading);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--color-aqua-bright);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.site-ZhKNJF-editorial-card p,
.site-ZhKNJF-editorial-card li {
  color: var(--color-white-muted);
  font-size: var(--size-sm);
  line-height: 1.8;
}

.site-ZhKNJF-editorial-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-left: var(--space-md);
}

.site-ZhKNJF-editorial-card ul li::before {
  content: '→ ';
  color: var(--color-aqua-bright);
}

.site-ZhKNJF-last-updated {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-green-glow);
  border: 1px solid var(--color-green-accent);
  color: var(--color-green-accent);
  font-size: var(--size-xs);
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

/* ===== LEGAL ===== */
.site-ZhKNJF-legal {
  background: var(--color-ocean-deep);
  border-top: 1px solid var(--color-glass-border);
}

.site-ZhKNJF-legal__box {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.site-ZhKNJF-legal__box h2 {
  font-family: var(--font-heading);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--color-danger);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.site-ZhKNJF-legal__box p {
  color: var(--color-white-muted);
  font-size: var(--size-sm);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.site-ZhKNJF-legal__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.site-ZhKNJF-legal__link {
  color: var(--color-aqua-bright);
  font-size: var(--size-sm);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.site-ZhKNJF-legal__link:hover {
  color: var(--color-aqua-soft);
}

/* ===== CONTACT ===== */
.site-ZhKNJF-contact {
  background: var(--gradient-section);
}

.site-ZhKNJF-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.site-ZhKNJF-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.site-ZhKNJF-contact-item__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.site-ZhKNJF-contact-item__text h3 {
  font-family: var(--font-heading);
  font-size: var(--size-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.site-ZhKNJF-contact-item__text p,
.site-ZhKNJF-contact-item__text a {
  font-size: var(--size-sm);
  color: var(--color-white-muted);
}

.site-ZhKNJF-contact-item__text a {
  color: var(--color-aqua-bright);
  transition: color var(--transition-fast);
}

.site-ZhKNJF-contact-item__text a:hover {
  color: var(--color-aqua-soft);
}

/* ===== CTA BANNER ===== */
.site-ZhKNJF-cta-banner {
  background: linear-gradient(135deg, #0d2040 0%, #0a2a4a 50%, #0d2040 100%);
  border-top: 1px solid var(--color-glass-border);
  border-bottom: 1px solid var(--color-glass-border);
  position: relative;
  overflow: hidden;
}

.site-ZhKNJF-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 200, 66, 0.08) 0%, transparent 70%);
}

.site-ZhKNJF-cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-3xl) 0;
}

.site-ZhKNJF-cta-banner__title {
  font-family: var(--font-heading);
  font-size: var(--size-2xl);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.site-ZhKNJF-cta-banner__title span {
  color: var(--color-gold-primary);
}

.site-ZhKNJF-cta-banner__subtitle {
  color: var(--color-white-muted);
  font-size: var(--size-md);
  margin-bottom: var(--space-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.site-ZhKNJF-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ===== STICKY CTA ===== */
.site-ZhKNJF-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 22, 40, 0.97);
  border-top: 1px solid var(--color-glass-border);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.site-ZhKNJF-sticky-cta.is-visible {
  transform: translateY(0);
}

.site-ZhKNJF-sticky-cta__text {
  font-family: var(--font-heading);
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--color-white);
  flex: 1;
}

.site-ZhKNJF-sticky-cta__text span {
  color: var(--color-gold-primary);
}

/* ===== FOOTER ===== */
.site-ZhKNJF-footer {
  background: var(--color-ocean-deep);
  border-top: 1px solid var(--color-glass-border);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.site-ZhKNJF-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.site-ZhKNJF-footer__brand p {
  color: var(--color-white-muted);
  font-size: var(--size-sm);
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 320px;
}

.site-ZhKNJF-footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--size-sm);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.site-ZhKNJF-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-ZhKNJF-footer__link {
  font-size: var(--size-sm);
  color: var(--color-white-muted);
  transition: color var(--transition-fast);
  cursor: pointer;
}

.site-ZhKNJF-footer__link:hover {
  color: var(--color-aqua-bright);
}

.site-ZhKNJF-footer__bottom {
  border-top: 1px solid var(--color-glass-border);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

.site-ZhKNJF-footer__copyright {
  font-size: var(--size-xs);
  color: var(--color-white-muted);
}

.site-ZhKNJF-footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-danger);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: var(--size-xs);
  font-weight: 900;
  color: var(--color-white);
}

/* ===== ANIMATIONS ===== */
.site-ZhKNJF-animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.site-ZhKNJF-animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-ZhKNJF-animate-in--delay-1 { transition-delay: 0.1s; }
.site-ZhKNJF-animate-in--delay-2 { transition-delay: 0.2s; }
.site-ZhKNJF-animate-in--delay-3 { transition-delay: 0.3s; }
.site-ZhKNJF-animate-in--delay-4 { transition-delay: 0.4s; }

/* ===== FOCUS STATES ===== */
:focus-visible {
  outline: 2px solid var(--color-aqua-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== RESPONSIVE: TABLET ===== */
@media (min-width: 768px) {
  .site-ZhKNJF-section-title {
    font-size: var(--size-3xl);
  }

  .site-ZhKNJF-hero__title {
    font-size: var(--size-4xl);
  }

  .site-ZhKNJF-hero__content {
    grid-template-columns: 1fr 1fr;
  }

  .site-ZhKNJF-about__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-ZhKNJF-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-ZhKNJF-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-ZhKNJF-splash__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-ZhKNJF-mobile__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-ZhKNJF-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-ZhKNJF-gallery__item--wide {
    grid-column: span 1;
  }

  .site-ZhKNJF-gallery__img {
    height: 220px;
  }

  .site-ZhKNJF-editorial__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-ZhKNJF-contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-ZhKNJF-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-ZhKNJF-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .site-ZhKNJF-cta-banner__title {
    font-size: var(--size-3xl);
  }
}

/* ===== RESPONSIVE: DESKTOP ===== */
@media (min-width: 1024px) {
  .site-ZhKNJF-nav {
    display: flex;
  }

  .site-ZhKNJF-hamburger {
    display: none;
  }

  .site-ZhKNJF-hero__title {
    font-size: var(--size-5xl);
  }

  .site-ZhKNJF-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-ZhKNJF-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-ZhKNJF-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-ZhKNJF-gallery__item--wide {
    grid-column: span 2;
  }

  .site-ZhKNJF-gallery__img {
    height: 240px;
  }

  .site-ZhKNJF-gallery__item--wide .site-ZhKNJF-gallery__img {
    height: 300px;
  }

  .site-ZhKNJF-editorial__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-ZhKNJF-contact__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-ZhKNJF-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .site-ZhKNJF-sticky-cta {
    display: none;
  }
}

/* ===== RESPONSIVE: LARGE DESKTOP ===== */
@media (min-width: 1440px) {
  .site-ZhKNJF-container {
    max-width: var(--container-wide);
  }
}

.gen-ctguiw13 .gen-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  margin-top: 40px;
}

.gen-ctguiw13 .gen-mosaic-featured {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.gen-ctguiw13 .gen-mosaic-wide {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.gen-ctguiw13 .gen-mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 0;
  box-shadow: 0 6px 32px rgba(0,0,0,0.45);
  background: #0a1628;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gen-ctguiw13 .gen-mosaic-item:hover {
  box-shadow: 0 12px 48px rgba(245,200,66,0.25);
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}

.gen-ctguiw13 .gen-mosaic-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gen-ctguiw13 .gen-mosaic-featured img {
  min-height: 280px;
}

.gen-ctguiw13 .gen-mosaic-item:hover img {
  transform: scale(1.06);
}

.gen-ctguiw13 .gen-mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px 20px 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gen-ctguiw13 .gen-mosaic-item:hover .gen-mosaic-overlay {
  opacity: 1;
}

.gen-ctguiw13 .gen-mosaic-caption {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  line-height: 1.3;
}

.gen-ctguiw13 .gen-mosaic-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.2rem;
  background: rgba(245,200,66,0.18);
  border: 1.5px solid rgba(245,200,66,0.5);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}

.gen-ctguiw13 .gen-mosaic-item:hover .gen-mosaic-zoom {
  background: rgba(245,200,66,0.35);
  transform: scale(1.15);
}

/* Lightbox */
.gen-ctguiw13 .gen-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gen-ctguiw13 .gen-lightbox[hidden] {
  display: none;
}

.gen-ctguiw13 .gen-lightbox-img {
  max-width: 88vw;
  max-height: 74vh;
  border-radius: 14px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.85);
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.gen-ctguiw13 .gen-lightbox-caption {
  color: #f5c842;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.gen-ctguiw13 .gen-lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 10;
}

.gen-ctguiw13 .gen-lightbox-close:hover {
  color: #f5c842;
}

.gen-ctguiw13 .gen-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,22,40,0.75);
  border: 2px solid rgba(245,200,66,0.5);
  color: #f5c842;
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  z-index: 10;
}

.gen-ctguiw13 .gen-lightbox-nav:hover {
  background: rgba(245,200,66,0.2);
  border-color: #f5c842;
}

.gen-ctguiw13 .gen-lightbox-nav--prev {
  left: 20px;
}

.gen-ctguiw13 .gen-lightbox-nav--next {
  right: 20px;
}

@media (max-width: 640px) {
  .gen-ctguiw13 .gen-gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gen-ctguiw13 .gen-mosaic-featured {
    grid-column: 1 / 3;
  }
  .gen-ctguiw13 .gen-mosaic-wide {
    grid-column: 1 / 3;
  }
}

.gen-m0298xkw {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: inline-block;
  width: 560px;
  max-width: 100%;
}

.gen-m0298xkw__game-card {
  position: relative;
  width: 100%;
  aspect-ratio: 560 / 420;
  background: linear-gradient(145deg, #0a1a12 0%, #0d2318 40%, #071510 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 20px;
  box-sizing: border-box;
  border: 2px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.25), 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.gen-m0298xkw__game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.45), 0 4px 16px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
  border-color: rgba(16, 185, 129, 0.85);
}

.gen-m0298xkw__bg-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gen-m0298xkw__header {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gen-m0298xkw__badge {
  background: linear-gradient(90deg, #ef4444, #f97316);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(239,68,68,0.4);
}

.gen-m0298xkw__provider {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gen-m0298xkw__center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.gen-m0298xkw__fish-scene {
  position: relative;
  width: 200px;
  height: 120px;
}

.gen-m0298xkw__water {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(180deg, rgba(6,182,212,0.15) 0%, rgba(6,182,212,0.3) 100%);
  border-radius: 0 0 12px 12px;
  animation: gen-m0298xkw-wave 3s ease-in-out infinite;
}

@keyframes gen-m0298xkw-wave {
  0%, 100% { transform: scaleX(1) translateY(0); }
  50% { transform: scaleX(1.03) translateY(-3px); }
}

.gen-m0298xkw__fish {
  position: absolute;
  font-size: 28px;
  animation: gen-m0298xkw-swim 4s ease-in-out infinite;
}

.gen-m0298xkw__fish--1 {
  bottom: 10px;
  left: 10px;
  animation-delay: 0s;
}

.gen-m0298xkw__fish--2 {
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.8s;
}

.gen-m0298xkw__fish--3 {
  bottom: 8px;
  right: 10px;
  animation-delay: 1.6s;
}

@keyframes gen-m0298xkw-swim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.gen-m0298xkw__fish--2 {
  bottom: 18px;
  left: 50%;
  margin-left: -14px;
}

.gen-m0298xkw__hook {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  animation: gen-m0298xkw-hook 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes gen-m0298xkw-hook {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

.gen-m0298xkw__coins {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gen-m0298xkw__coin {
  font-size: 18px;
  animation: gen-m0298xkw-float 2.5s ease-in-out infinite;
  display: block;
}

.gen-m0298xkw__coin--1 { animation-delay: 0s; }
.gen-m0298xkw__coin--2 { animation-delay: 0.4s; }
.gen-m0298xkw__coin--3 { animation-delay: 0.8s; }

@keyframes gen-m0298xkw-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-10px) scale(1.1); opacity: 0.7; }
}

.gen-m0298xkw__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(16,185,129,0.5);
  font-family: "Open Sans", sans-serif;
}

.gen-m0298xkw__reels {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  align-items: center;
}

.gen-m0298xkw__reel {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.2s ease, background 0.2s ease;
  overflow: hidden;
}

.gen-m0298xkw__reel--win {
  background: rgba(16,185,129,0.2);
  border-color: rgba(16,185,129,0.6);
  box-shadow: 0 0 14px rgba(16,185,129,0.4);
  animation: gen-m0298xkw-pulse-reel 1.5s ease-in-out infinite;
}

@keyframes gen-m0298xkw-pulse-reel {
  0%, 100% { box-shadow: 0 0 14px rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 28px rgba(16,185,129,0.8); }
}

.gen-m0298xkw__reel-inner {
  display: block;
  line-height: 1;
}

.gen-m0298xkw__stats {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 16px;
  box-sizing: border-box;
}

.gen-m0298xkw__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.gen-m0298xkw__stat--mid {
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0 20px;
}

.gen-m0298xkw__stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.gen-m0298xkw__stat-value {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.gen-m0298xkw__stat-value--hot {
  color: #f97316;
}

.gen-m0298xkw__stat-value--gold {
  color: #fbbf24;
}

.gen-m0298xkw__play-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(90deg, #10b981, #059669);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
  border-radius: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(16,185,129,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: "Open Sans", sans-serif;
  opacity: 0;
  transform: translateY(8px);
}

.gen-m0298xkw__game-card:hover .gen-m0298xkw__play-btn {
  opacity: 1;
  transform: translateY(0);
}

.gen-m0298xkw__play-btn:hover {
  background: linear-gradient(90deg, #34d399, #10b981);
  box-shadow: 0 6px 24px rgba(16,185,129,0.6);
  transform: translateY(-2px);
}

.gen-nczu7gj2 {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  border-radius: 20px;
}

.gen-nczu7gj2__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px 20px;
  box-sizing: border-box;
  background: radial-gradient(ellipse at 50% 0%, rgba(16,185,129,0.18) 0%, rgba(10,26,18,1) 70%);
  position: relative;
}

.gen-nczu7gj2__icon {
  font-size: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 12px rgba(16,185,129,0.8));
  animation: gen-nczu7gj2-bob 2.5s ease-in-out infinite;
}

@keyframes gen-nczu7gj2-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.gen-nczu7gj2__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #10b981;
  text-shadow: 0 0 16px rgba(16,185,129,0.7);
  margin-bottom: 2px;
}

.gen-nczu7gj2__subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gen-nczu7gj2__stats {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.gen-nczu7gj2__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 10px;
  padding: 8px 14px;
}

.gen-nczu7gj2__stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.gen-nczu7gj2__stat-value {
  font-size: 15px;
  font-weight: 700;
  color: #10b981;
}

.gen-nczu7gj2__reels {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.gen-nczu7gj2__reel {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(16,185,129,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: transform 0.2s;
}

.gen-nczu7gj2__reel--highlight {
  border-color: #10b981;
  background: rgba(16,185,129,0.18);
  box-shadow: 0 0 16px rgba(16,185,129,0.5);
  animation: gen-nczu7gj2-pulse 1.5s ease-in-out infinite;
}

@keyframes gen-nczu7gj2-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(16,185,129,0.5); }
  50% { box-shadow: 0 0 32px rgba(16,185,129,0.9); }
}

.gen-nczu7gj2__payline {
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  margin-top: 10px;
  border-radius: 2px;
  opacity: 0.7;
}

.gen-907xao5w {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .gen-907xao5w {
    grid-template-columns: 1fr;
  }
}

.gen-907xao5w__cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.gen-907xao5w__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: default;
}

.gen-907xao5w__card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
}

.gen-907xao5w__card--highlight {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
}

.gen-907xao5w__card--highlight:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.55);
}

.gen-907xao5w__card-icon {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 2px;
}

.gen-907xao5w__card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.55;
  font-weight: 600;
  color: #fff;
}

.gen-907xao5w__card-value {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.gen-907xao5w__card--highlight .gen-907xao5w__card-value {
  color: #4ade80;
}

/* Image block */
.gen-907xao5w__image-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 24px;
}

.gen-907xao5w__image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(74,222,128,0.08);
  background: rgba(0,0,0,0.3);
}

.gen-907xao5w__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gen-907xao5w__image-wrapper:hover .gen-907xao5w__image {
  transform: scale(1.03);
}

.gen-907xao5w__image-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(34, 197, 94, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(34,197,94,0.35);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.gen-907xao5w__image-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 20px;
}

.gen-907xao5w__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.gen-907xao5w__stat-value {
  font-size: 18px;
  font-weight: 800;
  color: #4ade80;
  line-height: 1.2;
}

.gen-907xao5w__stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.5;
  color: #fff;
  font-weight: 600;
}

.gen-907xao5w__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.gen-vgmyto9m {
  box-sizing: border-box;
  width: 100%;
  padding: 0 16px;
}

.gen-vgmyto9m .site-ZhKNJF-last-updated {
  display: inline-block;
  font-size: 13px;
  word-break: break-word;
  margin-bottom: 8px;
}

.gen-vgmyto9m .site-ZhKNJF-section-title {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.3;
}

.gen-vgmyto9m p {
  box-sizing: border-box;
  width: 100% !important;
  max-width: 720px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .gen-vgmyto9m {
    padding: 0 12px;
  }

  .gen-vgmyto9m .site-ZhKNJF-last-updated {
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
  }

  .gen-vgmyto9m .site-ZhKNJF-section-title {
    font-size: clamp(18px, 5vw, 32px);
    margin-top: 8px;
    margin-bottom: 12px;
  }

  .gen-vgmyto9m p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
  }
}

@media (max-width: 480px) {
  .gen-vgmyto9m {
    padding: 0 8px;
  }

  .gen-vgmyto9m .site-ZhKNJF-section-title {
    font-size: clamp(16px, 6vw, 24px);
  }

  .gen-vgmyto9m p {
    font-size: 13px !important;
  }
}

._extracted-style-67sL { box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 30px; }

._extracted-style-4pvv { width:100%; margin-top: 0.5rem; }

._extracted-style-JUCZ { opacity: 1; transform: translateY(0px); transition: opacity 0.4s, transform 0.4s, background 0.2s, border-color 0.2s; }

._extracted-style-iRUP { opacity: 1; transform: translateY(0px); transition: opacity 0.4s, transform 0.4s, background 0.2s, border-color 0.2s; }

._extracted-style-t_HK { opacity: 1; transform: translateY(0px); transition: opacity 0.4s, transform 0.4s, background 0.2s, border-color 0.2s; }

._extracted-style-BvQH { opacity: 1; transform: translateY(0px); transition: opacity 0.4s, transform 0.4s, background 0.2s, border-color 0.2s; }

._extracted-style-PO9_ { opacity: 1; transform: translateY(0px); transition: opacity 0.4s, transform 0.4s, background 0.2s, border-color 0.2s; }

._extracted-style-4oob { opacity: 1; transform: translateY(0px); transition: opacity 0.4s, transform 0.4s, background 0.2s, border-color 0.2s; }

._extracted-style-aOma { opacity: 1; transform: translateY(0px); transition: opacity 0.4s, transform 0.4s, background 0.2s, border-color 0.2s; }

._extracted-style-ybmS { opacity: 1; transform: translateY(0px); transition: opacity 0.4s, transform 0.4s, background 0.2s, border-color 0.2s; }

._extracted-style-EZQk { opacity: 1; transform: translateX(0px); transition: opacity 0.6s, transform 0.6s; }

._extracted-style-vcu_ { text-align:center; margin-top: var(--space-2xl); }

._extracted-style-p0Zj { color: var(--color-white-muted); margin-bottom: var(--space-lg); font-size: var(--size-base); line-height: 1.8; }

._extracted-style--4DT { color: var(--color-white); }

._extracted-style-vmDt { margin-top: var(--space-xl); }

._extracted-style-kKGN { color: var(--color-white-muted); margin-bottom: var(--space-lg); font-size: var(--size-base); line-height: 1.8; }

._extracted-style-mmvp { margin-top: var(--space-xl); }

._extracted-style-Tfg6 { color: var(--color-white-muted); max-width: 720px; margin-bottom: var(--space-2xl); font-size: var(--size-base); line-height: 1.8; }

._extracted-style-RBNL { margin-top: var(--space-md); }

._extracted-style-zAiA { margin-top: var(--space-md); }

._extracted-style-jydL { margin-top: var(--space-md); }

._extracted-style-Xq_a { color: var(--color-white); }

._extracted-style-GQbM { color: var(--color-white); }

._extracted-style-7Rme { cursor:default; color: var(--color-danger); }

._extracted-style-KLVE { color: var(--color-aqua-bright); }