@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

body {
  background: #13141C;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #FBEAFD;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.hero {
  background: transparent;
  padding: 20px;
  width: 100%;
  max-width: 100%;
  text-align: center;
  animation: fadeIn 0.6s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.logo {
  font-size: 48px;
  font-weight: 700;
  color: #BD79FB;
  margin: 30px 0 20px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
  font-size: 24px;
  color: #AB94C2 !important;
  margin-bottom: 15px;
  font-weight: 500;
}

.description {
  font-size: 16px;
  color: #FBEAFD;
  opacity: 0.8;
  margin-bottom: 30px;
  max-width: 479px;
  line-height: 1.5;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #BD79FB;
  color: #13141C;
  border: none;
  width: 250px;
  height: 42px;
  opacity: 1;
  padding: 0 30px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 40px;
  font-family: inherit;
  box-sizing: border-box;
  text-align: center;
  line-height: 1;
}

.cta-button:hover {
  background: #8B5CF6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.search-input {
  width: 100%;
  padding: 10px 20px 10px 20px;
  border: 1px solid #4A4A6A;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  background: #2D2D3A;
  color: #E6E6EA;
  height: 46px;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-input:focus {
  border-color: #9F7AEA;
  background: #2D2D3A;
  box-shadow: 0 0 0 1px #9F7AEA;
}

.search-input::placeholder {
  color: #8E8EA9;
}

.search-icon {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 18px;
  height: 18px;
  color: #8E8EA9;
  z-index: 1;
}

.icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 160px 0 40px 0;
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: #FBEAFD;
  flex: 0 0 auto;
}

.icon-item:hover {
  background: rgba(159, 122, 234, 0.2);
  transform: translateY(-3px);
}

.icon-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  object-fit: contain;
}

.icon-item span {
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}

.footer {
  margin: 0px 0 120px;
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  color: #AB94C2;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:not(:last-child)::after {
  content: "|";
  margin-left: 5px;
  color: #4A4A6A;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 15px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .logo {
    font-size: 32px;
    margin: 20px 0;
  }
  
  .icon-grid {
    gap: 10px;
    padding: 0 10px;
    max-width: 500px;
    margin: 20px auto 0;
  }
  
  .icon-item {
    padding: 12px 10px;
    width: calc(25% - 10px);
  }
  
  .icon-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .icon-item span {
    font-size: 12px;
    margin-top: 4px;
  }
}
