/* === module: couple_bet === */
.couple-bet-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.couple-bet-overlay.active { display: flex; }

.couple-bet-container {
  width: 600px;
  max-width: 90%;
  max-height: 85vh;
  background: #0f0f15;
  border: 2px solid #fcc419;
  border-radius: 16px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(252, 196, 25, 0.3);
}

.couple-bet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: linear-gradient(135deg, #2a1a0a, #1a1a22);
  border-bottom: 2px solid #fcc419;
}

.couple-bet-header h3 {
  margin: 0;
  font-size: 20px;
  color: #fcc419;
}

.bet-close-btn {
  background: #3a3a4a;
  border: none;
  color: #aaa;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.bet-close-btn:hover {
  background: #4a4a5a;
  color: #ddd;
}

.couple-bet-body {
  padding: 24px;
}

.bet-desc {
  padding: 16px;
  background: #1a1a22;
  border-left: 3px solid #fcc419;
  border-radius: 6px;
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 24px;
}

.bet-section {
  margin-bottom: 24px;
}

.bet-label {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 12px;
  font-weight: 500;
}

.bet-couple-select {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bet-char-select {
  flex: 1;
  padding: 12px;
  background: #1a1a22;
  border: 1px solid #3a3a4a;
  border-radius: 8px;
  color: #ddd;
  font-size: 14px;
  cursor: pointer;
}

.bet-char-select:focus {
  outline: none;
  border-color: #fcc419;
}

.bet-heart {
  font-size: 24px;
  color: #ff6b6b;
}

.bet-amount-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bet-amount-radio {
  cursor: pointer;
}

.bet-amount-radio input[type="radio"] {
  display: none;
}

.bet-amount-card {
  padding: 16px;
  background: #1a1a22;
  border: 2px solid #3a3a4a;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s;
}

.bet-amount-radio input[type="radio"]:checked + .bet-amount-card {
  background: #2a2510;
  border-color: #fcc419;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(252, 196, 25, 0.2);
}

.bet-amount-card:hover {
  border-color: #fcc419;
  transform: translateY(-2px);
}

.bet-amount-title {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 8px;
}

.bet-amount-value {
  font-size: 20px;
  color: #fcc419;
  font-weight: 600;
  margin-bottom: 8px;
}

.bet-amount-return {
  font-size: 11px;
  color: #888;
}

.bet-condition {
  padding: 16px;
  background: #1a1a22;
  border-radius: 8px;
  margin-bottom: 16px;
}

.bet-condition ul {
  margin: 12px 0;
  padding-left: 24px;
  color: #ddd;
  font-size: 13px;
  line-height: 1.8;
}

.bet-hint {
  margin-top: 12px;
  font-size: 12px;
  color: #888;
  font-style: italic;
}

.bet-balance {
  text-align: right;
  font-size: 14px;
  color: #aaa;
}

.bet-balance span {
  color: #51cf66;
  font-weight: 600;
}

.couple-bet-footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  background: #1a1a22;
  border-top: 1px solid #2a2a3a;
}

.bet-confirm-btn,
.bet-skip-btn {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.bet-confirm-btn {
  background: linear-gradient(135deg, #fcc419, #fd7e14);
  color: #1a1a22;
}

.bet-confirm-btn:hover {
  background: linear-gradient(135deg, #fd7e14, #fcc419);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(252, 196, 25, 0.4);
}

.bet-confirm-btn:disabled {
  background: #3a3a4a;
  color: #666;
  cursor: not-allowed;
  transform: none;
}

.bet-skip-btn {
  background: #2a2a3a;
  color: #aaa;
}

.bet-skip-btn:hover {
  background: #3a3a4a;
  color: #ddd;
}

.dialogue-tab-desc {
  padding: 16px;
  background: #1a1a22;
  border-radius: 8px;
  margin-bottom: 16px;
}

.dialogue-tab-desc p {
  margin: 0;
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

.execute-btn.dialogue {
  background: linear-gradient(135deg, #4a6fa5, #5a7fb5);
}

.execute-btn.dialogue:hover {
  background: linear-gradient(135deg, #5a7fb5, #6a8fc5);
}

/* === end module: couple_bet === */
