.homepage {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.homepage a {
  color: #00e0ff;
  text-decoration: none;
}
.homepage a:hover {
  text-decoration: underline;
}

.homepage .hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(to bottom right, #1e1e2f, #121212);
  border-bottom: 1px solid #333;
}

.homepage .hero h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.homepage .hero-subtitle {
  font-size: 1.2rem;
  color: #bbbbbb;
  margin-bottom: 30px;
}

.homepage .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.homepage .cta-buttons .button {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.2s ease;
}

.homepage .button.primary {
  background-color: #00e0ff;
  color: #121212;
  border: none;
}
.homepage .button.primary:hover {
  background-color: #00b5cc;
}

.homepage .button.ghost {
  background-color: transparent;
  color: #00e0ff;
  border: 2px solid #00e0ff;
}
.homepage .button.ghost:hover {
  background-color: rgba(0, 224, 255, 0.1);
}

.homepage .feature-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
  background-color: #1e1e2f;
  border-bottom: 1px solid #333;
}

.homepage .feature {
  max-width: 280px;
  text-align: center;
}

.homepage .feature i {
  font-size: 2rem;
  color: #00e0ff;
  margin-bottom: 10px;
}

.homepage .feature h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.homepage .feature p {
  color: #cccccc;
  font-size: 0.95rem;
}

.homepage .about-preview {
  padding: 40px 20px;
  text-align: center;
}

.homepage .about-preview h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.homepage .about-preview p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1rem;
  color: #cccccc;
}

.homepage .about-preview .button.small {
  padding: 10px 20px;
  font-size: 0.95rem;
  background-color: #00e0ff;
  color: #121212;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}
.homepage .about-preview .button.small:hover {
  background-color: #00b5cc;
}

.homepage .homepage-footer {
  text-align: center;
  padding: 20px;
  background-color: #121212;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #333;
}
