/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 20px auto;
}

/* Navbar */
.navbar {
  background-color: #222;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.navbar .logo {
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #f39c12;
}

/* Hamburger Menü */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hero / Giriş Alanı */
.hero {
  text-align: center;
  padding: 30px 0;
}

.hero-img {
  width: 200px;
  margin-top: 20px;
}

/* Tablolar */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table th,
table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

table th {
  background-color: #eee;
}

/* Takımlar */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.team-card {
  background-color: white;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.team-card img {
  width: 80px;
  height: auto;
}

.team-card p {
  margin-top: 10px;
  font-weight: bold;
}

/* Forum Formu */
.forum-form {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.forum-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.forum-form input,
.forum-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.forum-form button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #f39c12;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.forum-form button:hover {
  background-color: #d35400;
}

/* Yorumlar */
.yorumlar {
  margin-top: 30px;
}

.yorumlar h2 {
  margin-bottom: 10px;
}

.yorumlar .yorum {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 10px;
  border-left: 4px solid #f39c12;
  border-radius: 4px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px 0;
  background-color: #222;
  color: white;
  margin-top: 40px;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: #222;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
    color: white;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .hero-img {
    width: 150px;
  }
}
/* Giriş Formu */
    .login-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .login-form label {
      font-weight: bold;
      color: #555;
    }

    .login-form input {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    .login-form input:focus {
      border-color: #f39c12;
      outline: none;
    }

    .login-form button {
      padding: 12px;
      background-color: #f39c12;
      color: white;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      border-radius: 4px;
      transition: background-color 0.3s;
    }

    .login-form button:hover {
      background-color: #e67e22;
    }
/* Kayıt Formu */
    .register-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .register-form label {
      font-weight: bold;
      color: #555;
    }

    .register-form input {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    .register-form input:focus {
      border-color: #f39c12;
      outline: none;
    }

    .register-form button {
      padding: 12px;
      background-color: #f39c12;
      color: white;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      border-radius: 4px;
      transition: background-color 0.3s;
    }

    .register-form button:hover {
      background-color: #e67e22;
    }
    