/* Blackjack Statistics Tool */
.stats-tool { padding: 48px 0; }
.stats-tool .stats-tool-title { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.stats-tool .stats-tool-desc { font-size: 15px; color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; }
.stats-tool .stats-tool-controls { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
.stats-tool .stats-control-group { display: flex; flex-direction: column; gap: 8px; }
.stats-tool .stats-control-label { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #d4a853; }
.stats-tool .stats-hand-selector { display: flex; gap: 8px; flex-wrap: wrap; }
.stats-tool .stats-card-btn { display: flex; align-items: center; justify-content: center; width: 48px; height: 64px; background: rgba(255, 255, 255, 0.06); border: 2px solid rgba(255, 255, 255, 0.12); border-radius: 6px; cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease; font-size: 18px; font-weight: 800; color: #ffffff; }
.stats-tool .stats-card-btn:hover { border-color: rgba(212, 168, 83, 0.4); background: rgba(212, 168, 83, 0.08); }
.stats-tool .stats-card-btn.active { border-color: #d4a853; background: rgba(212, 168, 83, 0.15); transform: scale(1.05); }
.stats-tool .stats-card-btn.red { color: #c41e3a; }
.stats-tool .stats-calculate { display: inline-block; padding: 12px 32px; background: #c41e3a; color: #ffffff; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; transition: background 0.2s ease; }
.stats-tool .stats-calculate:hover { background: #d4253f; }
.stats-tool .stats-results { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; padding: 24px; }
.stats-tool .stats-results-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: #d4a853; }
.stats-tool .stats-results-hand { font-size: 15px; color: rgba(255, 255, 255, 0.7); margin-bottom: 20px; }
.stats-tool .stats-results-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.stats-tool .stats-result-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 6px; transition: border-color 0.3s ease; }
.stats-tool .stats-result-item.recommended { border-color: rgba(212, 168, 83, 0.3); background: rgba(212, 168, 83, 0.06); }
.stats-tool .stats-result-action { font-size: 15px; font-weight: 700; color: #ffffff; }
.stats-tool .stats-result-badge { display: inline-block; padding: 2px 8px; background: #d4a853; color: #0a1a12; font-size: 10px; font-weight: 700; border-radius: 3px; margin-left: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.stats-tool .stats-result-ev { font-size: 14px; font-weight: 600; }
.stats-tool .stats-result-ev.positive { color: #66cc88; }
.stats-tool .stats-result-ev.negative { color: #ff6b6b; }
.stats-tool .stats-result-ev.neutral { color: rgba(255, 255, 255, 0.5); }
.stats-tool .stats-note { font-size: 12px; color: rgba(255, 255, 255, 0.4); margin-top: 16px; }
@media (min-width: 768px) {
  .stats-tool { padding: 64px 0; }
  .stats-tool .stats-tool-controls { grid-template-columns: 1fr 1fr; }
  .stats-tool .stats-results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .stats-tool .stats-results-grid { grid-template-columns: repeat(3, 1fr); }
}
