/* Base Styles */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0e0e12;
  color: #e0e0e0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #101217;
  padding: 20px 0;
  border-bottom: 1px solid #1f1f1f;
}

header h1 {
  color: #00ffd1;
  font-size: 2rem;
  display: inline;
}

nav {
  float: right;
}

nav a {
  color: #00ffd1;
  text-decoration: none;
  margin-left: 30px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1600267165619-42c9b1751d66?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #00ffd1;
  padding: 20px;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta {
  background-color: #00ffd1;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.cta:hover {
  background-color: #00c3a5;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  color: #00ffd1;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.card {
  background-color: #191c24;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #00ffd1;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #101217;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #1f1f1f;
  font-size: 0.9rem;
  color: #888;
}

