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

:root {
  --primary-color: #fbbf24;
  --primary-dark: #f59e0b;
  --secondary-color: #9333ea;
  --accent-color: #ec4899;
  --neon-blue: #06b6d4;
  --neon-pink: #ec4899;
  --neon-green: #10b981;
  --bright-yellow: #fde047;
  --bright-purple: #a855f7;
  --bright-orange: #fb923c;
  --bg-primary: #0f0f23;
  --bg-secondary: #1e1b4b;
  --bg-tertiary: #312e81;
  --text-primary: #ffffff;
  --text-secondary: #fef3c7;
  --text-muted: #fde68a;
  --border-color: #fbbf24;
  --card-bg: #1e1b4b;
  --gradient-primary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --gradient-secondary: linear-gradient(135deg, #fde047 0%, #fbbf24 100%);
  --gradient-accent: linear-gradient(135deg, #fbbf24 0%, #9333ea 100%);
  --gradient-neon: linear-gradient(135deg, #fde047 0%, #fbbf24 50%, #9333ea 100%);
  --gradient-bright: linear-gradient(135deg, #fbbf24 0%, #fde047 50%, #f59e0b 100%);
  --shadow-neon: 0 0 20px rgba(251, 191, 36, 0.6);
  --shadow-pink: 0 0 20px rgba(236, 72, 153, 0.4);
  --shadow-yellow: 0 0 25px rgba(253, 224, 71, 0.7);
  --shadow-green: 0 0 20px rgba(16, 185, 129, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.4);
}

body {
  font-family: "Vazirmatn", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.nav-logo:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.logo-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  transition: transform 0.3s ease;
  overflow: hidden;
}

/* Logo image styles */
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.nav-logo:hover .logo-image {
  transform: scale(1.1);
}

.nav-logo-text h1 {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 400px;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.card {
  position: absolute;
  width: 120px;
  height: 80px;
  border-radius: 12px;
  background: var(--gradient-primary);
  opacity: 1;
  transition: all 0.3s ease;
}

.card-1 {
  top: 20%;
  right: 10%;
}

.card-2 {
  top: 50%;
  right: 40%;
  background: var(--gradient-secondary);
}

.card-3 {
  top: 70%;
  right: 20%;
  background: var(--gradient-accent);
}

/* Games Section */
.games-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  transition: transform 0.3s ease;
}

.section-title:hover {
  transform: translateY(-5px);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  box-shadow: var(--shadow-neon);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  background: linear-gradient(145deg, var(--card-bg) 0%, rgba(30, 27, 75, 0.8) 100%);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  border-radius: 25px;
  padding: 2px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover::before {
  opacity: 1;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-neon), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-card.coming-soon {
  background: #1a1a1a;
  border-color: #333;
}

.game-card.coming-soon:hover {
  border-color: #444;
}

.game-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-img {
  transform: scale(1.05);
}

/* Name Family Game Specific */
.name-family-placeholder {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.name-family-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" fill="rgba(255,255,255,0.1)">اسم</text><text y="70" x="30" font-size="20" fill="rgba(255,255,255,0.1)">فامیل</text></svg>');
  opacity: 0.3;
}

.name-family-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* Name Family Game Image */
.name-family-game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .name-family-game-img {
  transform: scale(1.05);
}

/* When using image, hide the placeholder content */
.name-family-placeholder.has-image {
  background: none;
}

.name-family-placeholder.has-image .name-family-icon,
.name-family-placeholder.has-image div:last-child {
  display: none;
}

/* Generic Game Placeholders */
.coming-soon-placeholder {
  background: linear-gradient(45deg, #2a2a2a 25%, transparent 25%),
    linear-gradient(-45deg, #2a2a2a 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #2a2a2a 75%),
    linear-gradient(-45deg, transparent 75%, #2a2a2a 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  animation: slide 2s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes slide {
  0% {
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  }
  100% {
    background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px;
  }
}

.coming-soon-icon {
  color: var(--neon-green);
  filter: drop-shadow(0 0 10px var(--neon-green));
  animation: pulse-neon 2s ease-in-out infinite alternate;
}

@keyframes pulse-neon {
  from {
    opacity: 0.7;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

.game-info {
  padding: 1.5rem;
}

.game-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.game-card.coming-soon .game-title {
  color: #888;
}

.game-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.game-card.coming-soon .game-description {
  color: #666;
}

.btn-game,
.btn-coming-soon {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-game {
  background: var(--gradient-primary);
  color: white;
}

.btn-game:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-coming-soon {
  background: #333;
  color: #888;
  cursor: not-allowed;
}

/* Disabled button - completely inactive */
.disabled-button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  background: #333;
  color: #888;
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
  text-align: center;
  display: block;
}

/* Features Section */
.features-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, rgba(30, 27, 75, 0.8) 0%, rgba(45, 27, 61, 0.6) 100%);
  border-radius: 25px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
  transition: left 0.5s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-15px) rotateY(5deg);
  border-color: var(--neon-green);
  box-shadow: var(--shadow-green), 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: var(--gradient-primary);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  box-shadow: var(--shadow-yellow);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About Section */
.about-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(247, 37, 133, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(30, 27, 75, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 4rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: var(--shadow-neon);
}

.about-text p {
  font-size: 1.4rem;
  line-height: 2.2;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  position: relative;
}

.about-text p::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-item {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, rgba(30, 27, 75, 0.9) 0%, rgba(45, 27, 61, 0.7) 100%);
  border-radius: 25px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  border-radius: 25px;
  padding: 2px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-item:hover::before {
  opacity: 1;
}

.contact-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-neon), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-item.coming-soon-contact {
  opacity: 0.7;
  background: linear-gradient(145deg, rgba(55, 65, 81, 0.9) 0%, rgba(75, 85, 99, 0.7) 100%);
}

.contact-item.coming-soon-contact:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.contact-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: var(--gradient-primary);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-neon);
  position: relative;
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: translateY(-5px);
}

.contact-item.coming-soon-contact .contact-icon {
  background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
  box-shadow: 0 0 20px rgba(75, 85, 99, 0.3);
}

.contact-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-item.coming-soon-contact h3 {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer */
.footer {
  background: var(--bg-tertiary);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-secondary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-secondary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-visual {
    height: 300px;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

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

  .nav-logo {
    gap: 0.5rem;
  }

  .logo-image {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .nav-logo-text h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .game-card {
    margin: 0 10px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Simple Animations */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Emoji Animation */
@keyframes emoji-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(10deg);
  }
}

.emoji {
  display: inline-block;
  animation: emoji-bounce 1.5s ease-in-out infinite;
}

/* Button Click Effect */
@keyframes button-click {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.btn-primary:active,
.btn-secondary:active {
  animation: button-click 0.2s ease-in-out;
}

/* Loading Animation for Page */
@keyframes page-load {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.games-section,
.about-section,
.features-section,
.contact-section {
  animation: page-load 1s ease-out;
}

.games-section {
  animation-delay: 0.2s;
}

.about-section {
  animation-delay: 0.4s;
}

.features-section {
  animation-delay: 0.6s;
}

.contact-section {
  animation-delay: 0.8s;
}
