* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #fff;
  overflow-x: hidden;
  background-color: #001f54;
}

/* HEADER */
.header {
  background-color: #001f54;
  text-align: center;
  padding: 1rem;
  font-weight: bold;
}

.yellow {
  color: #fbd300;
}

.blue {
  color: #9bd2ff;
}

/* MAIN SECTION */
.main {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.4);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 31, 84, 0.6);
  z-index: -1;
}

.content {
  max-width: 600px;
  padding: 2rem;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

button {
  background-color: #fbd300;
  color: #001f54;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #ffd633;
}

footer {
  background-color: #001f54;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* CLUBS PAGE */
.club-section {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #001f54;
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.club-card {
  background: #0a2c72;
  border-radius: 10px;
  padding: 1.5rem;
  transition: 0.3s;
}

.club-card:hover {
  background: #103b92;
  transform: translateY(-5px);
}

.club-card h2 {
  color: #fbd300;
  margin-bottom: 0.5rem;
}

.club-card button {
  margin-top: 1rem;
}

/* PROFILE PAGES */
.profile-container {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #001f54;
}

.profile-container h1 {
  color: #fbd300;
}

.profile-container p {
  max-width: 700px;
  margin: 1rem auto;
  line-height: 1.6;
  color: #d8e4ff;
}

.back-button {
  margin-top: 2rem;
}
