/* Stratégies de pronostic : profils, budget, cartes de paris */

.strategy-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.profile-buttons { display: flex; gap: 7px; }

.panel .profile-button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 10px;
  padding: 11px 15px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .18s, color .18s, background .18s, box-shadow .18s;
  box-shadow: none;
}

.panel .profile-button:hover { border-color: var(--line-strong); color: var(--text); transform: none; filter: none; box-shadow: none; }

.panel .profile-button.active {
  background: var(--lime);
  border-color: var(--lime);
  color: #102014;
  box-shadow: var(--glow-lime);
}

.budget-control {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.budget-control select {
  display: block;
  margin-top: 6px;
  background: var(--panel-3);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  padding: 10px 34px 10px 12px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .2s;
}

.budget-control select:hover { border-color: var(--lime); }

.strategy-intro {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--panel-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.risk-gauge { width: 10px; height: 38px; border-radius: 6px; background: var(--lime); box-shadow: 0 0 10px rgba(200, 255, 98, .35); }
.risk-gauge.medium { background: var(--gold); box-shadow: 0 0 10px rgba(243, 199, 97, .35); }
.risk-gauge.high { background: var(--red); box-shadow: 0 0 10px rgba(255, 124, 112, .35); }

.strategy-intro strong, .strategy-intro span { display: block; }
.strategy-intro span { font-size: 11px; color: var(--muted); margin-top: 3px; }

.allocation { font-size: 12px; color: var(--cyan); text-align: right; }

.bet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

.bet-card {
  background: linear-gradient(150deg, #13271f, #0b1713 75%);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 16px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.bet-card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow-1); }

.bet-card header { display: flex; justify-content: space-between; gap: 8px; }
.bet-card h3 { font-size: 14px; margin: 0; }
.bet-card .stake { color: var(--gold); font-size: 12px; font-weight: 900; }

.bet-card small { display: block; color: var(--muted); margin: 6px 0 13px; min-height: 28px; line-height: 1.5; }

.selection-numbers { display: flex; gap: 5px; flex-wrap: wrap; }

.selection-number {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #263c32;
  border: 1px solid var(--line-strong);
  font-weight: 900;
}

.selection-number.primary { background: var(--lime); border-color: var(--lime); color: #102014; box-shadow: 0 0 10px rgba(200, 255, 98, .3); }

.confidence-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 13px;
  padding-top: 10px;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.responsible-note { font-size: 10px; color: var(--muted-2); margin: 14px 0 0; line-height: 1.6; }

@media (max-width: 950px) {
  .bet-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .strategy-controls { align-items: stretch; flex-direction: column; }
  .profile-buttons { overflow: auto; padding: 2px; }
  .profile-button { flex: 0 0 auto; }
  .bet-grid { grid-template-columns: 1fr; }
  .strategy-intro { grid-template-columns: auto 1fr; }
  .allocation { grid-column: 2; text-align: left; }
}
