/* Bowling Game Modal Custom Container */
.bowling-modal-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  background: #11141a;
  border-color: #a855f7;
}

/* Header & Score display */
.bowling-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-right: 28px;
}

.bowling-header h2 {
  font-size: 1.25rem;
  color: #ffffff;
}

#bowling-score {
  font-weight: 700;
  color: #a855f7;
  font-size: 1.1rem;
}

/* Canvas Styling */
#bowling-canvas {
  background: #1f1a17;
  border-radius: 8px;
  border: 2px solid #2d3748;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
  cursor: crosshair;
}

/* Controls */
.bowling-controls {
  margin-top: 14px;
  width: 100%;
}

.btn-sub {
  width: 100%;
  background: #252a34;
  color: #e2e8f0;
  border: 1px solid #4a5568;
  padding: 10px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-sub:hover {
  background: #323846;
  border-color: #a855f7;
  color: #ffffff;
}