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

body {
  background: #0b0a0c;
  color: #ffffff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(139, 92, 246, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: -1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.header-brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-launcher {
  background: #8b5cf6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-launcher:hover {
  background: #a78bfa;
  transform: translateY(-1px);
}

.user-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 13px;
  color: #a0a0a8;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-indicator:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
}

.content-center {
  text-align: center;
  max-width: 700px;
  width: 100%;
}

h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #696974;
  font-weight: 600;
  margin-bottom: 40px;
}

.description {
  font-size: 15px;
  color: #a0a0a8;
  margin-bottom: 36px;
  line-height: 1.7;
}

.search-container {
  position: relative;
  margin-bottom: 32px;
}

.search-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(20, 19, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search-input::placeholder {
  color: #4a4a52;
}

.search-input:focus {
  background: rgba(24, 23, 27, 0.9);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.3);
}

.button-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #8b5cf6;
  color: white;
  border-color: #8b5cf6;
}

.btn-primary:hover {
  background: #a78bfa;
  border-color: #a78bfa;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

footer {
  padding: 28px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #696974;
  font-size: 12px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

footer a {
  color: #8b5cf6;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #a78bfa;
}

.footer-divider {
  margin: 0 8px;
  opacity: 0.3;
}

@media (max-width: 768px) {
  header {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  h1 {
    font-size: 36px;
  }

  main {
    padding: 40px 20px;
  }

  .content-center {
    max-width: 100%;
  }

  .button-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  footer {
    padding: 20px;
    font-size: 11px;
  }
}


.hero-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  animation: fadeIn 0.8s ease-out;
}

.header-logo-svg {
  transition: transform 0.3s ease;
}

.header-brand:hover .header-logo-svg {
  transform: rotate(5deg) scale(1.05);
}

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