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

html {
  background-color: #1a1a1a;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #1a1a1a;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  text-align: center;
  max-width: 800px;
}

h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  font-weight: 400;
}

.products {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  background: #3a3a3a;
  color: #e0e0e0;
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border: 1px solid #4a4a4a;
}

.product-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.status-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  background: #4a4a4a;
  color: #ffa500;
  font-weight: 600;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-color: #4a9eff;
}

.product-card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #4a9eff;
  font-weight: 600;
}

.product-card .status-badge {
  display: inline-block;
  margin: 0 0 1rem 0;
}

.product-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
}

.contact {
  margin-top: 3rem;
  padding: 2rem;
  background: #3a3a3a;
  border-radius: 12px;
  border: 1px solid #4a4a4a;
}

.contact h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #4a9eff;
  font-weight: 600;
}

.contact p {
  font-size: 1rem;
  color: #b0b0b0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.contact a {
  color: #4a9eff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.contact a:hover {
  color: #6bb3ff;
}

footer {
  position: fixed;
  bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .tagline {
    font-size: 1.2rem;
  }
  .product-card {
    width: 100%;
  }
}
