:root {
            --bg-body: #F5F5F7;       /* Apple Light Grey */
            --bg-card: #FFFFFF;
            
            /* Text Colors - Softer contrasts */
            --text-headline: #1D1D1F;
            --text-body: #424245;     /* Not black, but dark grey for softness */
            --text-sub: #86868B;
            
            /* System Accents */
            --sys-red: #FF3B30;
            --sys-orange: #FF9500;
            --sys-blue: #0071E3;
            --sys-green: #34C759;
            --sys-gray-light: #F2F2F7;
            
            /* FONTS */
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-tech: 'JetBrains Mono', monospace;
            
            --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
            --shadow-soft: 0 4px 20px rgba(0,0,0,0.04);
            --shadow-hover: 0 12px 30px rgba(0,0,0,0.08);
        }

        body {
            background-color: var(--bg-body);
            font-family: var(--font-main);
            margin: 0;
            padding: 80px 20px;
            color: var(--text-headline);
            -webkit-font-smoothing: antialiased; /* Makes text look crisp */
        }

        .container { max-width: 980px; margin: 0 auto; }

        /* --- UTILS --- */
        .screen { transition: opacity 0.5s var(--ease-apple), transform 0.5s var(--ease-apple); }
        .hidden { display: none; opacity: 0; pointer-events: none; }
        .active { display: block; opacity: 1; transform: translateY(0); }

        /* --- HEADER --- */
        .console-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            padding-bottom: 24px;
        }

        .console-title h1 {
            font-size: 40px;
            font-weight: 600; /* Apple rarely uses Bold, they use Semibold (600) */
            margin: 0 0 8px 0;
            letter-spacing: -0.03em; /* Tight tracking for headers */
        }

        .console-subtitle {
            font-size: 17px;
            color: var(--text-sub);
            font-weight: 400;
        }

        .system-status {
            font-family: var(--font-tech);
            font-size: 11px;
            background: #fff;
            padding: 8px 16px;
            border-radius: 100px; /* Pill shape */
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-sub);
            letter-spacing: 0.5px;
        }

        .blink {
            width: 6px; height: 6px;
            background: var(--sys-green);
            border-radius: 50%;
            animation: breathe 3s infinite ease-in-out;
        }
        @keyframes breathe { 0% { opacity: 0.4; } 50% { opacity: 1; } 100% { opacity: 0.4; } }

        /* --- GRID --- */
        .bug-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .bug-card {
            background: var(--bg-card);
            border: none;
            border-radius: 20px;
            padding: 30px;
            cursor: pointer;
            transition: all 0.4s var(--ease-apple);
            position: relative;
            box-shadow: var(--shadow-soft);
            text-align: left;
            width: 100%;
        }

        .bug-card:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        /* Card Typography */
        .card-top {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .error-code {
            font-family: var(--font-tech);
            font-size: 11px;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 8px;
            letter-spacing: 0.5px;
        }
        
        .code-red { color: var(--sys-red); background: rgba(255, 59, 48, 0.08); }
        .code-orange { color: var(--sys-orange); background: rgba(255, 149, 0, 0.08); }
        .code-blue { color: var(--sys-blue); background: rgba(0, 113, 227, 0.08); }

        .bug-msg {
            font-size: 20px;
            font-weight: 500; /* Softer than bold */
            margin-bottom: 8px;
            line-height: 1.3;
            color: var(--text-headline);
            letter-spacing: -0.01em;
        }

        .bug-sub {
            font-size: 15px;
            color: var(--text-sub);
            font-weight: 400;
        }

        /* --- STORY SCREEN (THE APPLE PSYCHOLOGY PART) --- */
        .story-container {
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 20px 80px rgba(0,0,0,0.06);
            padding: 60px;
            max-width: 760px;
            margin: 0 auto;
        }

        .back-btn {
            background: none;
            border: none;
            font-family: var(--font-main);
            color: var(--sys-blue);
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 30px;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 6px;
            opacity: 0.9;
            transition: opacity 0.2s;
        }
        .back-btn:hover { opacity: 1; }

        .scenario-tag {
            font-family: var(--font-tech);
            color: var(--text-sub);
            font-size: 12px;
            margin-bottom: 16px;
            display: block;
            letter-spacing: 1px;
        }

        .story-title {
            font-size: 34px;
            font-weight: 600;
            margin-bottom: 24px;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--text-headline);
        }

        /* THE KEY CHANGE: Soothing Body Text */
        .story-body {
            font-family: var(--font-main); /* Back to Inter */
            font-size: 18px;
            line-height: 1.7; /* Generous spacing */
            color: var(--text-body);
            margin-bottom: 40px;
            font-weight: 300; /* Light and airy */
        }

        /* Technical Boxes */
        .tech-box {
            border-radius: 16px;
            padding: 28px;
            margin-bottom: 24px;
        }

        .box-label {
            font-family: var(--font-tech);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 12px;
            display: block;
        }

        /* Truth Box - Softer Red */
        .truth-box { background: #FFF5F5; }
        .truth-box .box-label { color: var(--sys-red); }
        .truth-box p { 
            font-size: 16px; 
            color: #4A1212; 
            margin: 0; 
            line-height: 1.6;
            font-weight: 400;
        }

        /* Fix Box - Softer Blue */
        .fix-box { background: #F0F7FF; }
        .fix-box .box-label { color: var(--sys-blue); }
        .fix-box p { 
            font-size: 16px; 
            color: #00305F; 
            margin: 0; 
            line-height: 1.6; 
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .bug-grid { grid-template-columns: 1fr; }
            .console-header { flex-direction: column; align-items: flex-start; gap: 10px; }
            .story-container { padding: 30px; }
            .console-title h1 { font-size: 32px; }
        }