        /* ═══════════════════════════════════════════════════ */
        /* PENALTY SIMULATOR — Premium Tool Styles            */
        /* ═══════════════════════════════════════════════════ */

        :root {
            --ps-danger: #ef4444;
            --ps-warning: #f59e0b;
            --ps-success: #10b981;
            --ps-accent: #8b5cf6;
            --ps-info: #3b82f6;
        }

        .ps-hero {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            margin-bottom: var(--space-xl);
            padding: var(--space-2xl);
            background: linear-gradient(135deg,
                    rgba(239, 68, 68, 0.08) 0%,
                    rgba(245, 158, 11, 0.06) 50%,
                    rgba(139, 92, 246, 0.04) 100%);
            border: 1px solid rgba(239, 68, 68, 0.15);
        }

        .ps-hero h1 {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ef4444 0%, #f59e0b 50%, #8b5cf6 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 0 0 8px 0;
        }

        .ps-hero p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin: 0;
            max-width: 600px;
        }

        .ps-year-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 14px;
            border-radius: 999px;
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #fca5a5;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: var(--space-md);
        }

        /* ── Form Section ── */
        .ps-form {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: var(--space-lg);
            margin-bottom: var(--space-xl);
        }

        .ps-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .ps-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ps-select,
        .ps-input {
            padding: 12px 16px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #fff;
            font-size: 0.9rem;
            font-family: inherit;
            outline: none;
            transition: all 0.2s;
            -webkit-appearance: none;
        }

        .ps-select:focus,
        .ps-input:focus {
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
        }

        .ps-select option {
            background: #1e1e2e;
            color: #fff;
        }

        /* ── Violations Grid ── */
        .ps-violations-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-md);
        }

        .ps-violations-title {
            font-size: 1rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
        }

        .ps-select-all {
            font-size: 0.75rem;
            color: var(--ps-accent);
            cursor: pointer;
            background: none;
            border: none;
            font-family: inherit;
        }

        .ps-violations {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-bottom: var(--space-xl);
        }

        .ps-violation {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 12px 14px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.02);
            cursor: pointer;
            transition: all 0.2s;
            user-select: none;
        }

        .ps-violation:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(239, 68, 68, 0.2);
        }

        .ps-violation.selected {
            background: rgba(239, 68, 68, 0.08);
            border-color: rgba(239, 68, 68, 0.3);
        }

        .ps-violation input[type="checkbox"] {
            margin-top: 2px;
            accent-color: var(--ps-danger);
        }

        .ps-viol-info {
            flex: 1;
        }

        .ps-viol-title {
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2px;
        }

        .ps-viol-detail {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .ps-viol-amount {
            font-size: 0.75rem;
            font-weight: 700;
            font-family: var(--font-mono, 'JetBrains Mono', monospace);
            color: var(--ps-danger);
            white-space: nowrap;
        }

        /* ── Calculate Button ── */
        .ps-calc-btn {
            width: 100%;
            padding: 16px;
            border-radius: var(--radius-xl);
            border: none;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #f59e0b 100%);
            color: white;
            font-size: 1.1rem;
            font-weight: 800;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: var(--space-xl);
            letter-spacing: 0.02em;
        }

        .ps-calc-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(239, 68, 68, 0.3);
        }

        /* ── Results ── */
        .ps-results {
            display: none;
        }

        .ps-results.visible {
            display: block;
            animation: ps-fadeIn 0.5s ease;
        }

        @keyframes ps-fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .ps-summary-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-md);
            margin-bottom: var(--space-xl);
        }

        .ps-summary-card {
            padding: var(--space-lg);
            border-radius: var(--radius-xl);
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.02);
            text-align: center;
        }

        .ps-summary-label {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .ps-summary-value {
            font-size: 1.4rem;
            font-weight: 900;
            font-family: var(--font-mono, 'JetBrains Mono', monospace);
        }

        .ps-summary-sub {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 2px;
        }

        /* ── Details Table ── */
        .ps-table-wrap {
            border-radius: var(--radius-xl);
            border: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
            margin-bottom: var(--space-xl);
        }

        .ps-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.8rem;
        }

        .ps-table th {
            padding: 12px 16px;
            text-align: left;
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .ps-table td {
            padding: 10px 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.8);
        }

        .ps-table tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }

        /* ── Multiplier Info ── */
        .ps-multiplier-box {
            padding: var(--space-lg);
            border-radius: var(--radius-xl);
            border: 1px solid rgba(245, 158, 11, 0.2);
            background: rgba(245, 158, 11, 0.05);
            margin-bottom: var(--space-xl);
        }

        .ps-mult-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 8px;
        }

        .ps-mult-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .ps-mult-cell {
            padding: 8px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            text-align: center;
            font-size: 0.75rem;
        }

        .ps-mult-cell strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 2px;
        }

        /* ── Case Study ── */
        .ps-case-study {
            padding: var(--space-xl);
            border-radius: var(--radius-xl);
            border: 1px solid rgba(239, 68, 68, 0.15);
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.04), rgba(245, 158, 11, 0.02));
            margin-bottom: var(--space-xl);
        }

        .ps-case-title {
            font-size: 1rem;
            font-weight: 800;
            color: #fca5a5;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ps-month-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.8rem;
        }

        .ps-month-label {
            color: rgba(255, 255, 255, 0.6);
        }

        .ps-month-amount {
            font-family: var(--font-mono, 'JetBrains Mono', monospace);
            font-weight: 700;
        }

        .ps-month-cumulative {
            font-family: var(--font-mono, 'JetBrains Mono', monospace);
            font-weight: 700;
            color: var(--ps-danger);
        }

        /* ── Warning Box ── */
        .ps-warning {
            padding: var(--space-lg);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(239, 68, 68, 0.25);
            background: rgba(239, 68, 68, 0.08);
            color: #fca5a5;
            font-size: 0.82rem;
            line-height: 1.6;
        }

        .ps-warning strong {
            color: var(--ps-danger);
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .ps-form {
                grid-template-columns: 1fr;
            }

            .ps-violations {
                grid-template-columns: 1fr;
            }

            .ps-summary-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ps-mult-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .ps-hero h1 {
                font-size: 1.3rem;
            }

            .ps-summary-grid {
                grid-template-columns: 1fr;
            }
        }
