* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            min-height: 100vh;
            color: #333;
            padding: 20px;
        }
        .container { max-width: 1200px; margin: 0 auto; }
        header {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 16px;
            padding: 20px 30px;
            margin-bottom: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        h1 {
            font-size: 28px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        .subtitle { color: #666; font-size: 14px; }
        .main-content {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .pedagogy-badge {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            color: white;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .description {
            background: linear-gradient(135deg, #ff6b6b15, #ee5a6f15);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid #ff6b6b;
        }
        .phase-container {
            margin-bottom: 30px;
        }
        .phase-header {
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            font-weight: 600;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .phase-number {
            background: rgba(255, 255, 255, 0.3);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }
        .phase-content {
            background: #f8fafc;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ff6b6b;
        }
        .math-problem {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin: 15px 0;
            border: 2px solid #ff6b6b;
            font-size: 18px;
            text-align: center;
        }
        .solution-step {
            background: linear-gradient(135deg, #667eea10, #764ba210);
            padding: 15px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 3px solid #667eea;
        }
        .step-label {
            font-weight: 600;
            color: #667eea;
            margin-bottom: 8px;
        }
        .self-explanation-prompt {
            background: linear-gradient(135deg, #fbbf2420, #f5961420);
            padding: 12px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 3px solid #f59e0b;
        }
        .student-explanation {
            background: linear-gradient(135deg, #10b98110, #05966910);
            padding: 12px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 3px solid #10b981;
            font-style: italic;
        }
        .faded-example {
            background: white;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
        }
        .fill-blank {
            display: inline-block;
            background: #fbbf2420;
            padding: 4px 20px;
            border-radius: 4px;
            border: 2px dashed #f59e0b;
            min-width: 150px;
            color: #f59e0b;
            font-weight: 600;
        }
        .action-bar {
            display: flex;
            gap: 15px;
            justify-content: center;
            padding: 20px 0;
            border-top: 1px solid #e0e0e0;
            margin-top: 20px;
        }
        .action-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        .nav-btn {
            background: white;
            color: #ff6b6b;
            border: 2px solid #ff6b6b;
        }
        .nav-btn:hover {
            background: #ff6b6b;
            color: white;
            transform: translateY(-2px);
        }