:root {
  --dark-bg: #2e2e2e;
  --darker-bg: #1a1a1a;
  --yellow: #ffd700;
  --yellow-hover: #ffed4e;
  --text-muted: #a0a0a0;
  --card-bg: #3a3a3a;
  --border-color: #4a4a4a;
}

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

body {
  background-color: var(--dark-bg);
  color: var(--yellow);
  font-family: 'Roboto Mono', monospace;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  background-color: var(--darker-bg);
  border-bottom: 2px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-logo:hover {
  color: var(--yellow-hover);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--yellow);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--yellow-hover);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Tools Section */
.tools-section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--yellow);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tool-card {
  background-color: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--yellow);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.tool-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.tool-card.coming-soon {
  opacity: 0.6;
  cursor: default;
}

.tool-card.coming-soon:hover {
  transform: none;
  border-color: var(--border-color);
  box-shadow: none;
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tool-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.tool-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tool-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  background-color: var(--yellow);
  color: var(--dark-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-warning {
  background-color: var(--text-muted);
}

.tool-cta {
  color: var(--yellow);
  font-weight: 700;
  align-self: flex-start;
}

/* Mission Section */
.mission-section {
  padding: 4rem 0;
  text-align: center;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.mission-content strong {
  color: var(--yellow);
}

/* Footer */
.footer {
  background-color: var(--darker-bg);
  border-top: 2px solid var(--yellow);
  margin-top: 4rem;
  padding: 2rem;
  text-align: center;
}

.footer-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.footer-disclaimer {
  font-size: 0.75rem;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
}