/* css/style.css */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f3f4f6;
  margin: 0;
  padding: 0;
  color: #1f2937;
}

.container {
  max-width: 800px;
  margin: 30px auto;
  background-color: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}

header p {
  color: #6b7280;
  font-size: 1.125rem;
}

.fight-box {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid #e5e7eb;
}

.fight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.fight-number {
  font-size: 1.25rem;
  font-weight: 600;
}

.fight-time {
  color: #6b7280;
  font-size: 0.875rem;
}

.fighters {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.aka, .shiro {
  width: 48%;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
  transition: transform 0.2s;
}

.aka {
  background-color: #ef4444;
  color: white;
}

.shiro {
  background-color: #f3f4f6;
  color: #1f2937;
  border: 1px solid #e5e7eb;
}

.fight-info {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  margin-top: 10px;
}

.admin-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #111827;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.admin-button:hover {
  background-color: #374151;
}

.fight-details {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  font-size: 0.875rem;
  color: #6b7280;
}

.fight-details span {
  margin: 0 10px;
}

.category-badge {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

.next-fights {
  margin-top: 30px;
}

.next-fights h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
}

/* Animáció a küzdelem kártyákhoz */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fade-in 0.5s ease-out;
}

/* Mobilra optimalizálás */
@media (max-width: 640px) {
  .container {
    padding: 15px;
    margin: 15px;
  }
  
  .fighters {
    flex-direction: column;
    gap: 10px;
  }
  
  .aka, .shiro {
    width: 100%;
  }
}