/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Green Theme */
  --primary: 142 76% 36%;
  --primary-light: 142 76% 56%;
  --primary-glow: 142 76% 66%;
  --primary-foreground: 0 0% 100%;
  
  --secondary: 142 30% 45%;
  --secondary-foreground: 0 0% 100%;
  
  --accent: 45 93% 47%;
  --accent-foreground: 0 0% 100%;
  
  --success: 142 76% 36%;
  --success-foreground: 0 0% 100%;
  
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%;
  
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  
  --border: 214 32% 91%;
  --input: 214 32% 91%;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(142 76% 36%), hsl(142 76% 56%));
  --gradient-hero: linear-gradient(135deg, hsl(142 76% 36%) 0%, hsl(142 76% 26%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(142 20% 97%) 100%);
  
  /* Shadows */
  --shadow-elegant: 0 10px 30px -10px hsla(142, 76%, 36%, 0.2);
  --shadow-glow: 0 0 40px hsla(142, 76%, 56%, 0.3);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background-color: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(var(--primary));
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav a:hover {
  color: hsl(var(--primary));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-success {
  background-color: hsl(var(--success));
  color: hsl(var(--success-foreground));
}

.btn-success:hover {
  background-color: hsl(var(--success));
  opacity: 0.9;
}

.btn-hero {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 1.5rem 3rem;
  font-size: 1.5rem;
}

/* Card */
.card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  padding: 2rem;
}

.card:hover {
  box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
  padding: 10rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 3rem;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 4rem;
  opacity: 0.9;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Reviews Section */
.reviews-section {
  padding: 10rem 0;
  background-color: hsl(var(--background));
}

.reviews-section h2 {
  font-size: 3.75rem;
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-section > p {
  font-size: 1.875rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 8rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin-top: 8rem;
}

.review-card {
  padding: 4rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
}

.review-name {
  font-size: 1.5rem;
  font-weight: 600;
}

.review-text {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
  padding: 10rem 0;
  background: var(--gradient-subtle);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 6rem;
  align-items: center;
}

.how-it-works h2 {
  font-size: 3.75rem;
  margin-bottom: 3rem;
}

.feature {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.feature h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.facts-card {
  background-color: hsl(var(--primary));
  border-radius: 1rem;
  padding: 4rem;
  box-shadow: var(--shadow-glow);
  position: relative;
}

.facts-card h3 {
  font-size: 2.5rem;
  color: hsl(var(--primary-foreground));
  margin-bottom: 3rem;
  text-align: center;
}

.fact {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  color: hsl(var(--primary-foreground));
}

.fact-value {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.fact-description {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: hsl(var(--primary-light));
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: hsl(var(--background));
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background-color: hsl(var(--primary));
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: hsl(var(--muted-foreground));
}

/* Experiments Page */
.experiments-page {
  padding: 5rem 0;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.filter-bar {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.game-card {
  padding: 2rem;
}

.game-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.game-subtitle {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.game-content {
  text-align: center;
  margin: 2rem 0;
}

.tap-circle {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  background-color: hsl(var(--muted));
}

.tap-circle.waiting {
  background-color: rgba(239, 68, 68, 0.2);
  animation: pulse 2s infinite;
}

.tap-circle.ready {
  background-color: hsl(var(--success));
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.game-result {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: hsl(var(--primary));
}

.game-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 2rem;
  background-color: hsl(var(--muted));
  border-radius: 1rem;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.1s linear;
}

.hold-area {
  width: 100%;
  padding: 3rem;
  background-color: hsl(var(--muted));
  border-radius: 1rem;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.hold-area:active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* Crossy Road */
.crossy-field {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 2rem 0;
}

.crossy-square {
  width: 4rem;
  height: 4rem;
  background-color: hsl(var(--muted));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* Articles Page */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.article-card {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.article-card:hover {
  transform: translateY(-4px);
}

.article-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.article-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.article-excerpt {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.read-more {
  color: hsl(var(--primary));
  font-weight: 500;
  text-decoration: none;
}

/* About Page */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  padding: 0.75rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.mission-card {
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .reviews-section h2,
  .how-it-works h2 {
    font-size: 2.5rem;
  }
  
  .games-grid,
  .articles-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Icons - Simple SVG implementations */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
}

.star-icon {
  color: hsl(var(--accent));
  fill: currentColor;
}
.container_ztq91 {
  position: fixed;
  inset: 0;
  background: #fefefe;
  z-index: 88312;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  visibility: hidden;
}
.module_xr7f2 {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
#barrierShell {
  background-color: #d7d7d7;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  z-index: 98211;
  visibility: hidden;
}
#transitCore {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
