/* Unified style for Gerçek Oyun & Demo Oyun buttons */
.frame__btns .frame__btn,
.frame__btns .frame__play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: none !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: #121212 !important;
  background: linear-gradient(180deg, #f3a84d 0%, #e68b22 70%, #a85f05 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.frame__btns .frame__btn:hover,
.frame__btns .frame__play:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 20px rgba(230, 139, 34, 0.45);
}

.frame__btns .frame__btn:active,
.frame__btns .frame__play:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.25);
}

.frame__btns .frame__play .svg-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Frame action buttons */
.frame__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.frame__btns button {
  flex: 1 1 0;
  min-width: 190px;
  justify-content: center;
}

.frame__btns button::before {
  content: '';
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #121212;
}

.frame__btns .frame__play .svg-icon {
  display: none; /* hide original play icon */
}