body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #fff;
  letter-spacing: 4px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background-color: #222;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header h1 {
  font-size: 32px;
  color: #fff;
}

.site-header ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.site-header a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.logo {
  width: 100px;
  height: 100px;
  background-image: url("images/Favorit_logo.png");
  background-size: 100% 100%;; /* Пропорции изображения сохранены */
  max-width: 100%;
  max-height: 100%;
  background-repeat: no-repeat;
}

.news {
    display: flex;
    /* flex: 1 1 300px; */
    max-width: 100%;
    max-height: 100%;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}

.hero-banner {
	display: flex;
	background-color: #000;
	flex-direction: row;
	background-image: url("images/layer.png");
    background-size: 100% 100%;; /* Пропорции изображения сохранены */
	background-repeat: no-repeat;
  	max-width: 100%;
	height: 350px;
	border-radius: 0% 0% 30px 30px;
} 

.hero-banner img {
	max-width: 50%;
	height: auto;
	margin-top: -50px;
	margin-left: 60px;
}

.hero-text {
width: auto;
	height: auto;
  flex: 1 1 300px;
  text-align: center;
  margin-top: 50px;

}

.hero-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background-color: #c00;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
}

.latest-news, .next-game, .our-players, .schedule, .donate  {
  padding: 40px 0;
  background-color: #1a1a1a;
  margin-top: 20px;
  text-align: center;

}

.next-game .game-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
 }

.next-game img {
  width: 60px;
  height: 60px;
  background-color: #fff;
}

.calendar {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.calendar thead {
  /*background: #004080;*/
  background: #b82e11;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}

.calendar th, .calendar td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.calendar td {
  font-size: 15px;
  color: #333;
}

.calendar tbody tr:nth-child(odd) {
  background: #eef3f8;
  
}

.calendar td:nth-child(2),
.calendar td:nth-child(3),
.calendar td:nth-child(4) {
  /*font-weight: bold;
  color: #004080;*/
}

.calendar td:last-child {
  font-weight: 500;
  color: #222;
}

.calendar td[rowspan] {
  background: #dbe6f5;
  font-weight: bold;
  color: #003366;
  vertical-align: middle;
}

