* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #fa709a 0%, #fee140 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, #fa709a, #fee140);
            -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, #fa709a, #fee140);
            color: white;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .description {
            background: linear-gradient(135deg, #fa709a15, #fee14015);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid #fa709a;
        }
        .round-container { margin-bottom: 30px; }
        .round-header {
            background: linear-gradient(135deg, #fa709a, #fee140);
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .role-badges { display: flex; gap: 10px; }
        .role-badge {
            background: rgba(255, 255, 255, 0.3);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
        }
        .dialogue-exchange {
            background: #f8fafc;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        .dialogue-turn {
            padding: 12px;
            margin-bottom: 10px;
            border-radius: 8px;
        }
        .tutor-turn {
            background: linear-gradient(135deg, #fa709a15, #fee14015);
            border-left: 3px solid #fa709a;
        }
        .tutee-turn {
            background: linear-gradient(135deg, #667eea15, #764ba215);
            border-left: 3px solid #667eea;
        }
        .ai-turn {
            background: linear-gradient(135deg, #10b98115, #05966915);
            border-left: 3px solid #10b981;
        }
        .speaker-label {
            font-weight: 600;
            font-size: 12px;
            margin-bottom: 6px;
            color: #666;
        }
        .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: #fa709a;
            border: 2px solid #fa709a;
        }
        .nav-btn:hover {
            background: #fa709a;
            color: white;
            transform: translateY(-2px);
        }