:root {
  --bg-page: #080c10;
  --bg-elevated: #0b1118;
  --bg-card: #0e161e;
  --accent-green: #1db954;
  --accent-green-hover: #1ed760;
  --accent-blue: #3da5f4;
  --text-primary: #ffffff;
  --text-muted: #94a3b8;
  --border-subtle: rgba(148, 163, 184, 0.12);
  --border-accent-green: rgba(29, 185, 84, 0.35);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-primary);
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px;
  background: var(--bg-elevated);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.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__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-green);
  background: rgba(29, 185, 84, 0.12);
  border: 1px solid var(--border-accent-green);
  border-radius: 14px;
}

.game-info__icon i {
  line-height: 1;
}

.badges {
  margin-top: 5px;
}

.badge {
  background-color: rgba(29, 185, 84, 0.15);
  color: var(--accent-green);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  margin-right: 5px;
  border: 1px solid rgba(29, 185, 84, 0.25);
}

.rewards-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.reward,
.duration {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 20px;
  text-align: center;
  width: 120px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-card);
  color: var(--text-muted);
}

.reward {
  font-weight: bold;
  color: var(--accent-green);
  font-size: 20px;
}

.duration strong {
  font-size: 16px;
  color: var(--text-primary);
}

.play-btn {
  background-color: var(--accent-green);
  color: var(--text-primary);
  border: none;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.play-btn:hover {
  background-color: var(--accent-green-hover);
}

/* Sadece mobil cihazlar için (768px ve altı) */
@media (max-width: 768px) {
  .play-btn {
    width: 100%;
  }
  .play-btn--in-step,
  .btn--in-step {
    width: 100%;
  }
}

.description {
  margin-top: 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

.instructions {
  margin-top: 30px;
}

.instructions h3 {
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 600;
}

.step {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.step.step-one {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.step-one__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.step-one .step-info {
  max-width: none;
  flex: 1;
  min-width: 0;
}

.step-one__foot {
  width: 100%;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.step-one__foot .step-action-wrap {
  margin-top: 0;
  width: 100%;
}

.step-one .play-btn--in-step,
.step-one .btn--in-step {
  width: 100%;
  display: block;
  line-height: 1.4;
  padding: 12px 18px;
  font-size: 15px;
  white-space: normal;
  text-align: center;
}

.step-info {
  display: flex;
  flex-direction: column;
  max-width: 87%;
}

.step-title {
  font-weight: 600;
  color: var(--text-primary);
}

.step-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 5px;
}

.step-reward {
  font-weight: bold;
  color: var(--accent-green);
}

.step-number {
  background: rgba(61, 165, 244, 0.15);
  color: var(--accent-blue);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-weight: bold;
  margin-right: 10px;
  border: 1px solid rgba(61, 165, 244, 0.35);
  font-size: 12px;
}

.step-wrapper {
  display: flex;
  align-items: center;
}

.step-action-wrap {
  margin-top: 12px;
  width: 100%;
  max-width: 100%;
}

.play-btn--in-step,
.btn--in-step {
  display: inline-block;
  margin-top: 0;
  align-self: flex-start;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 9999px;
  text-align: center;
  box-sizing: border-box;
  background-color: var(--accent-green);
  color: var(--text-primary);
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.play-btn--in-step:hover,
.btn--in-step:hover {
  background-color: var(--accent-green-hover);
}

.btn--close-page {
  cursor: pointer;
}

.btn {
  background-color: var(--accent-green);
  color: var(--text-primary);
  padding: 12px 28px;
  border: none;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: var(--accent-green-hover);
}
