/* ===== Global ===== */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #fff;
}

a {
  color: #fff;
  text-decoration: none;
}

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

/* ===== Navbar ===== */
.navbar {
  background-color: #111;
  padding: 15px 20px;
  border-bottom: 1px solid #333;
}

.navbar a {
  margin-right: 20px;
  font-weight: bold;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 300px;
  background: url("hero-ogba.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-text {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

/* ===== Cards ===== */
.card {
  background: #111;
  border: 1px solid #333;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
}

/* ===== Inputs ===== */
input, button {
  padding: 8px;
  margin: 5px 0;
  border-radius: 5px;
  border: none;
}

input {
  width: 100%;
  background: #222;
  color: #fff;
}

button {
  background: #fff;
  color: #000;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #ccc;
}

/* ===== Utility ===== */
.center {
  text-align: center;
}
