.hamburger-button{display:flex;flex-direction:column;justify-content:center;gap:5px;width:44px;height:44px;padding:10px;background:#ffffff1a;border:none;border-radius:var(--radius-md);cursor:pointer;transition:background .2s;z-index:1001}.hamburger-button:hover{background:#fff3}.hamburger-line{display:block;width:24px;height:3px;background:#fff;border-radius:2px;transition:transform .3s,opacity .3s}.hamburger-button.open .hamburger-line:nth-child(1){transform:rotate(45deg) translate(5px,6px)}.hamburger-button.open .hamburger-line:nth-child(2){opacity:0}.hamburger-button.open .hamburger-line:nth-child(3){transform:rotate(-45deg) translate(6px,-7px)}.menu-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#0009;z-index:1000;animation:fadeIn .2s ease-out}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.menu-panel{position:fixed;top:0;left:0;width:320px;max-width:85vw;height:100vh;background:var(--color-surface);box-shadow:var(--shadow-lg);display:flex;flex-direction:column;animation:slideIn .3s ease-out;overflow-y:auto}@keyframes slideIn{0%{transform:translate(-100%)}to{transform:translate(0)}}.menu-header{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;background:linear-gradient(135deg,var(--color-primary) 0%,var(--color-primary-dark) 100%);color:#fff}.menu-header h2{margin:0;font-size:1.5rem}.menu-close{background:#ffffff1a;border:none;color:#fff;font-size:2rem;width:44px;height:44px;border-radius:var(--radius-md);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s}.menu-close:hover{background:#fff3}.menu-items{list-style:none;padding:1rem 0;margin:0;flex:1}.menu-item{display:flex;align-items:center;gap:1rem;width:100%;padding:1rem 1.5rem;background:none;border:none;font-size:1rem;font-family:inherit;color:var(--color-text);cursor:pointer;transition:background .2s,color .2s;text-align:left}.menu-item:hover{background:var(--color-bg)}.menu-item.active{background:var(--color-primary);color:#fff}.menu-item.active .menu-icon{filter:none}.menu-icon{font-size:1.25rem;width:2rem;text-align:center}.menu-label{font-weight:500}.menu-footer{padding:1.5rem;border-top:1px solid var(--color-border)}.menu-footer p{margin:0;font-size:.875rem;color:var(--color-text-light);line-height:1.5}.menu-build-info{display:flex;gap:1rem;margin-top:.75rem;font-size:.75rem;color:var(--color-text-lighter);font-family:Courier New,monospace}@media (max-width: 768px){.menu-panel{width:100%;max-width:none}}.header{background:linear-gradient(135deg,var(--color-primary) 0%,var(--color-primary-dark) 100%);color:#fff;padding:2rem 0;box-shadow:var(--shadow-md)}.header-content{display:flex;align-items:center;justify-content:space-between;gap:1rem}.header-menu{flex-shrink:0}.header-text{flex:1;text-align:center}.header-spacer{width:44px;flex-shrink:0}.header-title{font-size:2rem;font-weight:700;margin:0 0 .25rem;color:#fff}.header-subtitle{font-size:1rem;margin:0;opacity:.9}@media (max-width: 768px){.header{padding:1.25rem 0}.header-title{font-size:1.25rem}.header-subtitle{font-size:.875rem}.header-spacer{display:none}.header-text{text-align:left;padding-right:.5rem}}.rule-selector{max-width:1100px;margin:0 auto}.rule-selector h2{margin-bottom:.5rem}.rule-selector h3{margin-top:1.5rem;margin-bottom:1rem;font-size:1.125rem;font-weight:600;color:var(--color-text)}.rule-tabs{display:flex;gap:.5rem;margin-top:1rem;margin-bottom:1.5rem;border-bottom:2px solid var(--color-border);padding-bottom:0}.rule-tab{padding:.75rem 1.5rem;background:none;border:none;border-bottom:3px solid transparent;margin-bottom:-2px;font-size:.9375rem;font-weight:600;color:var(--color-text-light);cursor:pointer;transition:all .2s ease}.rule-tab:hover{color:var(--color-text);background:var(--color-bg)}.rule-tab.active{color:var(--color-primary);border-bottom-color:var(--color-primary)}.presets-section{padding-top:.5rem}.presets-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}.preset-card{position:relative;background:var(--color-surface);border:2px solid var(--color-border);border-radius:var(--radius-lg);padding:1.25rem;text-align:left;cursor:pointer;transition:all .2s ease;display:flex;flex-direction:column;gap:.875rem;min-height:140px}.preset-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}.preset-card:active{transform:translateY(-1px)}.preset-card.preset-good{border-color:var(--color-success);background:linear-gradient(135deg,rgba(16,185,129,.05) 0%,transparent 100%)}.preset-card.preset-good:hover{border-color:var(--color-success);box-shadow:0 4px 12px #10b98133}.preset-card.preset-bad{border-color:var(--color-danger);background:linear-gradient(135deg,rgba(239,68,68,.05) 0%,transparent 100%)}.preset-card.preset-bad:hover{border-color:var(--color-danger);box-shadow:0 4px 12px #ef444433}.preset-card.preset-neutral{border-color:var(--color-border)}.preset-card.preset-neutral:hover{border-color:var(--color-primary);box-shadow:0 4px 12px #2563eb26}.preset-header{display:flex;align-items:flex-start;gap:.75rem}.preset-icon{font-size:2rem;line-height:1;flex-shrink:0}.preset-title{flex:1;min-width:0}.preset-name{font-weight:700;font-size:1rem;color:var(--color-text);line-height:1.2}.preset-location{font-size:.8125rem;color:var(--color-text-light);margin-top:.125rem}.preset-tags{display:flex;flex-wrap:wrap;gap:.375rem}.preset-tag{display:inline-block;padding:.25rem .5rem;border-radius:var(--radius-sm);font-size:.6875rem;font-weight:600;text-transform:uppercase;letter-spacing:.025em}.preset-tag.tag-good{background:#10b98126;color:var(--color-success)}.preset-tag.tag-bad{background:#ef444426;color:var(--color-danger)}.preset-tag.tag-neutral{background:var(--color-bg);color:var(--color-text-light)}.preset-badge{position:absolute;top:-.5rem;right:.75rem;padding:.25rem .625rem;border-radius:var(--radius-sm);font-size:.625rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em}.preset-badge.good{background:var(--color-success);color:#fff}.preset-badge.bad{background:var(--color-danger);color:#fff}.custom-rules-section{padding-top:.5rem}.rules-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem}.rule-item{display:flex;flex-direction:column;gap:.5rem}.rule-item label{font-weight:500;font-size:.875rem;color:var(--color-text)}.rule-item select{width:100%}.rule-item select:disabled{opacity:.6;cursor:not-allowed}.rule-note{font-size:.75rem;color:var(--color-text-lighter);font-style:italic}@media (max-width: 900px){.presets-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width: 600px){.presets-grid{grid-template-columns:1fr}.preset-card{min-height:auto}.rules-grid{grid-template-columns:1fr}}.strategy-chart{display:flex;flex-direction:column;gap:2rem}.chart-section{background:var(--color-surface);border-radius:var(--radius-md);padding:1.5rem;box-shadow:var(--shadow-sm)}.chart-section h3{margin:0 0 1rem;font-size:1.25rem}.chart-table-container{overflow-x:auto;-webkit-overflow-scrolling:touch}.chart-table{width:100%;border-collapse:separate;border-spacing:2px;font-size:.875rem;table-layout:fixed}.chart-table thead th{background:var(--color-primary);color:#fff;padding:.75rem .5rem;text-align:center;font-weight:600;border-radius:var(--radius-sm)}.chart-table tbody td{padding:.75rem .5rem;text-align:center;border-radius:var(--radius-sm)}.player-hand{font-weight:600;background:var(--color-bg);color:var(--color-text);min-width:50px;white-space:nowrap}.action-cell{font-weight:600;transition:transform .2s,box-shadow .2s;color:#fff;position:relative}.action-cell:hover{transform:scale(1.1);box-shadow:var(--shadow-md);z-index:10}.action-hit{background:#f59e0b}.action-stand{background:#dc2626}.action-double{background:#059669}.action-split{background:#2563eb}.action-surrender{background:#7c3aed}.action-cell.has-insurance:after{content:"";position:absolute;top:2px;right:2px;width:0;height:0;border-style:solid;border-width:0 8px 8px 0;border-color:transparent #fbbf24 transparent transparent}.chart-legend{background:var(--color-surface);border-radius:var(--radius-md);padding:1.5rem;box-shadow:var(--shadow-sm)}.chart-legend h4{margin:0 0 1rem;font-size:1.125rem}.legend-items{display:flex;flex-wrap:wrap;gap:1.5rem}.legend-item{display:flex;align-items:center;gap:.5rem}.legend-swatch{display:inline-flex;align-items:center;justify-content:center;width:2.5rem;height:2.5rem;border-radius:var(--radius-sm);font-weight:600;color:#fff}.legend-note{margin:1rem 0 0;font-size:.875rem;color:var(--color-text-light);line-height:1.5}.modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#000000b3;display:flex;align-items:center;justify-content:center;z-index:1000;padding:1rem}.modal-content{background:var(--color-surface);border-radius:var(--radius-lg);max-width:600px;width:100%;max-height:90vh;overflow-y:auto;box-shadow:var(--shadow-lg)}.modal-header{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;border-bottom:1px solid var(--color-border)}.modal-header h3{margin:0;font-size:1.25rem;color:var(--color-text)}.modal-close{background:none;border:none;font-size:2rem;line-height:1;cursor:pointer;color:var(--color-text-light);padding:0;width:2rem;height:2rem;display:flex;align-items:center;justify-content:center;border-radius:var(--radius-sm);transition:background .2s}.modal-close:hover{background:var(--color-bg)}.modal-body{padding:1.5rem}.optimal-action{text-align:center;padding:1.5rem;background:var(--color-bg);border-radius:var(--radius-md);margin-bottom:1.5rem}.optimal-action h4{margin:0 0 1rem;font-size:1rem;color:var(--color-text-light);font-weight:500}.action-badge{display:inline-block;padding:.75rem 2rem;border-radius:var(--radius-md);font-size:1.25rem;font-weight:600;color:#fff;margin-bottom:1rem}.ev-value{font-size:.875rem;color:var(--color-text-light)}.ev-value strong{color:var(--color-text);font-size:1.125rem}.all-evs{margin-bottom:1.5rem}.all-evs h4{margin:0 0 1rem;font-size:1rem;font-weight:600;color:var(--color-text)}.ev-list{display:flex;flex-direction:column;gap:.5rem}.ev-item{display:flex;align-items:center;justify-content:space-between;padding:.75rem;background:var(--color-bg);border-radius:var(--radius-sm);transition:background .2s}.ev-item:hover{background:var(--color-border)}.ev-item.best-action{background:#10b98126;border:2px solid var(--color-success)}.ev-action{display:flex;align-items:center;gap:.75rem}.action-badge-small{display:inline-flex;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:var(--radius-sm);font-weight:600;font-size:.875rem;color:#fff}.action-name{font-weight:500;color:var(--color-text)}.ev-value-detail{display:flex;align-items:center;gap:.5rem;font-weight:600;color:var(--color-text);font-family:Courier New,monospace}.best-indicator{color:var(--color-success);font-size:.875rem;font-weight:600}.modal-footer{padding-top:1rem;border-top:1px solid var(--color-border)}.modal-footer p{margin:0;font-size:.875rem;color:var(--color-text-light);line-height:1.5}.insurance-section{background:#fbbf241a;border:2px solid var(--color-warning);border-radius:var(--radius-md);padding:1.5rem;margin-bottom:1.5rem}.insurance-section h4{margin:0 0 1rem;font-size:1rem;font-weight:600;color:var(--color-warning);display:flex;align-items:center;gap:.5rem}.insurance-section h4:before{content:"⚠";font-size:1.25rem}.insurance-decision{display:flex;flex-direction:column;gap:1rem}.insurance-options{display:flex;flex-direction:column;gap:.75rem}.insurance-option{display:flex;justify-content:space-between;align-items:center;padding:.75rem 1rem;background:var(--color-surface);border:2px solid var(--color-border);border-radius:var(--radius-sm);transition:all .2s}.insurance-option.recommended{border-color:var(--color-success);background:#10b9811a}.insurance-label{font-weight:600;color:var(--color-text)}.insurance-ev{font-family:Courier New,monospace;font-weight:600;color:var(--color-text)}.insurance-note{margin:.5rem 0 0;font-size:.875rem;color:var(--color-warning);font-style:italic}@media (max-width: 768px){.chart-section{padding:1rem}.chart-table{font-size:.75rem;border-spacing:1px}.chart-table thead th,.chart-table tbody td{padding:.5rem .25rem}.player-hand{min-width:40px;font-size:.7rem}.action-cell:hover{transform:none}.action-cell.has-insurance:after{border-width:0 6px 6px 0}.legend-items{flex-direction:column;gap:.75rem}.legend-swatch{width:2rem;height:2rem;font-size:.875rem}.modal-content{max-height:95vh}.modal-header,.modal-body{padding:1rem}}@media (max-width: 480px){.chart-section{padding:.75rem;border-radius:var(--radius-sm)}.chart-section h3{font-size:1rem;margin-bottom:.75rem}.chart-table{font-size:.625rem;border-spacing:1px}.chart-table thead th{padding:.375rem .125rem;font-size:.625rem}.chart-table tbody td{padding:.375rem .125rem}.player-hand{min-width:28px;font-size:.6rem;padding:.375rem .125rem}.action-cell.has-insurance:after{border-width:0 4px 4px 0;top:1px;right:1px}.chart-legend{padding:1rem}.chart-legend h4{font-size:1rem}.legend-swatch{width:1.75rem;height:1.75rem;font-size:.75rem}.legend-note{font-size:.75rem}}@media (max-width: 360px){.chart-table{font-size:.5625rem}.chart-table thead th{padding:.25rem .0625rem;font-size:.5625rem}.chart-table tbody td{padding:.25rem .0625rem}.player-hand{min-width:24px;font-size:.5rem;padding:.25rem .0625rem}}.playing-card{width:80px;height:112px;background:#fff;border:2px solid #333;border-radius:8px;position:relative;box-shadow:var(--shadow-md);display:inline-flex;align-items:center;justify-content:center}.playing-card.red{color:var(--card-red)}.playing-card.black{color:var(--card-black)}.card-corner{position:absolute;display:flex;flex-direction:column;align-items:center;font-weight:600;line-height:1}.card-corner.top-left{top:6px;left:8px}.card-corner.bottom-right{bottom:6px;right:8px;transform:rotate(180deg)}.card-rank{font-size:1rem;margin-bottom:2px}.card-suit{font-size:.875rem}.card-center{font-size:3rem;opacity:.3}@media (max-width: 768px){.playing-card{width:60px;height:84px}.card-rank{font-size:.875rem}.card-suit{font-size:.75rem}.card-center{font-size:2rem}}.training-mode{max-width:800px;margin:0 auto}.training-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.training-header h2{margin:0}.training-score{display:flex;flex-direction:column;align-items:flex-end}.score-value{font-size:1.5rem;font-weight:700;color:var(--color-primary)}.score-label{font-size:.875rem;color:var(--color-text-light)}.training-game{display:flex;flex-direction:column;gap:2rem;padding:2rem}.dealer-section,.player-section{text-align:center}.dealer-section h3,.player-section h3{margin:0 0 1rem;font-size:1.125rem;color:var(--color-text-light)}.hand-display{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap}.hand-info{margin-top:1rem}.hand-value{font-size:1.25rem;font-weight:600;color:var(--color-text)}.action-buttons{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap}.button-action{min-width:120px;padding:.75rem 1.5rem;font-size:1rem;font-weight:700;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.5);border:none;border-radius:var(--radius-md)}.button-action.action-hit{background:linear-gradient(135deg,#d97706,#b45309)}.button-action.action-hit:hover{background:linear-gradient(135deg,#f59e0b,#d97706)}.button-action.action-stand{background:linear-gradient(135deg,#dc2626,#b91c1c)}.button-action.action-stand:hover{background:linear-gradient(135deg,#ef4444,#dc2626)}.button-action.action-double{background:linear-gradient(135deg,#059669,#047857)}.button-action.action-double:hover{background:linear-gradient(135deg,#10b981,#059669)}.button-action.action-split{background:linear-gradient(135deg,#2563eb,#1d4ed8)}.button-action.action-split:hover{background:linear-gradient(135deg,#3b82f6,#2563eb)}.button-action.action-surrender{background:linear-gradient(135deg,#7c3aed,#6d28d9)}.button-action.action-surrender:hover{background:linear-gradient(135deg,#8b5cf6,#7c3aed)}.feedback{text-align:center;padding:1.5rem;border-radius:var(--radius-md);display:flex;flex-direction:column;gap:1rem}.feedback.correct{background:#10b98126;border:2px solid var(--color-success)}.feedback.incorrect{background:#ef444426;border:2px solid var(--color-danger)}.feedback-message{font-size:1.25rem;font-weight:600;margin:0}.feedback.correct .feedback-message{color:var(--color-success)}.feedback.incorrect .feedback-message{color:var(--color-danger)}@media (max-width: 768px){.training-header{flex-direction:column;gap:1rem;align-items:flex-start}.training-score{align-items:flex-start}.training-game{padding:1rem}.action-buttons{flex-direction:column}.button-action{width:100%}}.strategy-explorer{padding:20px;max-width:1400px;margin:0 auto}.explorer-header{text-align:center;margin-bottom:30px}.explorer-header h2{margin:0 0 10px;color:#333}.explorer-header p{margin:0;color:#666;font-size:14px}.explorer-controls{display:flex;gap:20px;margin-bottom:20px;padding:20px;background:#f5f5f5;border-radius:8px;flex-wrap:wrap}.control-group label{font-weight:500;color:#333;white-space:nowrap}.control-group select,.control-group input[type=range]{padding:5px 10px;border:1px solid #ddd;border-radius:4px;font-size:14px}.control-group input[type=range]{width:150px}.control-group input[type=checkbox]{margin-right:5px}.explorer-stats{display:flex;gap:30px;margin-bottom:30px;padding:20px;background:#fff;border:1px solid #e0e0e0;border-radius:8px;flex-wrap:wrap}.stat{display:flex;flex-direction:column;gap:5px}.stat-label{font-size:12px;color:#666;text-transform:uppercase;letter-spacing:.5px}.stat-value{font-size:24px;font-weight:700;color:#333}.situations-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:15px;margin-bottom:20px}.situation-card{padding:15px;border:1px solid #e0e0e0;border-radius:8px;background:#fff;transition:transform .2s,box-shadow .2s}.situation-card:hover{transform:translateY(-2px);box-shadow:0 4px 8px #0000001a}.situation-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid #e0e0e0}.situation-label{font-size:14px;font-weight:600;color:#333}.situation-vs{font-size:12px;color:#666;background:#f5f5f5;padding:3px 8px;border-radius:4px}.situation-action{font-size:20px;font-weight:700;text-align:center;margin:15px 0;text-transform:uppercase;letter-spacing:1px}.situation-visits{text-align:center;font-size:12px;color:#666;padding:5px;background:#f5f5f5;border-radius:4px;margin-bottom:5px}.situation-ev{text-align:center;font-size:13px;font-weight:600;color:#333;padding:5px;background:#e8f5e9;border-radius:4px}.situation-probabilities{margin-top:15px;padding-top:15px;border-top:1px solid #e0e0e0}.prob-header{font-size:11px;font-weight:600;color:#666;text-transform:uppercase;margin-bottom:8px;letter-spacing:.5px}.ev-bar{display:flex;align-items:center;gap:8px;margin-bottom:6px;font-size:12px}.ev-label{font-weight:600;min-width:60px}.ev-value{font-weight:700;min-width:50px;text-align:right}.ev-difference{font-size:10px;color:#999;font-style:italic}.probability-bar{display:flex;align-items:center;gap:8px;margin-bottom:8px}.prob-label{font-size:11px;color:#666;min-width:50px;text-transform:uppercase}.prob-bar-container{flex:1;height:12px;background:#e0e0e0;border-radius:6px;overflow:hidden}.prob-bar-fill{height:100%;transition:width .3s}.prob-value{font-size:11px;color:#666;min-width:35px;text-align:right;font-weight:500}.no-results{text-align:center;padding:60px 20px;color:#666}.no-results p{margin:10px 0}@media (max-width: 768px){.situations-grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:10px}.explorer-controls{flex-direction:column;gap:15px}.control-group{width:100%}.explorer-stats{flex-direction:column;gap:15px}}.strategy-tree{padding:20px;max-width:1200px;margin:0 auto}.tree-header{text-align:center;margin-bottom:30px}.tree-header h2{margin:0 0 10px;color:#1a1a2e}.tree-header p{margin:0;color:#666}.tree-house-edge{background:linear-gradient(135deg,#1a1a2e,#2d2d4a);color:#fff;padding:20px;border-radius:12px;margin-bottom:20px;text-align:center}.tree-house-edge .house-edge-metrics{display:flex;justify-content:center;gap:40px;margin-bottom:15px}.tree-house-edge .house-edge-metric-inline{display:flex;flex-direction:column;align-items:center;gap:5px}.tree-house-edge .house-edge-label{font-size:14px;opacity:.9;display:flex;align-items:center;gap:6px}.tree-house-edge .house-edge-value{font-size:28px;font-weight:700}.tree-house-edge .help-icon{display:inline-flex;align-items:center;justify-content:center;width:16px;height:16px;border-radius:50%;background:#fff3;color:#fff;font-size:11px;font-weight:600;cursor:help;transition:background .2s}.tree-house-edge .help-icon:hover{background:#fff6}.tree-house-edge .house-edge-details{display:flex;justify-content:center;gap:30px;font-size:13px;opacity:.8;border-top:1px solid rgba(255,255,255,.1);padding-top:12px;margin-top:5px}.tree-controls{display:flex;justify-content:space-between;align-items:center;padding:15px 20px;background:#f8f9fa;border-radius:8px;margin-bottom:25px;flex-wrap:wrap;gap:15px}.control-group{display:flex;align-items:center;gap:10px}.control-group label{font-weight:500;color:#333}.control-group select{padding:8px 12px;border:1px solid #ddd;border-radius:6px;font-size:14px;background:#fff}.action-summary{display:flex;align-items:center;gap:12px}.summary-label{font-weight:500;color:#666}.action-count{padding:4px 10px;border-radius:4px;font-size:13px;font-weight:600}.tree-section{margin-bottom:40px}.tree-section h3{margin:0 0 15px;font-size:18px;color:#1a1a2e;padding-bottom:10px;border-bottom:2px solid #e0e0e0}.tree-table-container{overflow-x:auto;border-radius:8px;box-shadow:0 2px 8px #0000001a}.tree-table{width:100%;border-collapse:collapse;background:#fff;min-width:600px}.tree-table th,.tree-table td{padding:12px 8px;text-align:center;border:1px solid #e0e0e0}.tree-table th{background:#1a1a2e;color:#fff;font-weight:600;font-size:14px}.player-header{min-width:80px}.dealer-header{min-width:45px}.player-cell{font-weight:600;background:#f8f9fa;color:#1a1a2e}.action-cell{font-weight:700;font-size:15px;cursor:pointer;transition:transform .15s,box-shadow .15s;min-width:45px}.action-cell:hover{transform:scale(1.1);box-shadow:0 2px 8px #0003;z-index:1;position:relative}.action-cell.clickable{cursor:pointer}.action-hit{background:#fff3e0;color:#e65100}.action-stand{background:#ffebee;color:#c62828}.action-double{background:#e8f5e9;color:#2e7d32}.action-split{background:#e3f2fd;color:#1565c0}.action-surrender{background:#f3e5f5;color:#7b1fa2}.detailed-cell{display:flex;flex-direction:column;gap:2px}.cell-action{font-size:14px;font-weight:700}.cell-ev{font-size:10px;opacity:.8}.tree-legend{background:#f8f9fa;padding:20px;border-radius:8px;margin-top:30px}.tree-legend h4{margin:0 0 15px;color:#333}.legend-grid{display:flex;flex-wrap:wrap;gap:20px}.legend-item{display:flex;align-items:center;gap:8px}.legend-swatch{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:6px;font-weight:700;font-size:14px}.modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#0009;display:flex;align-items:center;justify-content:center;z-index:1000;padding:20px}.modal-content{background:#fff;border-radius:12px;max-width:450px;width:100%;max-height:90vh;overflow-y:auto;box-shadow:0 10px 40px #0000004d}.modal-header{display:flex;justify-content:space-between;align-items:center;padding:20px;border-bottom:1px solid #e0e0e0;background:#f8f9fa;border-radius:12px 12px 0 0}.modal-header h3{margin:0;font-size:18px;color:#1a1a2e}.modal-close{background:none;border:none;font-size:28px;cursor:pointer;color:#666;padding:0;line-height:1}.modal-close:hover{color:#333}.modal-body{padding:20px}.detail-action,.detail-ev{display:flex;justify-content:space-between;align-items:center;padding:12px 0;border-bottom:1px solid #f0f0f0}.detail-label{font-weight:500;color:#666}.detail-value{font-weight:700;font-size:16px}.action-badge{padding:6px 14px;border-radius:6px;font-size:14px}.detail-all-evs{margin-top:20px}.detail-all-evs h4{margin:0 0 12px;font-size:14px;color:#666;text-transform:uppercase;letter-spacing:.5px}.ev-list{display:flex;flex-direction:column;gap:8px}.ev-row{display:flex;align-items:center;padding:10px 12px;background:#f8f9fa;border-radius:6px}.ev-row.best{background:#e8f5e9}.ev-action{flex:1;font-weight:600;padding:4px 10px;border-radius:4px;font-size:13px}.ev-value{font-weight:700;font-size:14px;min-width:70px;text-align:right}.best-label{background:#4caf50;color:#fff;padding:2px 8px;border-radius:4px;font-size:11px;font-weight:600;margin-left:10px}.detail-note{margin-top:20px;padding:12px;background:#f8f9fa;border-radius:6px;font-size:13px;color:#666;line-height:1.5}.detail-note p{margin:0}@media (max-width: 768px){.tree-controls{flex-direction:column;align-items:stretch}.action-summary{justify-content:center;flex-wrap:wrap}.house-edge-details{flex-direction:column;gap:5px}.action-cell{padding:8px 4px;font-size:13px}}.documentation-page{max-width:800px;margin:0 auto;padding:2rem 1rem}.documentation-page h1{font-size:2rem;margin-bottom:1.5rem;color:var(--color-text);padding-bottom:1rem;border-bottom:2px solid var(--color-primary)}.doc-intro{font-size:1.125rem;color:var(--color-text-light);margin-bottom:2rem;line-height:1.7}.doc-section{margin-bottom:2.5rem}.doc-section h2{font-size:1.5rem;color:var(--color-primary);margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--color-border)}.doc-section h3{font-size:1.125rem;color:var(--color-text);margin:1.5rem 0 .75rem}.doc-section h4{font-size:1rem;color:var(--color-text);margin:1rem 0 .5rem}.doc-section p{line-height:1.7;color:var(--color-text);margin-bottom:1rem}.doc-section ul,.doc-section ol{margin:1rem 0 1rem 1.5rem;line-height:1.7}.doc-section li{margin-bottom:.5rem;color:var(--color-text)}.doc-section strong{color:var(--color-text)}.doc-section code{background:var(--color-bg);padding:.125rem .375rem;border-radius:var(--radius-sm);font-family:Courier New,monospace;font-size:.9em;color:var(--color-primary)}.term-example{background:var(--color-bg);border-left:4px solid var(--color-primary);padding:1rem 1.25rem;margin:1rem 0;border-radius:0 var(--radius-md) var(--radius-md) 0}.term-example strong{color:var(--color-primary)}.variant-comparison{display:grid;gap:1rem;margin:1rem 0}.variant-item{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:1rem 1.25rem}.variant-item h4{margin:0 0 .5rem;color:var(--color-text)}.variant-item p{margin:0;font-size:.9rem}.variant-item p:last-child{margin-top:.5rem;color:var(--color-text-light)}.variant-edge{font-weight:600;font-size:.875rem}.variant-edge.good{color:var(--color-success)}.variant-edge.neutral{color:var(--color-text-light)}.variant-edge.bad{color:var(--color-danger)}.methodology-stat{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:1.5rem;margin:1.5rem 0;text-align:center}.methodology-stat .stat-value{font-size:2.5rem;font-weight:700;color:var(--color-primary);margin-bottom:.25rem}.methodology-stat .stat-label{font-size:1rem;font-weight:600;color:var(--color-text);margin-bottom:.75rem}.methodology-stat p{font-size:.9rem;color:var(--color-text-light);margin:0;line-height:1.6}.back-nav{margin-bottom:1.5rem}.back-link{display:inline-flex;align-items:center;gap:.5rem;color:var(--color-primary);text-decoration:none;font-weight:500;padding:.5rem 0;transition:color .2s}.back-link:hover{color:var(--color-primary-dark)}.back-link:before{content:"←";font-size:1.25rem}@media (max-width: 768px){.documentation-page{padding:1rem}.documentation-page h1{font-size:1.5rem}.doc-section h2{font-size:1.25rem}.doc-intro{font-size:1rem}.variant-comparison{grid-template-columns:1fr}.methodology-stat .stat-value{font-size:2rem}}@media (max-width: 480px){.documentation-page h1{font-size:1.25rem}.doc-section h2{font-size:1.125rem}.methodology-stat{padding:1rem}.methodology-stat .stat-value{font-size:1.75rem}}.app{display:flex;flex-direction:column;min-height:100vh}.main-content{flex:1;padding:2rem 0}.section{margin-bottom:2rem}.mode-toggle{display:flex;gap:1rem;justify-content:center}.mode-toggle .button{min-width:150px}.house-edge-card{text-align:center;max-width:600px;margin:0 auto}.house-edge-metrics{display:flex;justify-content:center;gap:3rem;margin:1rem 0}.house-edge-metric{display:flex;flex-direction:column;align-items:center}.house-edge-label{font-size:.875rem;color:var(--color-text-light);margin-bottom:.25rem;display:flex;align-items:center;gap:.25rem}.house-edge-value{font-size:2.5rem;font-weight:700;color:var(--color-primary)}.help-icon{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;background:var(--color-border);color:var(--color-text-light);font-size:.75rem;font-weight:600;cursor:pointer;transition:background .2s,color .2s;border:none;padding:0;font-family:inherit}.help-icon:hover{background:var(--color-primary);color:#fff}.help-icon:focus-visible{outline:2px solid var(--color-primary);outline-offset:2px}.house-edge-details{display:flex;flex-direction:column;gap:.5rem;margin-top:1rem;padding-top:1rem;border-top:1px solid var(--color-border)}.house-edge-details p{margin:0;font-size:.875rem}.simulation-assumptions{font-size:.75rem;font-style:italic}.text-light{color:var(--color-text-light);font-size:.875rem}.error-message{text-align:center;color:var(--color-danger);max-width:600px;margin:0 auto}.back-to-trainer{display:inline-flex;align-items:center;gap:.5rem;background:none;border:none;color:var(--color-primary);font-size:1rem;font-weight:500;font-family:inherit;cursor:pointer;padding:.5rem 0;margin-bottom:1rem;transition:color .2s}.back-to-trainer:hover{color:var(--color-primary-dark)}.footer{background:var(--color-surface);border-top:1px solid var(--color-border);padding:2rem 0;margin-top:4rem;text-align:center}.footer p{margin:.5rem 0}@media (max-width: 768px){.main-content{padding:1rem 0}.section{margin-bottom:1.5rem}.mode-toggle{flex-direction:column;gap:.5rem}.mode-toggle .button{width:100%}.house-edge-metrics{flex-direction:column;gap:1.5rem}.house-edge-value{font-size:2rem}.footer{margin-top:2rem;padding:1.5rem 0}}@media (max-width: 480px){.house-edge-value{font-size:1.75rem}}*{box-sizing:border-box;margin:0;padding:0}:root{--color-primary: #2563eb;--color-primary-dark: #1e40af;--color-success: #059669;--color-danger: #dc2626;--color-warning: #d97706;--color-bg: #f8fafc;--color-surface: #ffffff;--color-border: #e2e8f0;--color-text: #1e293b;--color-text-light: #64748b;--color-text-lighter: #94a3b8;--card-red: #dc2626;--card-black: #1e293b;--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1);--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1);--radius-sm: .375rem;--radius-md: .5rem;--radius-lg: .75rem;color-scheme:light}@media (prefers-color-scheme: dark){:root{--color-primary: #3b82f6;--color-primary-dark: #2563eb;--color-success: #10b981;--color-danger: #ef4444;--color-warning: #f59e0b;--color-bg: #0f172a;--color-surface: #1e293b;--color-border: #334155;--color-text: #f1f5f9;--color-text-light: #94a3b8;--color-text-lighter: #64748b;--card-red: #f87171;--card-black: #e2e8f0;--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .3);--shadow-md: 0 4px 6px -1px rgb(0 0 0 / .4);--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .5);color-scheme:dark}}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;font-size:16px;line-height:1.5;color:var(--color-text);background-color:var(--color-bg);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}#root{min-height:100vh}h1,h2,h3,h4,h5,h6{font-weight:600;line-height:1.2;margin-bottom:.5em}h1{font-size:2.25rem}h2{font-size:1.875rem}h3{font-size:1.5rem}h4{font-size:1.25rem}h5{font-size:1.125rem}h6{font-size:1rem}.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1rem}.card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);padding:1.5rem}.button{display:inline-flex;align-items:center;justify-content:center;padding:.5rem 1rem;font-size:.875rem;font-weight:500;border-radius:var(--radius-md);border:none;cursor:pointer;transition:all .2s;text-decoration:none;font-family:inherit;min-height:44px}.button:disabled{opacity:.5;cursor:not-allowed}.button-primary{background:var(--color-primary);color:#fff}.button-primary:hover:not(:disabled){background:var(--color-primary-dark)}.button-secondary{background:var(--color-surface);color:var(--color-text);border:1px solid var(--color-border)}.button-secondary:hover:not(:disabled){background:var(--color-bg)}.button-success{background:var(--color-success);color:#fff}.button-danger{background:var(--color-danger);color:#fff}select{padding:.5rem;border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-surface);color:var(--color-text);font-family:inherit;font-size:1rem;cursor:pointer;min-height:44px}select:focus{outline:2px solid var(--color-primary);outline-offset:2px}.loading{display:flex;align-items:center;justify-content:center;min-height:300px;color:var(--color-text-light)}.grid{display:grid;gap:1rem}.grid-2{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(3,1fr)}.grid-4{grid-template-columns:repeat(4,1fr)}@media (max-width: 1024px){.container{padding:0 .75rem}.grid-4{grid-template-columns:repeat(2,1fr)}}@media (max-width: 768px){html{font-size:15px}.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}h1{font-size:1.75rem}h2{font-size:1.5rem}h3{font-size:1.25rem}.card{padding:1rem}.loading{min-height:200px}}@media (max-width: 480px){html{font-size:14px}.container{padding:0 .5rem}h1{font-size:1.5rem}h2{font-size:1.25rem}h3{font-size:1.125rem}}@supports (padding: env(safe-area-inset-bottom)){.footer{padding-bottom:calc(2rem + env(safe-area-inset-bottom))}}:focus-visible{outline:2px solid var(--color-primary);outline-offset:2px}:focus:not(:focus-visible){outline:none}.info-modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#0009;display:flex;align-items:center;justify-content:center;z-index:1000;padding:1rem;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.info-modal{background:var(--color-surface);border-radius:var(--radius-lg);max-width:500px;width:100%;box-shadow:var(--shadow-lg);animation:modalFadeIn .2s ease-out}@keyframes modalFadeIn{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.info-modal-header{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--color-border)}.info-modal-header h3{margin:0;font-size:1.25rem;color:var(--color-text)}.info-modal-close{background:none;border:none;font-size:1.5rem;line-height:1;cursor:pointer;color:var(--color-text-light);padding:.25rem;border-radius:var(--radius-sm);transition:background .2s,color .2s}.info-modal-close:hover{background:var(--color-bg);color:var(--color-text)}.info-modal-body{padding:1.5rem}.info-modal-body p{margin:0 0 1rem;line-height:1.6;color:var(--color-text)}.info-modal-body p:last-child{margin-bottom:0}.info-modal-body strong{color:var(--color-primary)}.info-modal-example{background:var(--color-bg);border-radius:var(--radius-md);padding:1rem;margin:1rem 0;font-size:.9rem}.info-modal-example code{font-family:Courier New,monospace;color:var(--color-primary)}
