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

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #ddd;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh
}

.container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  flex: 1
}

.hero {
  position: relative;
  width: 100vw;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  border-bottom: 2px solid #333
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25));
  z-index: 2
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start
}

.hero-left {
  max-width: 55%;
  opacity: 0;
  animation: fadeInTitle 0.6s ease forwards
}

.hero-left h1 {
  font-family: 'Verdana', sans-serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #ff5c5c
}

.hero-left p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  opacity: 0;
  animation: fadeInText 1s ease forwards;
  animation-delay: 0.7s
}

.hero-right {
  max-width: 35%;
  background: rgba(26, 26, 26, 0.85);
  border-radius: 5px;
  padding: 10px 15px;
  border: 1px solid #333
}

.hero-right h2 {
  color: #ff5c5c;
  margin-bottom: 10px
}

.hero-right ul {
  list-style: disc inside;
  margin-left: 0;
  color: #ddd
}

.search-wrapper {
  margin: 40px auto 20px auto;
  max-width: 400px;
  display: flex;
  flex-direction: column
}

.search-wrapper label {
  margin-bottom: 10px;
  font-weight: bold;
  color: #ff5c5c;
  font-size: 1rem
}

.search-wrapper input {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  outline: none;
  font-size: 1rem
}

.cards-wrapper {
  margin-top: 30px
}

.cards-wrapper .cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.cards-wrapper .card {
  background: #1a1a1a;
  border: 1px solid #333;
  flex: 1 1 calc(33% - 15px);
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease
}

.cards-wrapper .card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 5px
}

.cards-wrapper .card a {
  color: #ff5c5c;
  text-decoration: none;
  font-weight: bold
}

.cards-wrapper .card:hover {
  border-color: #ff5c5c
}

.cards-wrapper .card.highlight {
  border-color: #ffaaaa;
  background-color: rgba(255, 92, 92, 0.2);
  box-shadow: 0 0 15px rgba(255, 92, 92, 0.5);
  transform: scale(1.02)
}

footer {
  background: #111;
  border-top: 2px solid #333;
  padding: 20px;
  text-align: center;
  margin-top: auto
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto
}

.footer-buttons a button {
  background: #ff5c5c;
  color: #111;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s
}

.footer-buttons a button:hover {
  background: #e04b4b
}

.points-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  color: #fff;
  font-size: 0.95rem;
}

.points-table th,
.points-table td {
  border: 1px solid #333;
  padding: 8px 10px;
  text-align: left;
}

.points-table th {
  background-color: #1a1a1a;
  color: #ff5c5c;
}

.points-table tr:nth-child(even) {
  background-color: rgba(255, 92, 92, 0.05);
}

.points-table tr:hover {
  background-color: rgba(255, 92, 92, 0.1);
}

.back-button-wrapper {
  margin: 20px 0;
}

.back-button {
  background: #ff5c5c;
  color: #111;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.back-button:hover {
  background: #e04b4b;
}

@keyframes fadeInTitle {
  from {
    opacity: 0;
    transform: translateY(-10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}