* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Vazirmatn", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--background);
  line-height: 1.6;
  color: var(--text);
}

/* لودر بهبود یافته */

.neo-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
  color: var(--text);
}

.loader-logo {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-text {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text);
}

.neo-progress::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
  animation: progress 2.5s ease-in-out;
}

/* هدر نئومورفیک */
.neo-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.neo-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  font-size: 2.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  font-size: 1rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.btn-neo {
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 2px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary);
}

/* پروفایل کاربری */
.user-profile-wrapper {
  position: relative;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  cursor: pointer;
}

.user-profile:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  overflow: hidden;
  border: 2px solid var(--primary-light);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-fallback {
  background: var(--gradient);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.user-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.user-role {
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--primary-light);
  color: white;
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  margin-top: 0.2rem;
}

.user-role.admin {
  background: var(--accent);
}

.user-role.user {
  background: var(--primary);
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.user-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  min-width: 200px;
}

.user-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.dropdown-item:hover {
  background: var(--secondary);
  color: var(--primary);
}

.dropdown-item.logout {
  color: #e74c3c;
}

.dropdown-item.logout:hover {
  background: #e74c3c;
  color: white;
}

.dropdown-divider {
  height: 1px;
  background: var(--secondary);
  margin: 0.5rem 0;
}

/* منوی همبرگری */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  background: rgba(139, 92, 246, 0.2);
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* منوی موبایل */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(5px);
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--secondary);
  background: var(--gradient);
  color: white;
}

.mobile-nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-items {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  flex: 1;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}

.mobile-nav a i {
  width: 20px;
  text-align: center;
}

.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--secondary);
}

/* بخش اصلی راهنما */

.help-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--text), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideUp 1s ease-out;
}

.page-subtitle {
  font-size: 1.4rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: slideUp 1s ease-out 0.2s both;
}

/* فهرست راهنما */
.help-nav {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  border: 1px solid rgba(139, 92, 246, 0.1);
  position: sticky;
  top: 120px;
  z-index: 100;
}

.help-nav-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.help-nav-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.help-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--secondary);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.4s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.help-nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.help-nav-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
}

.help-nav-link:hover::before {
  transform: scaleX(1);
}

.help-nav-link i {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.help-nav-link:hover i {
  transform: scale(1.2);
}

/* محتوای راهنما */
.help-content {
  background: var(--white);
  padding: 4rem 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.help-section {
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--secondary);
  animation: slideUp 0.6s ease-out;
}

.help-section:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-title i {
  color: var(--primary-light);
  font-size: 2.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-container {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.step-item {
  background: var(--secondary);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
  z-index: 2;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.step-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.step-image {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 1.5rem;
  border: 2px dashed var(--primary-light);
  transition: all 0.3s ease;
}

.step-image:hover {
  border-color: var(--primary);
  transform: scale(1.02);
}

.step-image i {
  font-size: 3.5rem;
  color: var(--primary-light);
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
}

.step-image:hover i {
  transform: scale(1.1);
  color: var(--primary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: var(--secondary);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.feature-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* باکس نکات مهم */
.tip-box {
  background: #f0f9ff;
  border: 1px solid #0ea5e9;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.tip-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: #0ea5e9;
}

.tip-box h4 {
  color: #0369a1;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.warning-box {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.warning-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: #f59e0b;
}

.warning-box h4 {
  color: #d97706;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
}

/* لیست ترم‌ها */
.terms-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.terms-list li {
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
  background: var(--secondary);
  border-radius: 8px;
  border-right: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.terms-list li:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(5px);
}

/* فوتر */
.neo-footer {
  background: #0f172a;
  color: var(--white);
  padding: 5rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  margin-bottom: 1.8rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.footer-contact {
  list-style: none;
  margin-bottom: 2rem;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.footer-contact i {
  width: 24px;
  color: var(--primary-light);
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(8px);
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

/* انیمیشن‌ها */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ریسپانسیو */
@media (max-width: 1200px) {
  .page-title {
    font-size: 3rem;
  }

  .help-container {
    padding: 1.5rem;
  }

  .help-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 992px) {
  .page-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .help-nav-links {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .help-hero {
    padding: 8rem 1rem 3rem;
    min-height: 40vh;
  }

  .help-container {
    padding: 1rem;
  }

  .help-content {
    padding: 2rem 1.5rem;
  }

  .help-nav {
    padding: 2rem 1.5rem;
    position: static;
  }

  .help-nav-links {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .step-item {
    padding: 2rem 1.5rem;
  }

  .step-number {
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .user-profile .user-info {
    display: none;
  }

  .user-profile {
    padding: 0.5rem;
  }

  .user-avatar {
    width: 36px;
    height: 36px;
  }

  .user-dropdown-menu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 20px 20px 0 0;
    margin: 0;
    transform: translateY(100%);
  }

  .user-dropdown-menu.show {
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 2rem;
  }

  .help-content {
    padding: 1.5rem 1rem;
  }

  .mobile-nav {
    width: 280px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .step-item {
    padding: 1.5rem;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .step-description {
    font-size: 1rem;
  }

  .feature-item {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .tip-box,
  .warning-box {
    padding: 1.5rem;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1.6rem;
  }

  .logo-icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 400px) {
  .page-title {
    font-size: 1.8rem;
  }

  .help-hero {
    padding: 7rem 1rem 2rem;
  }

  .help-content {
    padding: 1.25rem 0.75rem;
  }

  .section-title {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .section-title i {
    font-size: 2rem;
  }

  .step-item {
    padding: 1.25rem;
  }

  .step-number {
    top: -12px;
    right: -12px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .help-nav {
    padding: 1.5rem 1rem;
  }

  .help-nav-link {
    padding: 1rem;
  }

  .mobile-nav {
    width: 260px;
  }

  .btn-neo {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* انیمیشن‌ها */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
