

:root {
  --court-orange: #d35400;
  --dark-orange: #a84300;
  --basketball-brown: #6e2c00;
  --court-wood: #f5c16c;
  --line-white: #ffffff;
  --bg-dark: #3b3333;
}

/* Global styles */
body {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  background: var(--bg-dark);
  color: var(--line-white);
}

/* Header */
header {
  background: linear-gradient(135deg, var(--court-orange), var(--dark-orange));
  padding: 20px;
  text-align: center;
  border-bottom: 4px solid var(--line-white);
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
}

/* Navigation */
nav {
  background: var(--basketball-brown);
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

nav a {
  color: var(--line-white);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: var(--court-wood);
}

/* Main content */
main {
  padding: 30px;
}

/* Card style (like player cards or posts) */
.card {
  background: linear-gradient(145deg, #1c1c1c, #222);
  border-left: 6px solid var(--court-orange);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(189, 117, 2, 0.553);
}

.card h2 {
  margin-top: 0;
  color: var(--court-orange);
}

/* Buttons */
button {
  background: var(--court-orange);
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

button:hover {
  background: var(--dark-orange);
}

/* Basketball lines effect */
.court-lines {
  border: 2px solid var(--line-white);
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.court-lines::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--line-white);
  border-radius: 50%;
  top: -50px;
  left: calc(50% - 50px);
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: var(--basketball-brown);
  margin-top: 30px;
}