/* Apple of Fortune Styling - Matching Image 3 (10 Rows up to x349.68) */
.apple-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.apple-board-panel {
  padding: 14px 10px;
  background: radial-gradient(circle at center, #0B331E 0%, #051A10 100%);
  border: 1.5px solid rgba(0, 230, 118, 0.35);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 230, 118, 0.15);
}

.apple-board {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.apple-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.apple-row {
  display: grid;
  grid-template-columns: 62px repeat(5, 1fr);
  gap: 6px;
  align-items: center;
  padding: 3px 4px;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.apple-row.active-target-row {
  background: rgba(0, 230, 118, 0.12);
  outline: 1.5px dashed rgba(0, 230, 118, 0.6);
}

.multiplier-badge {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.35);
  border-radius: 18px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #00E676;
  transition: all 0.3s ease;
  user-select: none;
}

.multiplier-badge.active-mult {
  background: #00E676;
  color: #000000;
  border-color: #FFFFFF;
  box-shadow: 0 0 14px rgba(0, 230, 118, 0.9);
  font-weight: 900;
  transform: scale(1.05);
}

.apple-cell {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: radial-gradient(circle, #B85C28 0%, #8A3D14 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2), 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  user-select: none;
}

.apple-cell.safe-apple {
  background: radial-gradient(circle at center, #00E676 0%, #008040 100%);
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.7);
}

@keyframes applePop {
  0% { transform: scale(0.4); opacity: 0.4; }
  60% { transform: scale(1.25); }
  100% { transform: scale(1); opacity: 1; }
}

.btn-secondary {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}
