/* styles.css */
body {
  margin: 0;
  font-family: 'Courier New', Courier, monospace;
  background: #111;
  color: #eee;
}

header {
  background: #0f0f0f;
  padding: 20px;
  border-bottom: 2px solid #0ff;
  text-align: center;
}

header h1 {
  color: #0ff;
  font-size: 2.8em;
  margin: 0;
}

header p {
  margin-top: 5px;
  color: #aaa;
  font-style: italic;
}

nav {
  display: flex;
  justify-content: center;
  background: #1b1b1b;
  padding: 12px;
  border-bottom: 2px solid #0ff;
  flex-wrap: wrap;
  gap: 10px;
}

nav a {
  color: #0ff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 1.1em;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: #151515;
}

.hero h2 {
  color: #fff;
  font-size: 2.2em;
  margin-bottom: 10px;
}

.hero p {
  color: #ccc;
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto;
}

.featured {
  background: #181818;
  padding: 40px 20px;
  text-align: center;
}

.featured h2 {
  color: #0ff;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
  padding: 0 20px;
}

.product {
  background: #222;
  padding: 20px;
  border: 1px solid #444;
  border-radius: 8px;
  color: #eee;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product h3 {
  margin-top: 0;
  color: #0ff;
  font-size: 1.2em;
}

.product p {
  font-size: 0.95em;
  color: #ccc;
  flex-grow: 1;
}

.product button {
  margin-top: 15px;
  background: #0ff;
  border: none;
  padding: 10px 15px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  align-self: flex-start;
}

.product button:hover {
  background: #00dddd;
}

.info {
  padding: 40px 20px;
  background: #131313;
  max-width: 900px;
  margin: 0 auto;
}

.info h2 {
  color: #0ff;
  border-bottom: 1px solid #444;
  padding-bottom: 8px;
  margin-bottom: 15px;
  font-size: 1.6em;
}

.info ul {
  list-style-type: square;
  color: #ccc;
  padding-left: 20px;
  line-height: 1.6em;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0f0f0f;
  color: #555;
  font-size: 0.9em;
  border-top: 2px solid #0ff;
}
