/**
 * CRIME MIND - 印刷用スタイルシート (print.css)
 * A4用紙での捜査機密資料・心理プロファイル評価書出力用
 */

@media print {
    /* 画面専用要素の非表示 */
    .system-topbar,
    .scanline-overlay,
    .vignette-overlay,
    .result-actions-card,
    .paid-offer-card,
    .btn,
    .progress-sticky-bar,
    .step-nav-bar,
    .dev-notice-box,
    .payment-action-group,
    nav {
        display: none !important;
    }

    body {
        background: #ffffff !important;
        color: #111827 !important;
        font-size: 11pt !important;
        line-height: 1.6 !important;
    }

    .site-container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .card,
    .result-hero-card,
    .paid-report-wrapper {
        background: #ffffff !important;
        border: 1px solid #94a3b8 !important;
        box-shadow: none !important;
        color: #111827 !important;
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        page-break-inside: avoid;
    }

    .result-main-title,
    .card-title,
    .section-main-title,
    .report-section-title,
    .rank-title-text {
        color: #0f172a !important;
    }

    .classified-stamp {
        border-color: #991b1b !important;
        color: #991b1b !important;
        opacity: 1 !important;
    }

    .gauge-index-num {
        color: #991b1b !important;
        text-shadow: none !important;
    }

    .gauge-bg-circle {
        stroke: #e2e8f0 !important;
    }

    .gauge-fill-circle {
        stroke: #991b1b !important;
    }

    .mandatory-disclaimer-callout {
        background: #fef2f2 !important;
        border: 1px solid #f87171 !important;
        color: #991b1b !important;
    }

    .report-section-body {
        color: #1e293b !important;
    }

    .score-row-item {
        background: #f8fafc !important;
        border: 1px solid #cbd5e1 !important;
    }

    .category-name,
    .category-points {
        color: #0f172a !important;
    }

    .report-section-block {
        page-break-inside: avoid;
    }

    /* 印刷ヘッダー情報の挿入 */
    .card::before {
        content: "CONFIDENTIAL DOCUMENT - CRIME MIND PSYCHOLOGICAL PROFILE";
        display: block;
        font-family: monospace;
        font-size: 8pt;
        color: #64748b;
        border-bottom: 1px solid #cbd5e1;
        margin-bottom: 1rem;
        padding-bottom: 0.25rem;
    }
}
