.tdr-game-wrapper { max-width: 800px; margin: 0 auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
.tdr-questions-list { list-style: none; padding: 0; margin: 20px 0; }
.tdr-questions-list li { margin-bottom: 12px; padding: 10px; border-bottom: 1px solid #eee; transition: background 0.2s; }
.tdr-questions-list li:hover { background: #fcfcfc; }
.tdr-questions-list label { display: flex; align-items: flex-start; gap: 15px; cursor: pointer; color: #444; }
.tdr-questions-list input[type="checkbox"] { margin-top: 4px; width: 20px; height: 20px; accent-color: #333; flex-shrink: 0; }
.tdr-email-field { margin: 20px 0; padding: 15px; background: #f0f0f1; border-radius: 4px; }
.tdr-email-field label { display: block; margin-bottom: 5px; font-weight: 600; }
.tdr-email-field input { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; }
.tdr-submit-btn { background: #2c3e50; color: #fff; padding: 12px 24px; border: none; font-size: 16px; cursor: pointer; border-radius: 4px; transition: background 0.3s; }
.tdr-submit-btn:hover { background: #34495e; }

/* Results */
.tdr-result-card { margin-top: 30px; padding: 25px; border-left: 6px solid #ccc; background: #f9f9f9; animation: tdrFadeIn 0.5s ease-out; }
.tdr-header-result h4 { margin-top: 0; font-size: 1.4em; color: #333; }
.tdr-border-green { border-color: #27ae60; background: #eafaf1; }
.tdr-border-yellow { border-color: #f1c40f; background: #fef9e7; }
.tdr-border-orange { border-color: #e67e22; background: #fdf2e9; }
.tdr-border-red { border-color: #c0392b; background: #f9e7e7; }

.tdr-text-green { color: #27ae60; font-weight: bold; font-size: 1.2em; }
.tdr-text-yellow { color: #d35400; font-weight: bold; font-size: 1.2em; }
.tdr-text-orange { color: #e67e22; font-weight: bold; font-size: 1.2em; }
.tdr-text-red { color: #c0392b; font-weight: bold; font-size: 1.2em; }

.tdr-actions { margin-top: 20px; text-align: right; }
.tdr-btn-print { background: #fff; border: 1px solid #333; padding: 8px 16px; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }
.tdr-btn-print:hover { background: #f0f0f0; }

@keyframes tdrFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Print Styles - Strategy B */
@media print {
    body * { visibility: hidden; }
    #tdr-result-container, #tdr-result-container * { visibility: visible; }
    #tdr-result-container { position: absolute; left: 0; top: 0; width: 100%; margin: 0; padding: 20px; background: white; border: none; }
    .tdr-actions { display: none; }
}