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

:root {
  --primary-color: #4A90E2;
  --secondary-color: #FF6B9D;
  --accent-color: #FFD700;
  --success-color: #50E3C2;
  --purple-color: #7B68EE;
  --dark-bg: #1a1a2e;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Fredoka', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 28px;
  font-weight: 700;
}

.logo i {
  font-size: 32px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
}

.nav-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.hero {
  background: linear-gradient(135deg, #4A90E2 0%, #7B68EE 100%);
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  animation: float 20s infinite ease-in-out;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100px;
}

.cloud-1 {
  width: 100px;
  height: 40px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.cloud-1::before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 10px;
}

.cloud-1::after {
  width: 60px;
  height: 40px;
  top: -20px;
  right: 10px;
}

.cloud-2 {
  width: 120px;
  height: 45px;
  top: 20%;
  right: 15%;
  animation-delay: 3s;
}

.cloud-2::before {
  width: 55px;
  height: 55px;
  top: -28px;
  left: 15px;
}

.cloud-2::after {
  width: 65px;
  height: 45px;
  top: -22px;
  right: 15px;
}

.cloud-3 {
  width: 90px;
  height: 35px;
  top: 60%;
  left: 20%;
  animation-delay: 6s;
}

.cloud-3::before {
  width: 45px;
  height: 45px;
  top: -22px;
  left: 10px;
}

.cloud-3::after {
  width: 50px;
  height: 35px;
  top: -18px;
  right: 10px;
}

.cloud-4 {
  width: 110px;
  height: 42px;
  top: 70%;
  right: 25%;
  animation-delay: 9s;
}

.cloud-4::before {
  width: 52px;
  height: 52px;
  top: -26px;
  left: 12px;
}

.cloud-4::after {
  width: 58px;
  height: 42px;
  top: -21px;
  right: 12px;
}

@keyframes float {
  0%,
  100%
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--text-dark);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-large {
  padding: 18px 45px;
  font-size: 20px;
}

.stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-light);
}

.stat-item i {
  font-size: 40px;
  color: var(--accent-color);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: 14px;
  opacity: 0.9;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100%
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

.features {
  padding: 100px 0;
  background: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.feature-icon i {
  font-size: 36px;
  color: white;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.gameplay {
  padding: 100px 0;
  background: white;
}

.gameplay-steps {
  max-width: 900px;
  margin: 0 auto 50px;
}

.step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.step-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.gameplay-cta {
  text-align: center;
}

.screenshots {
  padding: 100px 0;
  background: var(--light-bg);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.screenshot-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.screenshot-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

.about {
  padding: 100px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.about-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

.highlight-item i {
  color: var(--success-color);
  font-size: 20px;
}

.community {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
}

.community .section-title,
.community .section-subtitle {
  color: var(--text-light);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.social-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-10px);
}

.social-card i {
  font-size: 48px;
  margin-bottom: 20px;
}

.social-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.social-card p {
  font-size: 16px;
  opacity: 0.9;
}

.contact {
  padding: 100px 0;
  background: var(--light-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.info-item i {
  font-size: 32px;
  color: var(--primary-color);
}

.info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.info-item p {
  font-size: 16px;
  color: #666;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
}

.footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 32px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats {
    justify-content: center;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text .section-title {
    text-align: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    gap: 15px;
  }

  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .section-title {
    font-size: 36px;
  }

  .features-grid,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}