body {
  background-color: #000000;
  overflow-x: hidden;
  color: #b8b8b8;
}

.back {
  margin-top: 0;
}
.title {
  width: 100%;
  display: flex;
  justify-content: center;
}

h1 {
  margin-top: 2rem;
  border-bottom: solid 2px #013f1b;
  font-size: 3.3vw;
  border-radius: 1px;
}

svg {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
main {
  padding: 3rem;
}

.seasons {
  margin-top: 3rem;
  width: 80%;
  display: flex;
  flex-direction: row;
}

.seasons > div {
  width: 50%;
  text-align: center;
}

.seasons div h2 {
  font-size: 3vw;
  margin: 8px 0;
}

.seasons div span {
  font-size: 2vw;
  margin-bottom: 1rem;
}

.card {
  height: 260px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 80%;
  background-color: #111111;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #374151;
  border-radius: 8px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4ade80, #22c55e);
}

.card:hover {
  border-color: #4ade80;
}

.card:hover {
  transform: scale(1.1);
}

.card > h3 {
  font-size: 2vw;
}

.card > p {
  font-size: clamp(12px, .9vw, 1vw);
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis; 
  display: -webkit-box; 
  -webkit-line-clamp: clamp(4,3,3); 
  line-clamp: 3; 
  -webkit-box-orient: vertical;
}

.s1Cards,
.s2Cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card > a > button {
  padding: 4px;
  min-width: 10rem;
  margin-bottom: 8px;
  background-color: #008812;
  border: none;
  border-radius: 16px;
  color: white;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.card > a > button:hover {
  transform: scale(1.1);
}

.card > a > button:active {
  transform: scale(0.95);
}
