* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Heebo', Arial, sans-serif;
  direction: rtl;
  text-align: right;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, white 2px, transparent 2px),
    radial-gradient(circle at 40% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 90% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 90%, white 2px, transparent 2px),
    radial-gradient(circle at 10% 90%, white 1px, transparent 1px);
  background-size: 200px 200px, 100px 100px, 150px 150px, 180px 180px, 120px 120px;
  animation: twinkle 4s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Fredoka One', 'Heebo', cursive;
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.hero-subtitle {
  font-size: 1.6em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9em;
  border: 1px solid rgba(255,255,255,0.3);
}

.cta-button {
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  cursor: pointer;
  margin: 20px 10px;
  box-shadow: 0 8px 25px rgba(255,107,107,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,107,107,0.4);
}

.cta-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-secondary:hover {
  background: white;
  color: #667eea;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-section {
  background: white;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 60px;
  font-family: 'Fredoka One', 'Heebo', cursive;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.feature-card {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3em;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
}

.preview-section {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding: 80px 20px;
  text-align: center;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-preview {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.page-preview:hover {
  transform: scale(1.05);
}

.page-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.page-title {
  font-weight: bold;
  font-size: 1.1em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.page-content {
  font-size: 0.9em;
  color: #666;
  line-height: 1.6;
}

.placeholder-content {
  background: linear-gradient(45deg, #f3f3f3, #e8e8e8);
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  color: #888;
  font-style: italic;
}

.coming-soon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.social-proof {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.testimonial {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2em;
  font-style: italic;
  color: #555;
  margin-bottom: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #667eea;
  display: block;
}

.stat-label {
  color: #666;
  font-size: 0.9em;
}

.footer {
  background: #2c3e50;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5em;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    display: block;
    margin: 10px 0;
  }
}
