* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #030108;

  background-image: 
    radial-gradient(circle at bottom left, rgba(40, 20, 70, 0.15) 0%, transparent 40%),
    radial-gradient(circle at bottom right, rgba(40, 20, 70, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, #090514 0%, #030108 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow-x: hidden;
}

.container {
  text-align: center;
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-placeholder {
  width: 100px;
  height: 100px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  background: rgba(255, 255, 255, 0.02);
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.07);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 span {
  color: #8b5cf6; 
}

.description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 400;
}

.moved-card {
  background: rgba(15, 10, 28, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.moved-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.world-icon-box {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
}

.moved-text .tag {
  color: #8b5cf6;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.moved-text h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.moved-text h2 a {
  color: #a78bfa;
  text-decoration: none;
}

.moved-text p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.explore-btn {
  background: #7c3aed;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.explore-btn:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 16px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.feature-icon {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  border-radius: 12px;
  color: #a78bfa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.socials-section {
  width: 100%;
  margin-bottom: 40px;
}

.socials-title {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 20px;
  font-weight: 500;
}

.socials-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.socials-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: all 0.2s ease;
}

.socials-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}


.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-heart {
  color: #8b5cf6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-sub {
  color: #64748b;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  
  .moved-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .explore-btn { 
    width: 100%; 
    justify-content: center; 
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}