body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f4f7f9;
  color: #333;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px;
  background: white;
}
.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}
.game-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}
.game-info img {
  max-width: 80px;
  border-radius: 10px;
}
.badges {
  margin-top: 5px;
}
.badge {
  background-color: #e5f5ec;
  color: #4caf50;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
  margin-right: 5px;
}
.rewards-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.reward, .duration {
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  width: 120px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reward {
  font-weight: bold;
  color: #17a789;
  font-size: 15px;
}
.duration strong {
  font-size: 16px;
}
.play-btn {
  background-color: #ffa500;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Üzerine gelince */
.play-btn:hover {
  background-color: #ff8c00; /* daha koyu turuncu */
}

/* Tıklanma anı */
.play-btn:active {
  background-color: #e67300; /* daha da koyu bir turuncu */
}

/* Sadece mobil cihazlar için (768px ve altı) */
@media (max-width: 768px) {
  .play-btn {
    width: 100%;
  }
}
.description {
  margin-top: 20px;
  font-size: 15px;
}
.instructions {
  margin-top: 30px;
}
.instructions h3 {
  margin-bottom: 15px;
}
.step {
  background-color: white;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.step-info {
  display: flex;
  flex-direction: column;
  max-width: 87%;
}
.step-title {
  font-weight: 600;
}
.step-meta {
  font-size: 13px;
  color: #555;
  margin-top: 5px;
}
.step-reward {
  font-weight: bold;
}
.step-number {
  background: #e0e0e0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-weight: bold;
  margin-right: 10px;
}
.step-wrapper {
  display: flex;
  align-items: center;
}

.dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 100;
  text-align: center;
}
    
@media (max-width: 600px) {
  .modal {
    width: 80%;
  }
}

.btn {
  background-color: #ffa500;
  color: white;
  padding: 12px 25px;
  border: none;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

/* Üzerine gelince */
.btn:hover {
  background-color: #ff8c00;
}

/* Tıklanma anı */
.btn:active {
  background-color: #e67300;
}
