* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/*======= CSAPATOK LISTA ========*/
.csapatok-container {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-gold);
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--primary-red);
}

.csapatok-lista {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0;
}

.csapatok-lista li {
  display: flex;
}

.csapatok-lista li a {
  color: var(--primary-light);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  background-color: var(--primary-red);
  padding: 15px 20px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;      
  justify-content: center; 
  box-shadow: 0 3px 6px var(--shadow-color);
}

.csapatok-lista li a:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px var(--shadow-color);
}

.csapatok-lista li a i {
  margin-right: 12px;
  font-size: 1.2em;
}

nav {
  margin-top: 10px;
  background-color: var(--bg-light);
  padding: 1.5rem 2rem;
  padding-bottom: 0px;
}

nav ul {
  list-style-type: none;
  margin-top: 10px;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
}

nav ul li a {
  color: var(--primary-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: var(--primary-red);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul li a:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #d62b2b;
}

@media (max-width: 768px) {
  .csapatok-lista {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}
/*======= CSAPATOK LISTA VÉGE ========*/